slidge-whatsapp 0.2.6__cp313-cp313-manylinux_2_36_aarch64.whl → 0.2.7__cp313-cp313-manylinux_2_36_aarch64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of slidge-whatsapp might be problematic. Click here for more details.

Files changed (87) hide show
  1. slidge_whatsapp/event.go +8 -2
  2. slidge_whatsapp/generated/_whatsapp.cpython-313-aarch64-linux-gnu.h +166 -166
  3. slidge_whatsapp/generated/_whatsapp.cpython-313-aarch64-linux-gnu.so +0 -0
  4. slidge_whatsapp/generated/build.py +146 -146
  5. slidge_whatsapp/generated/whatsapp.c +1486 -1486
  6. slidge_whatsapp/generated/whatsapp.go +730 -730
  7. slidge_whatsapp/generated/whatsapp.py +1053 -1053
  8. slidge_whatsapp/generated/whatsapp_go.h +166 -166
  9. slidge_whatsapp/go.mod +6 -6
  10. slidge_whatsapp/go.sum +12 -18
  11. slidge_whatsapp/media/media.go +5 -1
  12. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/json.go +1 -6
  13. slidge_whatsapp/vendor/go.mau.fi/util/exstrings/stringutil.go +76 -0
  14. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +38 -6
  15. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/encoder.go +1 -1
  16. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +1 -1
  17. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +64 -27
  18. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +8 -6
  19. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +19 -12
  20. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +22 -6
  21. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +2 -2
  22. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +33 -17
  23. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +1 -0
  24. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +198 -48
  25. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +12 -7
  26. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/extra.go +7 -0
  27. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.pb.go +983 -0
  28. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.proto +85 -0
  29. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/extra.go +3 -0
  30. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.pb.go +197 -0
  31. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.proto +13 -0
  32. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.pb.go +279 -0
  33. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.proto +21 -0
  34. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.pb.go +137 -0
  35. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.proto +10 -0
  36. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.pb.go +313 -0
  37. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.proto +27 -0
  38. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.pb.go +1299 -0
  39. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto +112 -0
  40. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.pb.go +514 -0
  41. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.proto +47 -0
  42. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.pb.go +123 -0
  43. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.proto +7 -0
  44. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/extra.go +3 -0
  45. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.pb.go +720 -0
  46. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.proto +59 -0
  47. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/extra.go +3 -0
  48. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.pb.go +365 -0
  49. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.proto +33 -0
  50. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.pb.go +1238 -0
  51. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.proto +105 -0
  52. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +16 -4
  53. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.proto +3 -0
  54. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.pb.go +16 -7
  55. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.proto +1 -0
  56. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +2436 -1676
  57. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +85 -7
  58. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.pb.go +198 -0
  59. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.proto +14 -0
  60. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/extra.go +7 -6
  61. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +800 -0
  62. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +72 -0
  63. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +678 -441
  64. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +20 -0
  65. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +11 -3
  66. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +2 -0
  67. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +13 -7
  68. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/reportingfields.json +1 -0
  69. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/reportingtoken.go +176 -0
  70. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +10 -2
  71. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +32 -17
  72. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +1 -0
  73. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +1 -1
  74. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/container.go +9 -6
  75. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +4 -2
  76. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/10-chat-db-lid-migration-ts.sql +2 -0
  77. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +2 -0
  78. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +5 -2
  79. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +1 -0
  80. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +2 -0
  81. slidge_whatsapp/vendor/golang.org/x/net/http2/frame.go +8 -8
  82. slidge_whatsapp/vendor/modules.txt +20 -6
  83. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.2.7.dist-info}/METADATA +1 -1
  84. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.2.7.dist-info}/RECORD +87 -54
  85. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.2.7.dist-info}/LICENSE +0 -0
  86. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.2.7.dist-info}/WHEEL +0 -0
  87. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.2.7.dist-info}/entry_points.txt +0 -0
@@ -230,6 +230,59 @@ func (CallLogRecord_CallResult) EnumDescriptor() ([]byte, []int) {
230
230
  return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{0, 2}
231
231
  }
232
232
 
233
+ type PaymentTosAction_PaymentNotice int32
234
+
235
+ const (
236
+ PaymentTosAction_BR_PAY_PRIVACY_POLICY PaymentTosAction_PaymentNotice = 0
237
+ )
238
+
239
+ // Enum value maps for PaymentTosAction_PaymentNotice.
240
+ var (
241
+ PaymentTosAction_PaymentNotice_name = map[int32]string{
242
+ 0: "BR_PAY_PRIVACY_POLICY",
243
+ }
244
+ PaymentTosAction_PaymentNotice_value = map[string]int32{
245
+ "BR_PAY_PRIVACY_POLICY": 0,
246
+ }
247
+ )
248
+
249
+ func (x PaymentTosAction_PaymentNotice) Enum() *PaymentTosAction_PaymentNotice {
250
+ p := new(PaymentTosAction_PaymentNotice)
251
+ *p = x
252
+ return p
253
+ }
254
+
255
+ func (x PaymentTosAction_PaymentNotice) String() string {
256
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
257
+ }
258
+
259
+ func (PaymentTosAction_PaymentNotice) Descriptor() protoreflect.EnumDescriptor {
260
+ return file_waSyncAction_WASyncAction_proto_enumTypes[3].Descriptor()
261
+ }
262
+
263
+ func (PaymentTosAction_PaymentNotice) Type() protoreflect.EnumType {
264
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[3]
265
+ }
266
+
267
+ func (x PaymentTosAction_PaymentNotice) Number() protoreflect.EnumNumber {
268
+ return protoreflect.EnumNumber(x)
269
+ }
270
+
271
+ // Deprecated: Do not use.
272
+ func (x *PaymentTosAction_PaymentNotice) UnmarshalJSON(b []byte) error {
273
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
274
+ if err != nil {
275
+ return err
276
+ }
277
+ *x = PaymentTosAction_PaymentNotice(num)
278
+ return nil
279
+ }
280
+
281
+ // Deprecated: Use PaymentTosAction_PaymentNotice.Descriptor instead.
282
+ func (PaymentTosAction_PaymentNotice) EnumDescriptor() ([]byte, []int) {
283
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1, 0}
284
+ }
285
+
233
286
  type NotificationActivitySettingAction_NotificationActivitySetting int32
234
287
 
235
288
  const (
@@ -266,11 +319,11 @@ func (x NotificationActivitySettingAction_NotificationActivitySetting) String()
266
319
  }
267
320
 
268
321
  func (NotificationActivitySettingAction_NotificationActivitySetting) Descriptor() protoreflect.EnumDescriptor {
269
- return file_waSyncAction_WASyncAction_proto_enumTypes[3].Descriptor()
322
+ return file_waSyncAction_WASyncAction_proto_enumTypes[4].Descriptor()
270
323
  }
271
324
 
272
325
  func (NotificationActivitySettingAction_NotificationActivitySetting) Type() protoreflect.EnumType {
273
- return &file_waSyncAction_WASyncAction_proto_enumTypes[3]
326
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[4]
274
327
  }
275
328
 
276
329
  func (x NotificationActivitySettingAction_NotificationActivitySetting) Number() protoreflect.EnumNumber {
@@ -289,7 +342,7 @@ func (x *NotificationActivitySettingAction_NotificationActivitySetting) Unmarsha
289
342
 
290
343
  // Deprecated: Use NotificationActivitySettingAction_NotificationActivitySetting.Descriptor instead.
291
344
  func (NotificationActivitySettingAction_NotificationActivitySetting) EnumDescriptor() ([]byte, []int) {
292
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1, 0}
345
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2, 0}
293
346
  }
294
347
 
295
348
  type WaffleAccountLinkStateAction_AccountLinkState int32
@@ -319,11 +372,11 @@ func (x WaffleAccountLinkStateAction_AccountLinkState) String() string {
319
372
  }
320
373
 
321
374
  func (WaffleAccountLinkStateAction_AccountLinkState) Descriptor() protoreflect.EnumDescriptor {
322
- return file_waSyncAction_WASyncAction_proto_enumTypes[4].Descriptor()
375
+ return file_waSyncAction_WASyncAction_proto_enumTypes[5].Descriptor()
323
376
  }
324
377
 
325
378
  func (WaffleAccountLinkStateAction_AccountLinkState) Type() protoreflect.EnumType {
326
- return &file_waSyncAction_WASyncAction_proto_enumTypes[4]
379
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[5]
327
380
  }
328
381
 
329
382
  func (x WaffleAccountLinkStateAction_AccountLinkState) Number() protoreflect.EnumNumber {
@@ -342,7 +395,7 @@ func (x *WaffleAccountLinkStateAction_AccountLinkState) UnmarshalJSON(b []byte)
342
395
 
343
396
  // Deprecated: Use WaffleAccountLinkStateAction_AccountLinkState.Descriptor instead.
344
397
  func (WaffleAccountLinkStateAction_AccountLinkState) EnumDescriptor() ([]byte, []int) {
345
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2, 0}
398
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3, 0}
346
399
  }
347
400
 
348
401
  type MerchantPaymentPartnerAction_Status int32
@@ -375,11 +428,11 @@ func (x MerchantPaymentPartnerAction_Status) String() string {
375
428
  }
376
429
 
377
430
  func (MerchantPaymentPartnerAction_Status) Descriptor() protoreflect.EnumDescriptor {
378
- return file_waSyncAction_WASyncAction_proto_enumTypes[5].Descriptor()
431
+ return file_waSyncAction_WASyncAction_proto_enumTypes[6].Descriptor()
379
432
  }
380
433
 
381
434
  func (MerchantPaymentPartnerAction_Status) Type() protoreflect.EnumType {
382
- return &file_waSyncAction_WASyncAction_proto_enumTypes[5]
435
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[6]
383
436
  }
384
437
 
385
438
  func (x MerchantPaymentPartnerAction_Status) Number() protoreflect.EnumNumber {
@@ -398,7 +451,7 @@ func (x *MerchantPaymentPartnerAction_Status) UnmarshalJSON(b []byte) error {
398
451
 
399
452
  // Deprecated: Use MerchantPaymentPartnerAction_Status.Descriptor instead.
400
453
  func (MerchantPaymentPartnerAction_Status) EnumDescriptor() ([]byte, []int) {
401
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3, 0}
454
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4, 0}
402
455
  }
403
456
 
404
457
  type NoteEditAction_NoteType int32
@@ -431,11 +484,11 @@ func (x NoteEditAction_NoteType) String() string {
431
484
  }
432
485
 
433
486
  func (NoteEditAction_NoteType) Descriptor() protoreflect.EnumDescriptor {
434
- return file_waSyncAction_WASyncAction_proto_enumTypes[6].Descriptor()
487
+ return file_waSyncAction_WASyncAction_proto_enumTypes[7].Descriptor()
435
488
  }
436
489
 
437
490
  func (NoteEditAction_NoteType) Type() protoreflect.EnumType {
438
- return &file_waSyncAction_WASyncAction_proto_enumTypes[6]
491
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[7]
439
492
  }
440
493
 
441
494
  func (x NoteEditAction_NoteType) Number() protoreflect.EnumNumber {
@@ -454,7 +507,7 @@ func (x *NoteEditAction_NoteType) UnmarshalJSON(b []byte) error {
454
507
 
455
508
  // Deprecated: Use NoteEditAction_NoteType.Descriptor instead.
456
509
  func (NoteEditAction_NoteType) EnumDescriptor() ([]byte, []int) {
457
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4, 0}
510
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5, 0}
458
511
  }
459
512
 
460
513
  type StatusPrivacyAction_StatusDistributionMode int32
@@ -490,11 +543,11 @@ func (x StatusPrivacyAction_StatusDistributionMode) String() string {
490
543
  }
491
544
 
492
545
  func (StatusPrivacyAction_StatusDistributionMode) Descriptor() protoreflect.EnumDescriptor {
493
- return file_waSyncAction_WASyncAction_proto_enumTypes[7].Descriptor()
546
+ return file_waSyncAction_WASyncAction_proto_enumTypes[8].Descriptor()
494
547
  }
495
548
 
496
549
  func (StatusPrivacyAction_StatusDistributionMode) Type() protoreflect.EnumType {
497
- return &file_waSyncAction_WASyncAction_proto_enumTypes[7]
550
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[8]
498
551
  }
499
552
 
500
553
  func (x StatusPrivacyAction_StatusDistributionMode) Number() protoreflect.EnumNumber {
@@ -513,7 +566,7 @@ func (x *StatusPrivacyAction_StatusDistributionMode) UnmarshalJSON(b []byte) err
513
566
 
514
567
  // Deprecated: Use StatusPrivacyAction_StatusDistributionMode.Descriptor instead.
515
568
  func (StatusPrivacyAction_StatusDistributionMode) EnumDescriptor() ([]byte, []int) {
516
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5, 0}
569
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6, 0}
517
570
  }
518
571
 
519
572
  type MarketingMessageAction_MarketingMessagePrototypeType int32
@@ -543,11 +596,11 @@ func (x MarketingMessageAction_MarketingMessagePrototypeType) String() string {
543
596
  }
544
597
 
545
598
  func (MarketingMessageAction_MarketingMessagePrototypeType) Descriptor() protoreflect.EnumDescriptor {
546
- return file_waSyncAction_WASyncAction_proto_enumTypes[8].Descriptor()
599
+ return file_waSyncAction_WASyncAction_proto_enumTypes[9].Descriptor()
547
600
  }
548
601
 
549
602
  func (MarketingMessageAction_MarketingMessagePrototypeType) Type() protoreflect.EnumType {
550
- return &file_waSyncAction_WASyncAction_proto_enumTypes[8]
603
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[9]
551
604
  }
552
605
 
553
606
  func (x MarketingMessageAction_MarketingMessagePrototypeType) Number() protoreflect.EnumNumber {
@@ -566,7 +619,7 @@ func (x *MarketingMessageAction_MarketingMessagePrototypeType) UnmarshalJSON(b [
566
619
 
567
620
  // Deprecated: Use MarketingMessageAction_MarketingMessagePrototypeType.Descriptor instead.
568
621
  func (MarketingMessageAction_MarketingMessagePrototypeType) EnumDescriptor() ([]byte, []int) {
569
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6, 0}
622
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7, 0}
570
623
  }
571
624
 
572
625
  type UsernameChatStartModeAction_ChatStartMode int32
@@ -599,11 +652,11 @@ func (x UsernameChatStartModeAction_ChatStartMode) String() string {
599
652
  }
600
653
 
601
654
  func (UsernameChatStartModeAction_ChatStartMode) Descriptor() protoreflect.EnumDescriptor {
602
- return file_waSyncAction_WASyncAction_proto_enumTypes[9].Descriptor()
655
+ return file_waSyncAction_WASyncAction_proto_enumTypes[10].Descriptor()
603
656
  }
604
657
 
605
658
  func (UsernameChatStartModeAction_ChatStartMode) Type() protoreflect.EnumType {
606
- return &file_waSyncAction_WASyncAction_proto_enumTypes[9]
659
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[10]
607
660
  }
608
661
 
609
662
  func (x UsernameChatStartModeAction_ChatStartMode) Number() protoreflect.EnumNumber {
@@ -622,7 +675,7 @@ func (x *UsernameChatStartModeAction_ChatStartMode) UnmarshalJSON(b []byte) erro
622
675
 
623
676
  // Deprecated: Use UsernameChatStartModeAction_ChatStartMode.Descriptor instead.
624
677
  func (UsernameChatStartModeAction_ChatStartMode) EnumDescriptor() ([]byte, []int) {
625
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7, 0}
678
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8, 0}
626
679
  }
627
680
 
628
681
  type LabelEditAction_ListType int32
@@ -673,11 +726,11 @@ func (x LabelEditAction_ListType) String() string {
673
726
  }
674
727
 
675
728
  func (LabelEditAction_ListType) Descriptor() protoreflect.EnumDescriptor {
676
- return file_waSyncAction_WASyncAction_proto_enumTypes[10].Descriptor()
729
+ return file_waSyncAction_WASyncAction_proto_enumTypes[11].Descriptor()
677
730
  }
678
731
 
679
732
  func (LabelEditAction_ListType) Type() protoreflect.EnumType {
680
- return &file_waSyncAction_WASyncAction_proto_enumTypes[10]
733
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[11]
681
734
  }
682
735
 
683
736
  func (x LabelEditAction_ListType) Number() protoreflect.EnumNumber {
@@ -696,7 +749,7 @@ func (x *LabelEditAction_ListType) UnmarshalJSON(b []byte) error {
696
749
 
697
750
  // Deprecated: Use LabelEditAction_ListType.Descriptor instead.
698
751
  func (LabelEditAction_ListType) EnumDescriptor() ([]byte, []int) {
699
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8, 0}
752
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9, 0}
700
753
  }
701
754
 
702
755
  type PatchDebugData_Platform int32
@@ -750,11 +803,11 @@ func (x PatchDebugData_Platform) String() string {
750
803
  }
751
804
 
752
805
  func (PatchDebugData_Platform) Descriptor() protoreflect.EnumDescriptor {
753
- return file_waSyncAction_WASyncAction_proto_enumTypes[11].Descriptor()
806
+ return file_waSyncAction_WASyncAction_proto_enumTypes[12].Descriptor()
754
807
  }
755
808
 
756
809
  func (PatchDebugData_Platform) Type() protoreflect.EnumType {
757
- return &file_waSyncAction_WASyncAction_proto_enumTypes[11]
810
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[12]
758
811
  }
759
812
 
760
813
  func (x PatchDebugData_Platform) Number() protoreflect.EnumNumber {
@@ -773,7 +826,7 @@ func (x *PatchDebugData_Platform) UnmarshalJSON(b []byte) error {
773
826
 
774
827
  // Deprecated: Use PatchDebugData_Platform.Descriptor instead.
775
828
  func (PatchDebugData_Platform) EnumDescriptor() ([]byte, []int) {
776
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9, 0}
829
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10, 0}
777
830
  }
778
831
 
779
832
  type CallLogRecord struct {
@@ -932,6 +985,58 @@ func (x *CallLogRecord) GetCallType() CallLogRecord_CallType {
932
985
  return CallLogRecord_REGULAR
933
986
  }
934
987
 
988
+ type PaymentTosAction struct {
989
+ state protoimpl.MessageState `protogen:"open.v1"`
990
+ PaymentNotice *PaymentTosAction_PaymentNotice `protobuf:"varint,1,req,name=paymentNotice,enum=WASyncAction.PaymentTosAction_PaymentNotice" json:"paymentNotice,omitempty"`
991
+ Accepted *bool `protobuf:"varint,2,req,name=accepted" json:"accepted,omitempty"`
992
+ unknownFields protoimpl.UnknownFields
993
+ sizeCache protoimpl.SizeCache
994
+ }
995
+
996
+ func (x *PaymentTosAction) Reset() {
997
+ *x = PaymentTosAction{}
998
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
999
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1000
+ ms.StoreMessageInfo(mi)
1001
+ }
1002
+
1003
+ func (x *PaymentTosAction) String() string {
1004
+ return protoimpl.X.MessageStringOf(x)
1005
+ }
1006
+
1007
+ func (*PaymentTosAction) ProtoMessage() {}
1008
+
1009
+ func (x *PaymentTosAction) ProtoReflect() protoreflect.Message {
1010
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
1011
+ if x != nil {
1012
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1013
+ if ms.LoadMessageInfo() == nil {
1014
+ ms.StoreMessageInfo(mi)
1015
+ }
1016
+ return ms
1017
+ }
1018
+ return mi.MessageOf(x)
1019
+ }
1020
+
1021
+ // Deprecated: Use PaymentTosAction.ProtoReflect.Descriptor instead.
1022
+ func (*PaymentTosAction) Descriptor() ([]byte, []int) {
1023
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1}
1024
+ }
1025
+
1026
+ func (x *PaymentTosAction) GetPaymentNotice() PaymentTosAction_PaymentNotice {
1027
+ if x != nil && x.PaymentNotice != nil {
1028
+ return *x.PaymentNotice
1029
+ }
1030
+ return PaymentTosAction_BR_PAY_PRIVACY_POLICY
1031
+ }
1032
+
1033
+ func (x *PaymentTosAction) GetAccepted() bool {
1034
+ if x != nil && x.Accepted != nil {
1035
+ return *x.Accepted
1036
+ }
1037
+ return false
1038
+ }
1039
+
935
1040
  type NotificationActivitySettingAction struct {
936
1041
  state protoimpl.MessageState `protogen:"open.v1"`
937
1042
  NotificationActivitySetting *NotificationActivitySettingAction_NotificationActivitySetting `protobuf:"varint,1,opt,name=notificationActivitySetting,enum=WASyncAction.NotificationActivitySettingAction_NotificationActivitySetting" json:"notificationActivitySetting,omitempty"`
@@ -941,7 +1046,7 @@ type NotificationActivitySettingAction struct {
941
1046
 
942
1047
  func (x *NotificationActivitySettingAction) Reset() {
943
1048
  *x = NotificationActivitySettingAction{}
944
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
1049
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
945
1050
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
946
1051
  ms.StoreMessageInfo(mi)
947
1052
  }
@@ -953,7 +1058,7 @@ func (x *NotificationActivitySettingAction) String() string {
953
1058
  func (*NotificationActivitySettingAction) ProtoMessage() {}
954
1059
 
955
1060
  func (x *NotificationActivitySettingAction) ProtoReflect() protoreflect.Message {
956
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
1061
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
957
1062
  if x != nil {
958
1063
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
959
1064
  if ms.LoadMessageInfo() == nil {
@@ -966,7 +1071,7 @@ func (x *NotificationActivitySettingAction) ProtoReflect() protoreflect.Message
966
1071
 
967
1072
  // Deprecated: Use NotificationActivitySettingAction.ProtoReflect.Descriptor instead.
968
1073
  func (*NotificationActivitySettingAction) Descriptor() ([]byte, []int) {
969
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1}
1074
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2}
970
1075
  }
971
1076
 
972
1077
  func (x *NotificationActivitySettingAction) GetNotificationActivitySetting() NotificationActivitySettingAction_NotificationActivitySetting {
@@ -985,7 +1090,7 @@ type WaffleAccountLinkStateAction struct {
985
1090
 
986
1091
  func (x *WaffleAccountLinkStateAction) Reset() {
987
1092
  *x = WaffleAccountLinkStateAction{}
988
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1093
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
989
1094
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
990
1095
  ms.StoreMessageInfo(mi)
991
1096
  }
@@ -997,7 +1102,7 @@ func (x *WaffleAccountLinkStateAction) String() string {
997
1102
  func (*WaffleAccountLinkStateAction) ProtoMessage() {}
998
1103
 
999
1104
  func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
1000
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1105
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
1001
1106
  if x != nil {
1002
1107
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1003
1108
  if ms.LoadMessageInfo() == nil {
@@ -1010,7 +1115,7 @@ func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
1010
1115
 
1011
1116
  // Deprecated: Use WaffleAccountLinkStateAction.ProtoReflect.Descriptor instead.
1012
1117
  func (*WaffleAccountLinkStateAction) Descriptor() ([]byte, []int) {
1013
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2}
1118
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3}
1014
1119
  }
1015
1120
 
1016
1121
  func (x *WaffleAccountLinkStateAction) GetLinkState() WaffleAccountLinkStateAction_AccountLinkState {
@@ -1032,7 +1137,7 @@ type MerchantPaymentPartnerAction struct {
1032
1137
 
1033
1138
  func (x *MerchantPaymentPartnerAction) Reset() {
1034
1139
  *x = MerchantPaymentPartnerAction{}
1035
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
1140
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1036
1141
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1037
1142
  ms.StoreMessageInfo(mi)
1038
1143
  }
@@ -1044,7 +1149,7 @@ func (x *MerchantPaymentPartnerAction) String() string {
1044
1149
  func (*MerchantPaymentPartnerAction) ProtoMessage() {}
1045
1150
 
1046
1151
  func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
1047
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
1152
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1048
1153
  if x != nil {
1049
1154
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1050
1155
  if ms.LoadMessageInfo() == nil {
@@ -1057,7 +1162,7 @@ func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
1057
1162
 
1058
1163
  // Deprecated: Use MerchantPaymentPartnerAction.ProtoReflect.Descriptor instead.
1059
1164
  func (*MerchantPaymentPartnerAction) Descriptor() ([]byte, []int) {
1060
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3}
1165
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4}
1061
1166
  }
1062
1167
 
1063
1168
  func (x *MerchantPaymentPartnerAction) GetStatus() MerchantPaymentPartnerAction_Status {
@@ -1101,7 +1206,7 @@ type NoteEditAction struct {
1101
1206
 
1102
1207
  func (x *NoteEditAction) Reset() {
1103
1208
  *x = NoteEditAction{}
1104
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1209
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1105
1210
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1106
1211
  ms.StoreMessageInfo(mi)
1107
1212
  }
@@ -1113,7 +1218,7 @@ func (x *NoteEditAction) String() string {
1113
1218
  func (*NoteEditAction) ProtoMessage() {}
1114
1219
 
1115
1220
  func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
1116
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1221
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1117
1222
  if x != nil {
1118
1223
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1119
1224
  if ms.LoadMessageInfo() == nil {
@@ -1126,7 +1231,7 @@ func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
1126
1231
 
1127
1232
  // Deprecated: Use NoteEditAction.ProtoReflect.Descriptor instead.
1128
1233
  func (*NoteEditAction) Descriptor() ([]byte, []int) {
1129
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4}
1234
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5}
1130
1235
  }
1131
1236
 
1132
1237
  func (x *NoteEditAction) GetType() NoteEditAction_NoteType {
@@ -1174,7 +1279,7 @@ type StatusPrivacyAction struct {
1174
1279
 
1175
1280
  func (x *StatusPrivacyAction) Reset() {
1176
1281
  *x = StatusPrivacyAction{}
1177
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1282
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1178
1283
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1179
1284
  ms.StoreMessageInfo(mi)
1180
1285
  }
@@ -1186,7 +1291,7 @@ func (x *StatusPrivacyAction) String() string {
1186
1291
  func (*StatusPrivacyAction) ProtoMessage() {}
1187
1292
 
1188
1293
  func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
1189
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1294
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1190
1295
  if x != nil {
1191
1296
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1192
1297
  if ms.LoadMessageInfo() == nil {
@@ -1199,7 +1304,7 @@ func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
1199
1304
 
1200
1305
  // Deprecated: Use StatusPrivacyAction.ProtoReflect.Descriptor instead.
1201
1306
  func (*StatusPrivacyAction) Descriptor() ([]byte, []int) {
1202
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5}
1307
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6}
1203
1308
  }
1204
1309
 
1205
1310
  func (x *StatusPrivacyAction) GetMode() StatusPrivacyAction_StatusDistributionMode {
@@ -1231,7 +1336,7 @@ type MarketingMessageAction struct {
1231
1336
 
1232
1337
  func (x *MarketingMessageAction) Reset() {
1233
1338
  *x = MarketingMessageAction{}
1234
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1339
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1235
1340
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1236
1341
  ms.StoreMessageInfo(mi)
1237
1342
  }
@@ -1243,7 +1348,7 @@ func (x *MarketingMessageAction) String() string {
1243
1348
  func (*MarketingMessageAction) ProtoMessage() {}
1244
1349
 
1245
1350
  func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
1246
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1351
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1247
1352
  if x != nil {
1248
1353
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1249
1354
  if ms.LoadMessageInfo() == nil {
@@ -1256,7 +1361,7 @@ func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
1256
1361
 
1257
1362
  // Deprecated: Use MarketingMessageAction.ProtoReflect.Descriptor instead.
1258
1363
  func (*MarketingMessageAction) Descriptor() ([]byte, []int) {
1259
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6}
1364
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7}
1260
1365
  }
1261
1366
 
1262
1367
  func (x *MarketingMessageAction) GetName() string {
@@ -1317,7 +1422,7 @@ type UsernameChatStartModeAction struct {
1317
1422
 
1318
1423
  func (x *UsernameChatStartModeAction) Reset() {
1319
1424
  *x = UsernameChatStartModeAction{}
1320
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1425
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1321
1426
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1322
1427
  ms.StoreMessageInfo(mi)
1323
1428
  }
@@ -1329,7 +1434,7 @@ func (x *UsernameChatStartModeAction) String() string {
1329
1434
  func (*UsernameChatStartModeAction) ProtoMessage() {}
1330
1435
 
1331
1436
  func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
1332
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1437
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1333
1438
  if x != nil {
1334
1439
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1335
1440
  if ms.LoadMessageInfo() == nil {
@@ -1342,7 +1447,7 @@ func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
1342
1447
 
1343
1448
  // Deprecated: Use UsernameChatStartModeAction.ProtoReflect.Descriptor instead.
1344
1449
  func (*UsernameChatStartModeAction) Descriptor() ([]byte, []int) {
1345
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7}
1450
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8}
1346
1451
  }
1347
1452
 
1348
1453
  func (x *UsernameChatStartModeAction) GetChatStartMode() UsernameChatStartModeAction_ChatStartMode {
@@ -1368,7 +1473,7 @@ type LabelEditAction struct {
1368
1473
 
1369
1474
  func (x *LabelEditAction) Reset() {
1370
1475
  *x = LabelEditAction{}
1371
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1476
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1372
1477
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1373
1478
  ms.StoreMessageInfo(mi)
1374
1479
  }
@@ -1380,7 +1485,7 @@ func (x *LabelEditAction) String() string {
1380
1485
  func (*LabelEditAction) ProtoMessage() {}
1381
1486
 
1382
1487
  func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
1383
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1488
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1384
1489
  if x != nil {
1385
1490
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1386
1491
  if ms.LoadMessageInfo() == nil {
@@ -1393,7 +1498,7 @@ func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
1393
1498
 
1394
1499
  // Deprecated: Use LabelEditAction.ProtoReflect.Descriptor instead.
1395
1500
  func (*LabelEditAction) Descriptor() ([]byte, []int) {
1396
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8}
1501
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9}
1397
1502
  }
1398
1503
 
1399
1504
  func (x *LabelEditAction) GetName() string {
@@ -1471,7 +1576,7 @@ type PatchDebugData struct {
1471
1576
 
1472
1577
  func (x *PatchDebugData) Reset() {
1473
1578
  *x = PatchDebugData{}
1474
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1579
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1475
1580
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1476
1581
  ms.StoreMessageInfo(mi)
1477
1582
  }
@@ -1483,7 +1588,7 @@ func (x *PatchDebugData) String() string {
1483
1588
  func (*PatchDebugData) ProtoMessage() {}
1484
1589
 
1485
1590
  func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
1486
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1591
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1487
1592
  if x != nil {
1488
1593
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1489
1594
  if ms.LoadMessageInfo() == nil {
@@ -1496,7 +1601,7 @@ func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
1496
1601
 
1497
1602
  // Deprecated: Use PatchDebugData.ProtoReflect.Descriptor instead.
1498
1603
  func (*PatchDebugData) Descriptor() ([]byte, []int) {
1499
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9}
1604
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10}
1500
1605
  }
1501
1606
 
1502
1607
  func (x *PatchDebugData) GetCurrentLthash() []byte {
@@ -1586,7 +1691,7 @@ type RecentEmojiWeight struct {
1586
1691
 
1587
1692
  func (x *RecentEmojiWeight) Reset() {
1588
1693
  *x = RecentEmojiWeight{}
1589
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1694
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1590
1695
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1591
1696
  ms.StoreMessageInfo(mi)
1592
1697
  }
@@ -1598,7 +1703,7 @@ func (x *RecentEmojiWeight) String() string {
1598
1703
  func (*RecentEmojiWeight) ProtoMessage() {}
1599
1704
 
1600
1705
  func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
1601
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1706
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1602
1707
  if x != nil {
1603
1708
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1604
1709
  if ms.LoadMessageInfo() == nil {
@@ -1611,7 +1716,7 @@ func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
1611
1716
 
1612
1717
  // Deprecated: Use RecentEmojiWeight.ProtoReflect.Descriptor instead.
1613
1718
  func (*RecentEmojiWeight) Descriptor() ([]byte, []int) {
1614
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10}
1719
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11}
1615
1720
  }
1616
1721
 
1617
1722
  func (x *RecentEmojiWeight) GetEmoji() string {
@@ -1629,70 +1734,73 @@ func (x *RecentEmojiWeight) GetWeight() float32 {
1629
1734
  }
1630
1735
 
1631
1736
  type SyncActionValue struct {
1632
- state protoimpl.MessageState `protogen:"open.v1"`
1633
- Timestamp *int64 `protobuf:"varint,1,opt,name=timestamp" json:"timestamp,omitempty"`
1634
- StarAction *StarAction `protobuf:"bytes,2,opt,name=starAction" json:"starAction,omitempty"`
1635
- ContactAction *ContactAction `protobuf:"bytes,3,opt,name=contactAction" json:"contactAction,omitempty"`
1636
- MuteAction *MuteAction `protobuf:"bytes,4,opt,name=muteAction" json:"muteAction,omitempty"`
1637
- PinAction *PinAction `protobuf:"bytes,5,opt,name=pinAction" json:"pinAction,omitempty"`
1638
- SecurityNotificationSetting *SecurityNotificationSetting `protobuf:"bytes,6,opt,name=securityNotificationSetting" json:"securityNotificationSetting,omitempty"`
1639
- PushNameSetting *PushNameSetting `protobuf:"bytes,7,opt,name=pushNameSetting" json:"pushNameSetting,omitempty"`
1640
- QuickReplyAction *QuickReplyAction `protobuf:"bytes,8,opt,name=quickReplyAction" json:"quickReplyAction,omitempty"`
1641
- RecentEmojiWeightsAction *RecentEmojiWeightsAction `protobuf:"bytes,11,opt,name=recentEmojiWeightsAction" json:"recentEmojiWeightsAction,omitempty"`
1642
- LabelEditAction *LabelEditAction `protobuf:"bytes,14,opt,name=labelEditAction" json:"labelEditAction,omitempty"`
1643
- LabelAssociationAction *LabelAssociationAction `protobuf:"bytes,15,opt,name=labelAssociationAction" json:"labelAssociationAction,omitempty"`
1644
- LocaleSetting *LocaleSetting `protobuf:"bytes,16,opt,name=localeSetting" json:"localeSetting,omitempty"`
1645
- ArchiveChatAction *ArchiveChatAction `protobuf:"bytes,17,opt,name=archiveChatAction" json:"archiveChatAction,omitempty"`
1646
- DeleteMessageForMeAction *DeleteMessageForMeAction `protobuf:"bytes,18,opt,name=deleteMessageForMeAction" json:"deleteMessageForMeAction,omitempty"`
1647
- KeyExpiration *KeyExpiration `protobuf:"bytes,19,opt,name=keyExpiration" json:"keyExpiration,omitempty"`
1648
- MarkChatAsReadAction *MarkChatAsReadAction `protobuf:"bytes,20,opt,name=markChatAsReadAction" json:"markChatAsReadAction,omitempty"`
1649
- ClearChatAction *ClearChatAction `protobuf:"bytes,21,opt,name=clearChatAction" json:"clearChatAction,omitempty"`
1650
- DeleteChatAction *DeleteChatAction `protobuf:"bytes,22,opt,name=deleteChatAction" json:"deleteChatAction,omitempty"`
1651
- UnarchiveChatsSetting *UnarchiveChatsSetting `protobuf:"bytes,23,opt,name=unarchiveChatsSetting" json:"unarchiveChatsSetting,omitempty"`
1652
- PrimaryFeature *PrimaryFeature `protobuf:"bytes,24,opt,name=primaryFeature" json:"primaryFeature,omitempty"`
1653
- AndroidUnsupportedActions *AndroidUnsupportedActions `protobuf:"bytes,26,opt,name=androidUnsupportedActions" json:"androidUnsupportedActions,omitempty"`
1654
- AgentAction *AgentAction `protobuf:"bytes,27,opt,name=agentAction" json:"agentAction,omitempty"`
1655
- SubscriptionAction *SubscriptionAction `protobuf:"bytes,28,opt,name=subscriptionAction" json:"subscriptionAction,omitempty"`
1656
- UserStatusMuteAction *UserStatusMuteAction `protobuf:"bytes,29,opt,name=userStatusMuteAction" json:"userStatusMuteAction,omitempty"`
1657
- TimeFormatAction *TimeFormatAction `protobuf:"bytes,30,opt,name=timeFormatAction" json:"timeFormatAction,omitempty"`
1658
- NuxAction *NuxAction `protobuf:"bytes,31,opt,name=nuxAction" json:"nuxAction,omitempty"`
1659
- PrimaryVersionAction *PrimaryVersionAction `protobuf:"bytes,32,opt,name=primaryVersionAction" json:"primaryVersionAction,omitempty"`
1660
- StickerAction *StickerAction `protobuf:"bytes,33,opt,name=stickerAction" json:"stickerAction,omitempty"`
1661
- RemoveRecentStickerAction *RemoveRecentStickerAction `protobuf:"bytes,34,opt,name=removeRecentStickerAction" json:"removeRecentStickerAction,omitempty"`
1662
- ChatAssignment *ChatAssignmentAction `protobuf:"bytes,35,opt,name=chatAssignment" json:"chatAssignment,omitempty"`
1663
- ChatAssignmentOpenedStatus *ChatAssignmentOpenedStatusAction `protobuf:"bytes,36,opt,name=chatAssignmentOpenedStatus" json:"chatAssignmentOpenedStatus,omitempty"`
1664
- PnForLidChatAction *PnForLidChatAction `protobuf:"bytes,37,opt,name=pnForLidChatAction" json:"pnForLidChatAction,omitempty"`
1665
- MarketingMessageAction *MarketingMessageAction `protobuf:"bytes,38,opt,name=marketingMessageAction" json:"marketingMessageAction,omitempty"`
1666
- MarketingMessageBroadcastAction *MarketingMessageBroadcastAction `protobuf:"bytes,39,opt,name=marketingMessageBroadcastAction" json:"marketingMessageBroadcastAction,omitempty"`
1667
- ExternalWebBetaAction *ExternalWebBetaAction `protobuf:"bytes,40,opt,name=externalWebBetaAction" json:"externalWebBetaAction,omitempty"`
1668
- PrivacySettingRelayAllCalls *PrivacySettingRelayAllCalls `protobuf:"bytes,41,opt,name=privacySettingRelayAllCalls" json:"privacySettingRelayAllCalls,omitempty"`
1669
- CallLogAction *CallLogAction `protobuf:"bytes,42,opt,name=callLogAction" json:"callLogAction,omitempty"`
1670
- StatusPrivacy *StatusPrivacyAction `protobuf:"bytes,44,opt,name=statusPrivacy" json:"statusPrivacy,omitempty"`
1671
- BotWelcomeRequestAction *BotWelcomeRequestAction `protobuf:"bytes,45,opt,name=botWelcomeRequestAction" json:"botWelcomeRequestAction,omitempty"`
1672
- DeleteIndividualCallLog *DeleteIndividualCallLogAction `protobuf:"bytes,46,opt,name=deleteIndividualCallLog" json:"deleteIndividualCallLog,omitempty"`
1673
- LabelReorderingAction *LabelReorderingAction `protobuf:"bytes,47,opt,name=labelReorderingAction" json:"labelReorderingAction,omitempty"`
1674
- PaymentInfoAction *PaymentInfoAction `protobuf:"bytes,48,opt,name=paymentInfoAction" json:"paymentInfoAction,omitempty"`
1675
- CustomPaymentMethodsAction *CustomPaymentMethodsAction `protobuf:"bytes,49,opt,name=customPaymentMethodsAction" json:"customPaymentMethodsAction,omitempty"`
1676
- LockChatAction *LockChatAction `protobuf:"bytes,50,opt,name=lockChatAction" json:"lockChatAction,omitempty"`
1677
- ChatLockSettings *waChatLockSettings.ChatLockSettings `protobuf:"bytes,51,opt,name=chatLockSettings" json:"chatLockSettings,omitempty"`
1678
- WamoUserIdentifierAction *WamoUserIdentifierAction `protobuf:"bytes,52,opt,name=wamoUserIdentifierAction" json:"wamoUserIdentifierAction,omitempty"`
1679
- PrivacySettingDisableLinkPreviewsAction *PrivacySettingDisableLinkPreviewsAction `protobuf:"bytes,53,opt,name=privacySettingDisableLinkPreviewsAction" json:"privacySettingDisableLinkPreviewsAction,omitempty"`
1680
- DeviceCapabilities *waDeviceCapabilities.DeviceCapabilities `protobuf:"bytes,54,opt,name=deviceCapabilities" json:"deviceCapabilities,omitempty"`
1681
- NoteEditAction *NoteEditAction `protobuf:"bytes,55,opt,name=noteEditAction" json:"noteEditAction,omitempty"`
1682
- FavoritesAction *FavoritesAction `protobuf:"bytes,56,opt,name=favoritesAction" json:"favoritesAction,omitempty"`
1683
- MerchantPaymentPartnerAction *MerchantPaymentPartnerAction `protobuf:"bytes,57,opt,name=merchantPaymentPartnerAction" json:"merchantPaymentPartnerAction,omitempty"`
1684
- WaffleAccountLinkStateAction *WaffleAccountLinkStateAction `protobuf:"bytes,58,opt,name=waffleAccountLinkStateAction" json:"waffleAccountLinkStateAction,omitempty"`
1685
- UsernameChatStartMode *UsernameChatStartModeAction `protobuf:"bytes,59,opt,name=usernameChatStartMode" json:"usernameChatStartMode,omitempty"`
1686
- NotificationActivitySettingAction *NotificationActivitySettingAction `protobuf:"bytes,60,opt,name=notificationActivitySettingAction" json:"notificationActivitySettingAction,omitempty"`
1687
- LidContactAction *LidContactAction `protobuf:"bytes,61,opt,name=lidContactAction" json:"lidContactAction,omitempty"`
1688
- CtwaPerCustomerDataSharingAction *CtwaPerCustomerDataSharingAction `protobuf:"bytes,62,opt,name=ctwaPerCustomerDataSharingAction" json:"ctwaPerCustomerDataSharingAction,omitempty"`
1689
- unknownFields protoimpl.UnknownFields
1690
- sizeCache protoimpl.SizeCache
1737
+ state protoimpl.MessageState `protogen:"open.v1"`
1738
+ Timestamp *int64 `protobuf:"varint,1,opt,name=timestamp" json:"timestamp,omitempty"`
1739
+ StarAction *StarAction `protobuf:"bytes,2,opt,name=starAction" json:"starAction,omitempty"`
1740
+ ContactAction *ContactAction `protobuf:"bytes,3,opt,name=contactAction" json:"contactAction,omitempty"`
1741
+ MuteAction *MuteAction `protobuf:"bytes,4,opt,name=muteAction" json:"muteAction,omitempty"`
1742
+ PinAction *PinAction `protobuf:"bytes,5,opt,name=pinAction" json:"pinAction,omitempty"`
1743
+ SecurityNotificationSetting *SecurityNotificationSetting `protobuf:"bytes,6,opt,name=securityNotificationSetting" json:"securityNotificationSetting,omitempty"`
1744
+ PushNameSetting *PushNameSetting `protobuf:"bytes,7,opt,name=pushNameSetting" json:"pushNameSetting,omitempty"`
1745
+ QuickReplyAction *QuickReplyAction `protobuf:"bytes,8,opt,name=quickReplyAction" json:"quickReplyAction,omitempty"`
1746
+ RecentEmojiWeightsAction *RecentEmojiWeightsAction `protobuf:"bytes,11,opt,name=recentEmojiWeightsAction" json:"recentEmojiWeightsAction,omitempty"`
1747
+ LabelEditAction *LabelEditAction `protobuf:"bytes,14,opt,name=labelEditAction" json:"labelEditAction,omitempty"`
1748
+ LabelAssociationAction *LabelAssociationAction `protobuf:"bytes,15,opt,name=labelAssociationAction" json:"labelAssociationAction,omitempty"`
1749
+ LocaleSetting *LocaleSetting `protobuf:"bytes,16,opt,name=localeSetting" json:"localeSetting,omitempty"`
1750
+ ArchiveChatAction *ArchiveChatAction `protobuf:"bytes,17,opt,name=archiveChatAction" json:"archiveChatAction,omitempty"`
1751
+ DeleteMessageForMeAction *DeleteMessageForMeAction `protobuf:"bytes,18,opt,name=deleteMessageForMeAction" json:"deleteMessageForMeAction,omitempty"`
1752
+ KeyExpiration *KeyExpiration `protobuf:"bytes,19,opt,name=keyExpiration" json:"keyExpiration,omitempty"`
1753
+ MarkChatAsReadAction *MarkChatAsReadAction `protobuf:"bytes,20,opt,name=markChatAsReadAction" json:"markChatAsReadAction,omitempty"`
1754
+ ClearChatAction *ClearChatAction `protobuf:"bytes,21,opt,name=clearChatAction" json:"clearChatAction,omitempty"`
1755
+ DeleteChatAction *DeleteChatAction `protobuf:"bytes,22,opt,name=deleteChatAction" json:"deleteChatAction,omitempty"`
1756
+ UnarchiveChatsSetting *UnarchiveChatsSetting `protobuf:"bytes,23,opt,name=unarchiveChatsSetting" json:"unarchiveChatsSetting,omitempty"`
1757
+ PrimaryFeature *PrimaryFeature `protobuf:"bytes,24,opt,name=primaryFeature" json:"primaryFeature,omitempty"`
1758
+ AndroidUnsupportedActions *AndroidUnsupportedActions `protobuf:"bytes,26,opt,name=androidUnsupportedActions" json:"androidUnsupportedActions,omitempty"`
1759
+ AgentAction *AgentAction `protobuf:"bytes,27,opt,name=agentAction" json:"agentAction,omitempty"`
1760
+ SubscriptionAction *SubscriptionAction `protobuf:"bytes,28,opt,name=subscriptionAction" json:"subscriptionAction,omitempty"`
1761
+ UserStatusMuteAction *UserStatusMuteAction `protobuf:"bytes,29,opt,name=userStatusMuteAction" json:"userStatusMuteAction,omitempty"`
1762
+ TimeFormatAction *TimeFormatAction `protobuf:"bytes,30,opt,name=timeFormatAction" json:"timeFormatAction,omitempty"`
1763
+ NuxAction *NuxAction `protobuf:"bytes,31,opt,name=nuxAction" json:"nuxAction,omitempty"`
1764
+ PrimaryVersionAction *PrimaryVersionAction `protobuf:"bytes,32,opt,name=primaryVersionAction" json:"primaryVersionAction,omitempty"`
1765
+ StickerAction *StickerAction `protobuf:"bytes,33,opt,name=stickerAction" json:"stickerAction,omitempty"`
1766
+ RemoveRecentStickerAction *RemoveRecentStickerAction `protobuf:"bytes,34,opt,name=removeRecentStickerAction" json:"removeRecentStickerAction,omitempty"`
1767
+ ChatAssignment *ChatAssignmentAction `protobuf:"bytes,35,opt,name=chatAssignment" json:"chatAssignment,omitempty"`
1768
+ ChatAssignmentOpenedStatus *ChatAssignmentOpenedStatusAction `protobuf:"bytes,36,opt,name=chatAssignmentOpenedStatus" json:"chatAssignmentOpenedStatus,omitempty"`
1769
+ PnForLidChatAction *PnForLidChatAction `protobuf:"bytes,37,opt,name=pnForLidChatAction" json:"pnForLidChatAction,omitempty"`
1770
+ MarketingMessageAction *MarketingMessageAction `protobuf:"bytes,38,opt,name=marketingMessageAction" json:"marketingMessageAction,omitempty"`
1771
+ MarketingMessageBroadcastAction *MarketingMessageBroadcastAction `protobuf:"bytes,39,opt,name=marketingMessageBroadcastAction" json:"marketingMessageBroadcastAction,omitempty"`
1772
+ ExternalWebBetaAction *ExternalWebBetaAction `protobuf:"bytes,40,opt,name=externalWebBetaAction" json:"externalWebBetaAction,omitempty"`
1773
+ PrivacySettingRelayAllCalls *PrivacySettingRelayAllCalls `protobuf:"bytes,41,opt,name=privacySettingRelayAllCalls" json:"privacySettingRelayAllCalls,omitempty"`
1774
+ CallLogAction *CallLogAction `protobuf:"bytes,42,opt,name=callLogAction" json:"callLogAction,omitempty"`
1775
+ StatusPrivacy *StatusPrivacyAction `protobuf:"bytes,44,opt,name=statusPrivacy" json:"statusPrivacy,omitempty"`
1776
+ BotWelcomeRequestAction *BotWelcomeRequestAction `protobuf:"bytes,45,opt,name=botWelcomeRequestAction" json:"botWelcomeRequestAction,omitempty"`
1777
+ DeleteIndividualCallLog *DeleteIndividualCallLogAction `protobuf:"bytes,46,opt,name=deleteIndividualCallLog" json:"deleteIndividualCallLog,omitempty"`
1778
+ LabelReorderingAction *LabelReorderingAction `protobuf:"bytes,47,opt,name=labelReorderingAction" json:"labelReorderingAction,omitempty"`
1779
+ PaymentInfoAction *PaymentInfoAction `protobuf:"bytes,48,opt,name=paymentInfoAction" json:"paymentInfoAction,omitempty"`
1780
+ CustomPaymentMethodsAction *CustomPaymentMethodsAction `protobuf:"bytes,49,opt,name=customPaymentMethodsAction" json:"customPaymentMethodsAction,omitempty"`
1781
+ LockChatAction *LockChatAction `protobuf:"bytes,50,opt,name=lockChatAction" json:"lockChatAction,omitempty"`
1782
+ ChatLockSettings *waChatLockSettings.ChatLockSettings `protobuf:"bytes,51,opt,name=chatLockSettings" json:"chatLockSettings,omitempty"`
1783
+ WamoUserIdentifierAction *WamoUserIdentifierAction `protobuf:"bytes,52,opt,name=wamoUserIdentifierAction" json:"wamoUserIdentifierAction,omitempty"`
1784
+ PrivacySettingDisableLinkPreviewsAction *PrivacySettingDisableLinkPreviewsAction `protobuf:"bytes,53,opt,name=privacySettingDisableLinkPreviewsAction" json:"privacySettingDisableLinkPreviewsAction,omitempty"`
1785
+ DeviceCapabilities *waDeviceCapabilities.DeviceCapabilities `protobuf:"bytes,54,opt,name=deviceCapabilities" json:"deviceCapabilities,omitempty"`
1786
+ NoteEditAction *NoteEditAction `protobuf:"bytes,55,opt,name=noteEditAction" json:"noteEditAction,omitempty"`
1787
+ FavoritesAction *FavoritesAction `protobuf:"bytes,56,opt,name=favoritesAction" json:"favoritesAction,omitempty"`
1788
+ MerchantPaymentPartnerAction *MerchantPaymentPartnerAction `protobuf:"bytes,57,opt,name=merchantPaymentPartnerAction" json:"merchantPaymentPartnerAction,omitempty"`
1789
+ WaffleAccountLinkStateAction *WaffleAccountLinkStateAction `protobuf:"bytes,58,opt,name=waffleAccountLinkStateAction" json:"waffleAccountLinkStateAction,omitempty"`
1790
+ UsernameChatStartMode *UsernameChatStartModeAction `protobuf:"bytes,59,opt,name=usernameChatStartMode" json:"usernameChatStartMode,omitempty"`
1791
+ NotificationActivitySettingAction *NotificationActivitySettingAction `protobuf:"bytes,60,opt,name=notificationActivitySettingAction" json:"notificationActivitySettingAction,omitempty"`
1792
+ LidContactAction *LidContactAction `protobuf:"bytes,61,opt,name=lidContactAction" json:"lidContactAction,omitempty"`
1793
+ CtwaPerCustomerDataSharingAction *CtwaPerCustomerDataSharingAction `protobuf:"bytes,62,opt,name=ctwaPerCustomerDataSharingAction" json:"ctwaPerCustomerDataSharingAction,omitempty"`
1794
+ PaymentTosAction *PaymentTosAction `protobuf:"bytes,63,opt,name=paymentTosAction" json:"paymentTosAction,omitempty"`
1795
+ PrivacySettingChannelsPersonalisedRecommendationAction *PrivacySettingChannelsPersonalisedRecommendationAction `protobuf:"bytes,64,opt,name=privacySettingChannelsPersonalisedRecommendationAction" json:"privacySettingChannelsPersonalisedRecommendationAction,omitempty"`
1796
+ BusinessBroadcastAssociationAction *BusinessBroadcastAssociationAction `protobuf:"bytes,65,opt,name=businessBroadcastAssociationAction" json:"businessBroadcastAssociationAction,omitempty"`
1797
+ unknownFields protoimpl.UnknownFields
1798
+ sizeCache protoimpl.SizeCache
1691
1799
  }
1692
1800
 
1693
1801
  func (x *SyncActionValue) Reset() {
1694
1802
  *x = SyncActionValue{}
1695
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1803
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
1696
1804
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1697
1805
  ms.StoreMessageInfo(mi)
1698
1806
  }
@@ -1704,7 +1812,7 @@ func (x *SyncActionValue) String() string {
1704
1812
  func (*SyncActionValue) ProtoMessage() {}
1705
1813
 
1706
1814
  func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
1707
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1815
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
1708
1816
  if x != nil {
1709
1817
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1710
1818
  if ms.LoadMessageInfo() == nil {
@@ -1717,7 +1825,7 @@ func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
1717
1825
 
1718
1826
  // Deprecated: Use SyncActionValue.ProtoReflect.Descriptor instead.
1719
1827
  func (*SyncActionValue) Descriptor() ([]byte, []int) {
1720
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11}
1828
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12}
1721
1829
  }
1722
1830
 
1723
1831
  func (x *SyncActionValue) GetTimestamp() int64 {
@@ -2112,6 +2220,71 @@ func (x *SyncActionValue) GetCtwaPerCustomerDataSharingAction() *CtwaPerCustomer
2112
2220
  return nil
2113
2221
  }
2114
2222
 
2223
+ func (x *SyncActionValue) GetPaymentTosAction() *PaymentTosAction {
2224
+ if x != nil {
2225
+ return x.PaymentTosAction
2226
+ }
2227
+ return nil
2228
+ }
2229
+
2230
+ func (x *SyncActionValue) GetPrivacySettingChannelsPersonalisedRecommendationAction() *PrivacySettingChannelsPersonalisedRecommendationAction {
2231
+ if x != nil {
2232
+ return x.PrivacySettingChannelsPersonalisedRecommendationAction
2233
+ }
2234
+ return nil
2235
+ }
2236
+
2237
+ func (x *SyncActionValue) GetBusinessBroadcastAssociationAction() *BusinessBroadcastAssociationAction {
2238
+ if x != nil {
2239
+ return x.BusinessBroadcastAssociationAction
2240
+ }
2241
+ return nil
2242
+ }
2243
+
2244
+ type BusinessBroadcastAssociationAction struct {
2245
+ state protoimpl.MessageState `protogen:"open.v1"`
2246
+ Deleted *bool `protobuf:"varint,1,opt,name=deleted" json:"deleted,omitempty"`
2247
+ unknownFields protoimpl.UnknownFields
2248
+ sizeCache protoimpl.SizeCache
2249
+ }
2250
+
2251
+ func (x *BusinessBroadcastAssociationAction) Reset() {
2252
+ *x = BusinessBroadcastAssociationAction{}
2253
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
2254
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2255
+ ms.StoreMessageInfo(mi)
2256
+ }
2257
+
2258
+ func (x *BusinessBroadcastAssociationAction) String() string {
2259
+ return protoimpl.X.MessageStringOf(x)
2260
+ }
2261
+
2262
+ func (*BusinessBroadcastAssociationAction) ProtoMessage() {}
2263
+
2264
+ func (x *BusinessBroadcastAssociationAction) ProtoReflect() protoreflect.Message {
2265
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
2266
+ if x != nil {
2267
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2268
+ if ms.LoadMessageInfo() == nil {
2269
+ ms.StoreMessageInfo(mi)
2270
+ }
2271
+ return ms
2272
+ }
2273
+ return mi.MessageOf(x)
2274
+ }
2275
+
2276
+ // Deprecated: Use BusinessBroadcastAssociationAction.ProtoReflect.Descriptor instead.
2277
+ func (*BusinessBroadcastAssociationAction) Descriptor() ([]byte, []int) {
2278
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13}
2279
+ }
2280
+
2281
+ func (x *BusinessBroadcastAssociationAction) GetDeleted() bool {
2282
+ if x != nil && x.Deleted != nil {
2283
+ return *x.Deleted
2284
+ }
2285
+ return false
2286
+ }
2287
+
2115
2288
  type CtwaPerCustomerDataSharingAction struct {
2116
2289
  state protoimpl.MessageState `protogen:"open.v1"`
2117
2290
  IsCtwaPerCustomerDataSharingEnabled *bool `protobuf:"varint,1,opt,name=isCtwaPerCustomerDataSharingEnabled" json:"isCtwaPerCustomerDataSharingEnabled,omitempty"`
@@ -2121,7 +2294,7 @@ type CtwaPerCustomerDataSharingAction struct {
2121
2294
 
2122
2295
  func (x *CtwaPerCustomerDataSharingAction) Reset() {
2123
2296
  *x = CtwaPerCustomerDataSharingAction{}
2124
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
2297
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2125
2298
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2126
2299
  ms.StoreMessageInfo(mi)
2127
2300
  }
@@ -2133,7 +2306,7 @@ func (x *CtwaPerCustomerDataSharingAction) String() string {
2133
2306
  func (*CtwaPerCustomerDataSharingAction) ProtoMessage() {}
2134
2307
 
2135
2308
  func (x *CtwaPerCustomerDataSharingAction) ProtoReflect() protoreflect.Message {
2136
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
2309
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2137
2310
  if x != nil {
2138
2311
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2139
2312
  if ms.LoadMessageInfo() == nil {
@@ -2146,7 +2319,7 @@ func (x *CtwaPerCustomerDataSharingAction) ProtoReflect() protoreflect.Message {
2146
2319
 
2147
2320
  // Deprecated: Use CtwaPerCustomerDataSharingAction.ProtoReflect.Descriptor instead.
2148
2321
  func (*CtwaPerCustomerDataSharingAction) Descriptor() ([]byte, []int) {
2149
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12}
2322
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14}
2150
2323
  }
2151
2324
 
2152
2325
  func (x *CtwaPerCustomerDataSharingAction) GetIsCtwaPerCustomerDataSharingEnabled() bool {
@@ -2168,7 +2341,7 @@ type LidContactAction struct {
2168
2341
 
2169
2342
  func (x *LidContactAction) Reset() {
2170
2343
  *x = LidContactAction{}
2171
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
2344
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2172
2345
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2173
2346
  ms.StoreMessageInfo(mi)
2174
2347
  }
@@ -2180,7 +2353,7 @@ func (x *LidContactAction) String() string {
2180
2353
  func (*LidContactAction) ProtoMessage() {}
2181
2354
 
2182
2355
  func (x *LidContactAction) ProtoReflect() protoreflect.Message {
2183
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
2356
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2184
2357
  if x != nil {
2185
2358
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2186
2359
  if ms.LoadMessageInfo() == nil {
@@ -2193,7 +2366,7 @@ func (x *LidContactAction) ProtoReflect() protoreflect.Message {
2193
2366
 
2194
2367
  // Deprecated: Use LidContactAction.ProtoReflect.Descriptor instead.
2195
2368
  func (*LidContactAction) Descriptor() ([]byte, []int) {
2196
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13}
2369
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{15}
2197
2370
  }
2198
2371
 
2199
2372
  func (x *LidContactAction) GetFullName() string {
@@ -2233,7 +2406,7 @@ type FavoritesAction struct {
2233
2406
 
2234
2407
  func (x *FavoritesAction) Reset() {
2235
2408
  *x = FavoritesAction{}
2236
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2409
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2237
2410
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2238
2411
  ms.StoreMessageInfo(mi)
2239
2412
  }
@@ -2245,7 +2418,7 @@ func (x *FavoritesAction) String() string {
2245
2418
  func (*FavoritesAction) ProtoMessage() {}
2246
2419
 
2247
2420
  func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
2248
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2421
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2249
2422
  if x != nil {
2250
2423
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2251
2424
  if ms.LoadMessageInfo() == nil {
@@ -2258,7 +2431,7 @@ func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
2258
2431
 
2259
2432
  // Deprecated: Use FavoritesAction.ProtoReflect.Descriptor instead.
2260
2433
  func (*FavoritesAction) Descriptor() ([]byte, []int) {
2261
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14}
2434
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16}
2262
2435
  }
2263
2436
 
2264
2437
  func (x *FavoritesAction) GetFavorites() []*FavoritesAction_Favorite {
@@ -2268,6 +2441,50 @@ func (x *FavoritesAction) GetFavorites() []*FavoritesAction_Favorite {
2268
2441
  return nil
2269
2442
  }
2270
2443
 
2444
+ type PrivacySettingChannelsPersonalisedRecommendationAction struct {
2445
+ state protoimpl.MessageState `protogen:"open.v1"`
2446
+ IsUserOptedOut *bool `protobuf:"varint,1,opt,name=isUserOptedOut" json:"isUserOptedOut,omitempty"`
2447
+ unknownFields protoimpl.UnknownFields
2448
+ sizeCache protoimpl.SizeCache
2449
+ }
2450
+
2451
+ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) Reset() {
2452
+ *x = PrivacySettingChannelsPersonalisedRecommendationAction{}
2453
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2454
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2455
+ ms.StoreMessageInfo(mi)
2456
+ }
2457
+
2458
+ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) String() string {
2459
+ return protoimpl.X.MessageStringOf(x)
2460
+ }
2461
+
2462
+ func (*PrivacySettingChannelsPersonalisedRecommendationAction) ProtoMessage() {}
2463
+
2464
+ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) ProtoReflect() protoreflect.Message {
2465
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2466
+ if x != nil {
2467
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2468
+ if ms.LoadMessageInfo() == nil {
2469
+ ms.StoreMessageInfo(mi)
2470
+ }
2471
+ return ms
2472
+ }
2473
+ return mi.MessageOf(x)
2474
+ }
2475
+
2476
+ // Deprecated: Use PrivacySettingChannelsPersonalisedRecommendationAction.ProtoReflect.Descriptor instead.
2477
+ func (*PrivacySettingChannelsPersonalisedRecommendationAction) Descriptor() ([]byte, []int) {
2478
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{17}
2479
+ }
2480
+
2481
+ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) GetIsUserOptedOut() bool {
2482
+ if x != nil && x.IsUserOptedOut != nil {
2483
+ return *x.IsUserOptedOut
2484
+ }
2485
+ return false
2486
+ }
2487
+
2271
2488
  type PrivacySettingDisableLinkPreviewsAction struct {
2272
2489
  state protoimpl.MessageState `protogen:"open.v1"`
2273
2490
  IsPreviewsDisabled *bool `protobuf:"varint,1,opt,name=isPreviewsDisabled" json:"isPreviewsDisabled,omitempty"`
@@ -2277,7 +2494,7 @@ type PrivacySettingDisableLinkPreviewsAction struct {
2277
2494
 
2278
2495
  func (x *PrivacySettingDisableLinkPreviewsAction) Reset() {
2279
2496
  *x = PrivacySettingDisableLinkPreviewsAction{}
2280
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2497
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2281
2498
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2282
2499
  ms.StoreMessageInfo(mi)
2283
2500
  }
@@ -2289,7 +2506,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) String() string {
2289
2506
  func (*PrivacySettingDisableLinkPreviewsAction) ProtoMessage() {}
2290
2507
 
2291
2508
  func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Message {
2292
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2509
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2293
2510
  if x != nil {
2294
2511
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2295
2512
  if ms.LoadMessageInfo() == nil {
@@ -2302,7 +2519,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Me
2302
2519
 
2303
2520
  // Deprecated: Use PrivacySettingDisableLinkPreviewsAction.ProtoReflect.Descriptor instead.
2304
2521
  func (*PrivacySettingDisableLinkPreviewsAction) Descriptor() ([]byte, []int) {
2305
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{15}
2522
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{18}
2306
2523
  }
2307
2524
 
2308
2525
  func (x *PrivacySettingDisableLinkPreviewsAction) GetIsPreviewsDisabled() bool {
@@ -2321,7 +2538,7 @@ type WamoUserIdentifierAction struct {
2321
2538
 
2322
2539
  func (x *WamoUserIdentifierAction) Reset() {
2323
2540
  *x = WamoUserIdentifierAction{}
2324
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2541
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2325
2542
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2326
2543
  ms.StoreMessageInfo(mi)
2327
2544
  }
@@ -2333,7 +2550,7 @@ func (x *WamoUserIdentifierAction) String() string {
2333
2550
  func (*WamoUserIdentifierAction) ProtoMessage() {}
2334
2551
 
2335
2552
  func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
2336
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2553
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2337
2554
  if x != nil {
2338
2555
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2339
2556
  if ms.LoadMessageInfo() == nil {
@@ -2346,7 +2563,7 @@ func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
2346
2563
 
2347
2564
  // Deprecated: Use WamoUserIdentifierAction.ProtoReflect.Descriptor instead.
2348
2565
  func (*WamoUserIdentifierAction) Descriptor() ([]byte, []int) {
2349
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16}
2566
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{19}
2350
2567
  }
2351
2568
 
2352
2569
  func (x *WamoUserIdentifierAction) GetIdentifier() string {
@@ -2365,7 +2582,7 @@ type LockChatAction struct {
2365
2582
 
2366
2583
  func (x *LockChatAction) Reset() {
2367
2584
  *x = LockChatAction{}
2368
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2585
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2369
2586
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2370
2587
  ms.StoreMessageInfo(mi)
2371
2588
  }
@@ -2377,7 +2594,7 @@ func (x *LockChatAction) String() string {
2377
2594
  func (*LockChatAction) ProtoMessage() {}
2378
2595
 
2379
2596
  func (x *LockChatAction) ProtoReflect() protoreflect.Message {
2380
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2597
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2381
2598
  if x != nil {
2382
2599
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2383
2600
  if ms.LoadMessageInfo() == nil {
@@ -2390,7 +2607,7 @@ func (x *LockChatAction) ProtoReflect() protoreflect.Message {
2390
2607
 
2391
2608
  // Deprecated: Use LockChatAction.ProtoReflect.Descriptor instead.
2392
2609
  func (*LockChatAction) Descriptor() ([]byte, []int) {
2393
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{17}
2610
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20}
2394
2611
  }
2395
2612
 
2396
2613
  func (x *LockChatAction) GetLocked() bool {
@@ -2409,7 +2626,7 @@ type CustomPaymentMethodsAction struct {
2409
2626
 
2410
2627
  func (x *CustomPaymentMethodsAction) Reset() {
2411
2628
  *x = CustomPaymentMethodsAction{}
2412
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2629
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2413
2630
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2414
2631
  ms.StoreMessageInfo(mi)
2415
2632
  }
@@ -2421,7 +2638,7 @@ func (x *CustomPaymentMethodsAction) String() string {
2421
2638
  func (*CustomPaymentMethodsAction) ProtoMessage() {}
2422
2639
 
2423
2640
  func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
2424
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2641
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2425
2642
  if x != nil {
2426
2643
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2427
2644
  if ms.LoadMessageInfo() == nil {
@@ -2434,7 +2651,7 @@ func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
2434
2651
 
2435
2652
  // Deprecated: Use CustomPaymentMethodsAction.ProtoReflect.Descriptor instead.
2436
2653
  func (*CustomPaymentMethodsAction) Descriptor() ([]byte, []int) {
2437
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{18}
2654
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{21}
2438
2655
  }
2439
2656
 
2440
2657
  func (x *CustomPaymentMethodsAction) GetCustomPaymentMethods() []*CustomPaymentMethod {
@@ -2456,7 +2673,7 @@ type CustomPaymentMethod struct {
2456
2673
 
2457
2674
  func (x *CustomPaymentMethod) Reset() {
2458
2675
  *x = CustomPaymentMethod{}
2459
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2676
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2460
2677
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2461
2678
  ms.StoreMessageInfo(mi)
2462
2679
  }
@@ -2468,7 +2685,7 @@ func (x *CustomPaymentMethod) String() string {
2468
2685
  func (*CustomPaymentMethod) ProtoMessage() {}
2469
2686
 
2470
2687
  func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
2471
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2688
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2472
2689
  if x != nil {
2473
2690
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2474
2691
  if ms.LoadMessageInfo() == nil {
@@ -2481,7 +2698,7 @@ func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
2481
2698
 
2482
2699
  // Deprecated: Use CustomPaymentMethod.ProtoReflect.Descriptor instead.
2483
2700
  func (*CustomPaymentMethod) Descriptor() ([]byte, []int) {
2484
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{19}
2701
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22}
2485
2702
  }
2486
2703
 
2487
2704
  func (x *CustomPaymentMethod) GetCredentialID() string {
@@ -2522,7 +2739,7 @@ type CustomPaymentMethodMetadata struct {
2522
2739
 
2523
2740
  func (x *CustomPaymentMethodMetadata) Reset() {
2524
2741
  *x = CustomPaymentMethodMetadata{}
2525
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2742
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
2526
2743
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2527
2744
  ms.StoreMessageInfo(mi)
2528
2745
  }
@@ -2534,7 +2751,7 @@ func (x *CustomPaymentMethodMetadata) String() string {
2534
2751
  func (*CustomPaymentMethodMetadata) ProtoMessage() {}
2535
2752
 
2536
2753
  func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
2537
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2754
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
2538
2755
  if x != nil {
2539
2756
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2540
2757
  if ms.LoadMessageInfo() == nil {
@@ -2547,7 +2764,7 @@ func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
2547
2764
 
2548
2765
  // Deprecated: Use CustomPaymentMethodMetadata.ProtoReflect.Descriptor instead.
2549
2766
  func (*CustomPaymentMethodMetadata) Descriptor() ([]byte, []int) {
2550
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20}
2767
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{23}
2551
2768
  }
2552
2769
 
2553
2770
  func (x *CustomPaymentMethodMetadata) GetKey() string {
@@ -2573,7 +2790,7 @@ type PaymentInfoAction struct {
2573
2790
 
2574
2791
  func (x *PaymentInfoAction) Reset() {
2575
2792
  *x = PaymentInfoAction{}
2576
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2793
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
2577
2794
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2578
2795
  ms.StoreMessageInfo(mi)
2579
2796
  }
@@ -2585,7 +2802,7 @@ func (x *PaymentInfoAction) String() string {
2585
2802
  func (*PaymentInfoAction) ProtoMessage() {}
2586
2803
 
2587
2804
  func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
2588
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2805
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
2589
2806
  if x != nil {
2590
2807
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2591
2808
  if ms.LoadMessageInfo() == nil {
@@ -2598,7 +2815,7 @@ func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
2598
2815
 
2599
2816
  // Deprecated: Use PaymentInfoAction.ProtoReflect.Descriptor instead.
2600
2817
  func (*PaymentInfoAction) Descriptor() ([]byte, []int) {
2601
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{21}
2818
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{24}
2602
2819
  }
2603
2820
 
2604
2821
  func (x *PaymentInfoAction) GetCpi() string {
@@ -2617,7 +2834,7 @@ type LabelReorderingAction struct {
2617
2834
 
2618
2835
  func (x *LabelReorderingAction) Reset() {
2619
2836
  *x = LabelReorderingAction{}
2620
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2837
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
2621
2838
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2622
2839
  ms.StoreMessageInfo(mi)
2623
2840
  }
@@ -2629,7 +2846,7 @@ func (x *LabelReorderingAction) String() string {
2629
2846
  func (*LabelReorderingAction) ProtoMessage() {}
2630
2847
 
2631
2848
  func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
2632
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2849
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
2633
2850
  if x != nil {
2634
2851
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2635
2852
  if ms.LoadMessageInfo() == nil {
@@ -2642,7 +2859,7 @@ func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
2642
2859
 
2643
2860
  // Deprecated: Use LabelReorderingAction.ProtoReflect.Descriptor instead.
2644
2861
  func (*LabelReorderingAction) Descriptor() ([]byte, []int) {
2645
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22}
2862
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{25}
2646
2863
  }
2647
2864
 
2648
2865
  func (x *LabelReorderingAction) GetSortedLabelIDs() []int32 {
@@ -2662,7 +2879,7 @@ type DeleteIndividualCallLogAction struct {
2662
2879
 
2663
2880
  func (x *DeleteIndividualCallLogAction) Reset() {
2664
2881
  *x = DeleteIndividualCallLogAction{}
2665
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
2882
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
2666
2883
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2667
2884
  ms.StoreMessageInfo(mi)
2668
2885
  }
@@ -2674,7 +2891,7 @@ func (x *DeleteIndividualCallLogAction) String() string {
2674
2891
  func (*DeleteIndividualCallLogAction) ProtoMessage() {}
2675
2892
 
2676
2893
  func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
2677
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
2894
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
2678
2895
  if x != nil {
2679
2896
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2680
2897
  if ms.LoadMessageInfo() == nil {
@@ -2687,7 +2904,7 @@ func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
2687
2904
 
2688
2905
  // Deprecated: Use DeleteIndividualCallLogAction.ProtoReflect.Descriptor instead.
2689
2906
  func (*DeleteIndividualCallLogAction) Descriptor() ([]byte, []int) {
2690
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{23}
2907
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{26}
2691
2908
  }
2692
2909
 
2693
2910
  func (x *DeleteIndividualCallLogAction) GetPeerJID() string {
@@ -2713,7 +2930,7 @@ type BotWelcomeRequestAction struct {
2713
2930
 
2714
2931
  func (x *BotWelcomeRequestAction) Reset() {
2715
2932
  *x = BotWelcomeRequestAction{}
2716
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
2933
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
2717
2934
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2718
2935
  ms.StoreMessageInfo(mi)
2719
2936
  }
@@ -2725,7 +2942,7 @@ func (x *BotWelcomeRequestAction) String() string {
2725
2942
  func (*BotWelcomeRequestAction) ProtoMessage() {}
2726
2943
 
2727
2944
  func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
2728
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
2945
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
2729
2946
  if x != nil {
2730
2947
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2731
2948
  if ms.LoadMessageInfo() == nil {
@@ -2738,7 +2955,7 @@ func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
2738
2955
 
2739
2956
  // Deprecated: Use BotWelcomeRequestAction.ProtoReflect.Descriptor instead.
2740
2957
  func (*BotWelcomeRequestAction) Descriptor() ([]byte, []int) {
2741
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{24}
2958
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{27}
2742
2959
  }
2743
2960
 
2744
2961
  func (x *BotWelcomeRequestAction) GetIsSent() bool {
@@ -2757,7 +2974,7 @@ type CallLogAction struct {
2757
2974
 
2758
2975
  func (x *CallLogAction) Reset() {
2759
2976
  *x = CallLogAction{}
2760
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
2977
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
2761
2978
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2762
2979
  ms.StoreMessageInfo(mi)
2763
2980
  }
@@ -2769,7 +2986,7 @@ func (x *CallLogAction) String() string {
2769
2986
  func (*CallLogAction) ProtoMessage() {}
2770
2987
 
2771
2988
  func (x *CallLogAction) ProtoReflect() protoreflect.Message {
2772
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
2989
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
2773
2990
  if x != nil {
2774
2991
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2775
2992
  if ms.LoadMessageInfo() == nil {
@@ -2782,7 +2999,7 @@ func (x *CallLogAction) ProtoReflect() protoreflect.Message {
2782
2999
 
2783
3000
  // Deprecated: Use CallLogAction.ProtoReflect.Descriptor instead.
2784
3001
  func (*CallLogAction) Descriptor() ([]byte, []int) {
2785
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{25}
3002
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{28}
2786
3003
  }
2787
3004
 
2788
3005
  func (x *CallLogAction) GetCallLogRecord() *CallLogRecord {
@@ -2801,7 +3018,7 @@ type PrivacySettingRelayAllCalls struct {
2801
3018
 
2802
3019
  func (x *PrivacySettingRelayAllCalls) Reset() {
2803
3020
  *x = PrivacySettingRelayAllCalls{}
2804
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
3021
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
2805
3022
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2806
3023
  ms.StoreMessageInfo(mi)
2807
3024
  }
@@ -2813,7 +3030,7 @@ func (x *PrivacySettingRelayAllCalls) String() string {
2813
3030
  func (*PrivacySettingRelayAllCalls) ProtoMessage() {}
2814
3031
 
2815
3032
  func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
2816
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
3033
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
2817
3034
  if x != nil {
2818
3035
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2819
3036
  if ms.LoadMessageInfo() == nil {
@@ -2826,7 +3043,7 @@ func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
2826
3043
 
2827
3044
  // Deprecated: Use PrivacySettingRelayAllCalls.ProtoReflect.Descriptor instead.
2828
3045
  func (*PrivacySettingRelayAllCalls) Descriptor() ([]byte, []int) {
2829
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{26}
3046
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{29}
2830
3047
  }
2831
3048
 
2832
3049
  func (x *PrivacySettingRelayAllCalls) GetIsEnabled() bool {
@@ -2845,7 +3062,7 @@ type ExternalWebBetaAction struct {
2845
3062
 
2846
3063
  func (x *ExternalWebBetaAction) Reset() {
2847
3064
  *x = ExternalWebBetaAction{}
2848
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
3065
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
2849
3066
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2850
3067
  ms.StoreMessageInfo(mi)
2851
3068
  }
@@ -2857,7 +3074,7 @@ func (x *ExternalWebBetaAction) String() string {
2857
3074
  func (*ExternalWebBetaAction) ProtoMessage() {}
2858
3075
 
2859
3076
  func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
2860
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
3077
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
2861
3078
  if x != nil {
2862
3079
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2863
3080
  if ms.LoadMessageInfo() == nil {
@@ -2870,7 +3087,7 @@ func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
2870
3087
 
2871
3088
  // Deprecated: Use ExternalWebBetaAction.ProtoReflect.Descriptor instead.
2872
3089
  func (*ExternalWebBetaAction) Descriptor() ([]byte, []int) {
2873
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{27}
3090
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{30}
2874
3091
  }
2875
3092
 
2876
3093
  func (x *ExternalWebBetaAction) GetIsOptIn() bool {
@@ -2889,7 +3106,7 @@ type MarketingMessageBroadcastAction struct {
2889
3106
 
2890
3107
  func (x *MarketingMessageBroadcastAction) Reset() {
2891
3108
  *x = MarketingMessageBroadcastAction{}
2892
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
3109
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
2893
3110
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2894
3111
  ms.StoreMessageInfo(mi)
2895
3112
  }
@@ -2901,7 +3118,7 @@ func (x *MarketingMessageBroadcastAction) String() string {
2901
3118
  func (*MarketingMessageBroadcastAction) ProtoMessage() {}
2902
3119
 
2903
3120
  func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
2904
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
3121
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
2905
3122
  if x != nil {
2906
3123
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2907
3124
  if ms.LoadMessageInfo() == nil {
@@ -2914,7 +3131,7 @@ func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
2914
3131
 
2915
3132
  // Deprecated: Use MarketingMessageBroadcastAction.ProtoReflect.Descriptor instead.
2916
3133
  func (*MarketingMessageBroadcastAction) Descriptor() ([]byte, []int) {
2917
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{28}
3134
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{31}
2918
3135
  }
2919
3136
 
2920
3137
  func (x *MarketingMessageBroadcastAction) GetRepliedCount() int32 {
@@ -2933,7 +3150,7 @@ type PnForLidChatAction struct {
2933
3150
 
2934
3151
  func (x *PnForLidChatAction) Reset() {
2935
3152
  *x = PnForLidChatAction{}
2936
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
3153
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
2937
3154
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2938
3155
  ms.StoreMessageInfo(mi)
2939
3156
  }
@@ -2945,7 +3162,7 @@ func (x *PnForLidChatAction) String() string {
2945
3162
  func (*PnForLidChatAction) ProtoMessage() {}
2946
3163
 
2947
3164
  func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
2948
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
3165
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
2949
3166
  if x != nil {
2950
3167
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2951
3168
  if ms.LoadMessageInfo() == nil {
@@ -2958,7 +3175,7 @@ func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
2958
3175
 
2959
3176
  // Deprecated: Use PnForLidChatAction.ProtoReflect.Descriptor instead.
2960
3177
  func (*PnForLidChatAction) Descriptor() ([]byte, []int) {
2961
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{29}
3178
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{32}
2962
3179
  }
2963
3180
 
2964
3181
  func (x *PnForLidChatAction) GetPnJID() string {
@@ -2977,7 +3194,7 @@ type ChatAssignmentOpenedStatusAction struct {
2977
3194
 
2978
3195
  func (x *ChatAssignmentOpenedStatusAction) Reset() {
2979
3196
  *x = ChatAssignmentOpenedStatusAction{}
2980
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
3197
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
2981
3198
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2982
3199
  ms.StoreMessageInfo(mi)
2983
3200
  }
@@ -2989,7 +3206,7 @@ func (x *ChatAssignmentOpenedStatusAction) String() string {
2989
3206
  func (*ChatAssignmentOpenedStatusAction) ProtoMessage() {}
2990
3207
 
2991
3208
  func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
2992
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
3209
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
2993
3210
  if x != nil {
2994
3211
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2995
3212
  if ms.LoadMessageInfo() == nil {
@@ -3002,7 +3219,7 @@ func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
3002
3219
 
3003
3220
  // Deprecated: Use ChatAssignmentOpenedStatusAction.ProtoReflect.Descriptor instead.
3004
3221
  func (*ChatAssignmentOpenedStatusAction) Descriptor() ([]byte, []int) {
3005
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{30}
3222
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{33}
3006
3223
  }
3007
3224
 
3008
3225
  func (x *ChatAssignmentOpenedStatusAction) GetChatOpened() bool {
@@ -3021,7 +3238,7 @@ type ChatAssignmentAction struct {
3021
3238
 
3022
3239
  func (x *ChatAssignmentAction) Reset() {
3023
3240
  *x = ChatAssignmentAction{}
3024
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
3241
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
3025
3242
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3026
3243
  ms.StoreMessageInfo(mi)
3027
3244
  }
@@ -3033,7 +3250,7 @@ func (x *ChatAssignmentAction) String() string {
3033
3250
  func (*ChatAssignmentAction) ProtoMessage() {}
3034
3251
 
3035
3252
  func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
3036
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
3253
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
3037
3254
  if x != nil {
3038
3255
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3039
3256
  if ms.LoadMessageInfo() == nil {
@@ -3046,7 +3263,7 @@ func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
3046
3263
 
3047
3264
  // Deprecated: Use ChatAssignmentAction.ProtoReflect.Descriptor instead.
3048
3265
  func (*ChatAssignmentAction) Descriptor() ([]byte, []int) {
3049
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{31}
3266
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{34}
3050
3267
  }
3051
3268
 
3052
3269
  func (x *ChatAssignmentAction) GetDeviceAgentID() string {
@@ -3075,7 +3292,7 @@ type StickerAction struct {
3075
3292
 
3076
3293
  func (x *StickerAction) Reset() {
3077
3294
  *x = StickerAction{}
3078
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
3295
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3079
3296
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3080
3297
  ms.StoreMessageInfo(mi)
3081
3298
  }
@@ -3087,7 +3304,7 @@ func (x *StickerAction) String() string {
3087
3304
  func (*StickerAction) ProtoMessage() {}
3088
3305
 
3089
3306
  func (x *StickerAction) ProtoReflect() protoreflect.Message {
3090
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
3307
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3091
3308
  if x != nil {
3092
3309
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3093
3310
  if ms.LoadMessageInfo() == nil {
@@ -3100,7 +3317,7 @@ func (x *StickerAction) ProtoReflect() protoreflect.Message {
3100
3317
 
3101
3318
  // Deprecated: Use StickerAction.ProtoReflect.Descriptor instead.
3102
3319
  func (*StickerAction) Descriptor() ([]byte, []int) {
3103
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{32}
3320
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{35}
3104
3321
  }
3105
3322
 
3106
3323
  func (x *StickerAction) GetURL() string {
@@ -3189,7 +3406,7 @@ type RemoveRecentStickerAction struct {
3189
3406
 
3190
3407
  func (x *RemoveRecentStickerAction) Reset() {
3191
3408
  *x = RemoveRecentStickerAction{}
3192
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
3409
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3193
3410
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3194
3411
  ms.StoreMessageInfo(mi)
3195
3412
  }
@@ -3201,7 +3418,7 @@ func (x *RemoveRecentStickerAction) String() string {
3201
3418
  func (*RemoveRecentStickerAction) ProtoMessage() {}
3202
3419
 
3203
3420
  func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
3204
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
3421
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3205
3422
  if x != nil {
3206
3423
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3207
3424
  if ms.LoadMessageInfo() == nil {
@@ -3214,7 +3431,7 @@ func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
3214
3431
 
3215
3432
  // Deprecated: Use RemoveRecentStickerAction.ProtoReflect.Descriptor instead.
3216
3433
  func (*RemoveRecentStickerAction) Descriptor() ([]byte, []int) {
3217
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{33}
3434
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{36}
3218
3435
  }
3219
3436
 
3220
3437
  func (x *RemoveRecentStickerAction) GetLastStickerSentTS() int64 {
@@ -3233,7 +3450,7 @@ type PrimaryVersionAction struct {
3233
3450
 
3234
3451
  func (x *PrimaryVersionAction) Reset() {
3235
3452
  *x = PrimaryVersionAction{}
3236
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
3453
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3237
3454
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3238
3455
  ms.StoreMessageInfo(mi)
3239
3456
  }
@@ -3245,7 +3462,7 @@ func (x *PrimaryVersionAction) String() string {
3245
3462
  func (*PrimaryVersionAction) ProtoMessage() {}
3246
3463
 
3247
3464
  func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
3248
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
3465
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3249
3466
  if x != nil {
3250
3467
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3251
3468
  if ms.LoadMessageInfo() == nil {
@@ -3258,7 +3475,7 @@ func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
3258
3475
 
3259
3476
  // Deprecated: Use PrimaryVersionAction.ProtoReflect.Descriptor instead.
3260
3477
  func (*PrimaryVersionAction) Descriptor() ([]byte, []int) {
3261
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{34}
3478
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{37}
3262
3479
  }
3263
3480
 
3264
3481
  func (x *PrimaryVersionAction) GetVersion() string {
@@ -3277,7 +3494,7 @@ type NuxAction struct {
3277
3494
 
3278
3495
  func (x *NuxAction) Reset() {
3279
3496
  *x = NuxAction{}
3280
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3497
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3281
3498
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3282
3499
  ms.StoreMessageInfo(mi)
3283
3500
  }
@@ -3289,7 +3506,7 @@ func (x *NuxAction) String() string {
3289
3506
  func (*NuxAction) ProtoMessage() {}
3290
3507
 
3291
3508
  func (x *NuxAction) ProtoReflect() protoreflect.Message {
3292
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3509
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3293
3510
  if x != nil {
3294
3511
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3295
3512
  if ms.LoadMessageInfo() == nil {
@@ -3302,7 +3519,7 @@ func (x *NuxAction) ProtoReflect() protoreflect.Message {
3302
3519
 
3303
3520
  // Deprecated: Use NuxAction.ProtoReflect.Descriptor instead.
3304
3521
  func (*NuxAction) Descriptor() ([]byte, []int) {
3305
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{35}
3522
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{38}
3306
3523
  }
3307
3524
 
3308
3525
  func (x *NuxAction) GetAcknowledged() bool {
@@ -3321,7 +3538,7 @@ type TimeFormatAction struct {
3321
3538
 
3322
3539
  func (x *TimeFormatAction) Reset() {
3323
3540
  *x = TimeFormatAction{}
3324
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3541
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3325
3542
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3326
3543
  ms.StoreMessageInfo(mi)
3327
3544
  }
@@ -3333,7 +3550,7 @@ func (x *TimeFormatAction) String() string {
3333
3550
  func (*TimeFormatAction) ProtoMessage() {}
3334
3551
 
3335
3552
  func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
3336
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3553
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3337
3554
  if x != nil {
3338
3555
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3339
3556
  if ms.LoadMessageInfo() == nil {
@@ -3346,7 +3563,7 @@ func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
3346
3563
 
3347
3564
  // Deprecated: Use TimeFormatAction.ProtoReflect.Descriptor instead.
3348
3565
  func (*TimeFormatAction) Descriptor() ([]byte, []int) {
3349
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{36}
3566
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{39}
3350
3567
  }
3351
3568
 
3352
3569
  func (x *TimeFormatAction) GetIsTwentyFourHourFormatEnabled() bool {
@@ -3365,7 +3582,7 @@ type UserStatusMuteAction struct {
3365
3582
 
3366
3583
  func (x *UserStatusMuteAction) Reset() {
3367
3584
  *x = UserStatusMuteAction{}
3368
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3585
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3369
3586
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3370
3587
  ms.StoreMessageInfo(mi)
3371
3588
  }
@@ -3377,7 +3594,7 @@ func (x *UserStatusMuteAction) String() string {
3377
3594
  func (*UserStatusMuteAction) ProtoMessage() {}
3378
3595
 
3379
3596
  func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
3380
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3597
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3381
3598
  if x != nil {
3382
3599
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3383
3600
  if ms.LoadMessageInfo() == nil {
@@ -3390,7 +3607,7 @@ func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
3390
3607
 
3391
3608
  // Deprecated: Use UserStatusMuteAction.ProtoReflect.Descriptor instead.
3392
3609
  func (*UserStatusMuteAction) Descriptor() ([]byte, []int) {
3393
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{37}
3610
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{40}
3394
3611
  }
3395
3612
 
3396
3613
  func (x *UserStatusMuteAction) GetMuted() bool {
@@ -3411,7 +3628,7 @@ type SubscriptionAction struct {
3411
3628
 
3412
3629
  func (x *SubscriptionAction) Reset() {
3413
3630
  *x = SubscriptionAction{}
3414
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3631
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3415
3632
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3416
3633
  ms.StoreMessageInfo(mi)
3417
3634
  }
@@ -3423,7 +3640,7 @@ func (x *SubscriptionAction) String() string {
3423
3640
  func (*SubscriptionAction) ProtoMessage() {}
3424
3641
 
3425
3642
  func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
3426
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3643
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3427
3644
  if x != nil {
3428
3645
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3429
3646
  if ms.LoadMessageInfo() == nil {
@@ -3436,7 +3653,7 @@ func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
3436
3653
 
3437
3654
  // Deprecated: Use SubscriptionAction.ProtoReflect.Descriptor instead.
3438
3655
  func (*SubscriptionAction) Descriptor() ([]byte, []int) {
3439
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{38}
3656
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{41}
3440
3657
  }
3441
3658
 
3442
3659
  func (x *SubscriptionAction) GetIsDeactivated() bool {
@@ -3471,7 +3688,7 @@ type AgentAction struct {
3471
3688
 
3472
3689
  func (x *AgentAction) Reset() {
3473
3690
  *x = AgentAction{}
3474
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3691
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
3475
3692
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3476
3693
  ms.StoreMessageInfo(mi)
3477
3694
  }
@@ -3483,7 +3700,7 @@ func (x *AgentAction) String() string {
3483
3700
  func (*AgentAction) ProtoMessage() {}
3484
3701
 
3485
3702
  func (x *AgentAction) ProtoReflect() protoreflect.Message {
3486
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3703
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
3487
3704
  if x != nil {
3488
3705
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3489
3706
  if ms.LoadMessageInfo() == nil {
@@ -3496,7 +3713,7 @@ func (x *AgentAction) ProtoReflect() protoreflect.Message {
3496
3713
 
3497
3714
  // Deprecated: Use AgentAction.ProtoReflect.Descriptor instead.
3498
3715
  func (*AgentAction) Descriptor() ([]byte, []int) {
3499
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{39}
3716
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{42}
3500
3717
  }
3501
3718
 
3502
3719
  func (x *AgentAction) GetName() string {
@@ -3529,7 +3746,7 @@ type AndroidUnsupportedActions struct {
3529
3746
 
3530
3747
  func (x *AndroidUnsupportedActions) Reset() {
3531
3748
  *x = AndroidUnsupportedActions{}
3532
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3749
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
3533
3750
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3534
3751
  ms.StoreMessageInfo(mi)
3535
3752
  }
@@ -3541,7 +3758,7 @@ func (x *AndroidUnsupportedActions) String() string {
3541
3758
  func (*AndroidUnsupportedActions) ProtoMessage() {}
3542
3759
 
3543
3760
  func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
3544
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3761
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
3545
3762
  if x != nil {
3546
3763
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3547
3764
  if ms.LoadMessageInfo() == nil {
@@ -3554,7 +3771,7 @@ func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
3554
3771
 
3555
3772
  // Deprecated: Use AndroidUnsupportedActions.ProtoReflect.Descriptor instead.
3556
3773
  func (*AndroidUnsupportedActions) Descriptor() ([]byte, []int) {
3557
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{40}
3774
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{43}
3558
3775
  }
3559
3776
 
3560
3777
  func (x *AndroidUnsupportedActions) GetAllowed() bool {
@@ -3573,7 +3790,7 @@ type PrimaryFeature struct {
3573
3790
 
3574
3791
  func (x *PrimaryFeature) Reset() {
3575
3792
  *x = PrimaryFeature{}
3576
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3793
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
3577
3794
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3578
3795
  ms.StoreMessageInfo(mi)
3579
3796
  }
@@ -3585,7 +3802,7 @@ func (x *PrimaryFeature) String() string {
3585
3802
  func (*PrimaryFeature) ProtoMessage() {}
3586
3803
 
3587
3804
  func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
3588
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3805
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
3589
3806
  if x != nil {
3590
3807
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3591
3808
  if ms.LoadMessageInfo() == nil {
@@ -3598,7 +3815,7 @@ func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
3598
3815
 
3599
3816
  // Deprecated: Use PrimaryFeature.ProtoReflect.Descriptor instead.
3600
3817
  func (*PrimaryFeature) Descriptor() ([]byte, []int) {
3601
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{41}
3818
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{44}
3602
3819
  }
3603
3820
 
3604
3821
  func (x *PrimaryFeature) GetFlags() []string {
@@ -3617,7 +3834,7 @@ type KeyExpiration struct {
3617
3834
 
3618
3835
  func (x *KeyExpiration) Reset() {
3619
3836
  *x = KeyExpiration{}
3620
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
3837
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
3621
3838
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3622
3839
  ms.StoreMessageInfo(mi)
3623
3840
  }
@@ -3629,7 +3846,7 @@ func (x *KeyExpiration) String() string {
3629
3846
  func (*KeyExpiration) ProtoMessage() {}
3630
3847
 
3631
3848
  func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
3632
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
3849
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
3633
3850
  if x != nil {
3634
3851
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3635
3852
  if ms.LoadMessageInfo() == nil {
@@ -3642,7 +3859,7 @@ func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
3642
3859
 
3643
3860
  // Deprecated: Use KeyExpiration.ProtoReflect.Descriptor instead.
3644
3861
  func (*KeyExpiration) Descriptor() ([]byte, []int) {
3645
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{42}
3862
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{45}
3646
3863
  }
3647
3864
 
3648
3865
  func (x *KeyExpiration) GetExpiredKeyEpoch() int32 {
@@ -3662,7 +3879,7 @@ type SyncActionMessage struct {
3662
3879
 
3663
3880
  func (x *SyncActionMessage) Reset() {
3664
3881
  *x = SyncActionMessage{}
3665
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
3882
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
3666
3883
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3667
3884
  ms.StoreMessageInfo(mi)
3668
3885
  }
@@ -3674,7 +3891,7 @@ func (x *SyncActionMessage) String() string {
3674
3891
  func (*SyncActionMessage) ProtoMessage() {}
3675
3892
 
3676
3893
  func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
3677
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
3894
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
3678
3895
  if x != nil {
3679
3896
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3680
3897
  if ms.LoadMessageInfo() == nil {
@@ -3687,7 +3904,7 @@ func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
3687
3904
 
3688
3905
  // Deprecated: Use SyncActionMessage.ProtoReflect.Descriptor instead.
3689
3906
  func (*SyncActionMessage) Descriptor() ([]byte, []int) {
3690
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{43}
3907
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{46}
3691
3908
  }
3692
3909
 
3693
3910
  func (x *SyncActionMessage) GetKey() *waCommon.MessageKey {
@@ -3715,7 +3932,7 @@ type SyncActionMessageRange struct {
3715
3932
 
3716
3933
  func (x *SyncActionMessageRange) Reset() {
3717
3934
  *x = SyncActionMessageRange{}
3718
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
3935
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
3719
3936
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3720
3937
  ms.StoreMessageInfo(mi)
3721
3938
  }
@@ -3727,7 +3944,7 @@ func (x *SyncActionMessageRange) String() string {
3727
3944
  func (*SyncActionMessageRange) ProtoMessage() {}
3728
3945
 
3729
3946
  func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
3730
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
3947
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
3731
3948
  if x != nil {
3732
3949
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3733
3950
  if ms.LoadMessageInfo() == nil {
@@ -3740,7 +3957,7 @@ func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
3740
3957
 
3741
3958
  // Deprecated: Use SyncActionMessageRange.ProtoReflect.Descriptor instead.
3742
3959
  func (*SyncActionMessageRange) Descriptor() ([]byte, []int) {
3743
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{44}
3960
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{47}
3744
3961
  }
3745
3962
 
3746
3963
  func (x *SyncActionMessageRange) GetLastMessageTimestamp() int64 {
@@ -3773,7 +3990,7 @@ type UnarchiveChatsSetting struct {
3773
3990
 
3774
3991
  func (x *UnarchiveChatsSetting) Reset() {
3775
3992
  *x = UnarchiveChatsSetting{}
3776
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
3993
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
3777
3994
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3778
3995
  ms.StoreMessageInfo(mi)
3779
3996
  }
@@ -3785,7 +4002,7 @@ func (x *UnarchiveChatsSetting) String() string {
3785
4002
  func (*UnarchiveChatsSetting) ProtoMessage() {}
3786
4003
 
3787
4004
  func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
3788
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
4005
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
3789
4006
  if x != nil {
3790
4007
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3791
4008
  if ms.LoadMessageInfo() == nil {
@@ -3798,7 +4015,7 @@ func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
3798
4015
 
3799
4016
  // Deprecated: Use UnarchiveChatsSetting.ProtoReflect.Descriptor instead.
3800
4017
  func (*UnarchiveChatsSetting) Descriptor() ([]byte, []int) {
3801
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{45}
4018
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{48}
3802
4019
  }
3803
4020
 
3804
4021
  func (x *UnarchiveChatsSetting) GetUnarchiveChats() bool {
@@ -3817,7 +4034,7 @@ type DeleteChatAction struct {
3817
4034
 
3818
4035
  func (x *DeleteChatAction) Reset() {
3819
4036
  *x = DeleteChatAction{}
3820
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
4037
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
3821
4038
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3822
4039
  ms.StoreMessageInfo(mi)
3823
4040
  }
@@ -3829,7 +4046,7 @@ func (x *DeleteChatAction) String() string {
3829
4046
  func (*DeleteChatAction) ProtoMessage() {}
3830
4047
 
3831
4048
  func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
3832
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
4049
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
3833
4050
  if x != nil {
3834
4051
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3835
4052
  if ms.LoadMessageInfo() == nil {
@@ -3842,7 +4059,7 @@ func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
3842
4059
 
3843
4060
  // Deprecated: Use DeleteChatAction.ProtoReflect.Descriptor instead.
3844
4061
  func (*DeleteChatAction) Descriptor() ([]byte, []int) {
3845
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{46}
4062
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{49}
3846
4063
  }
3847
4064
 
3848
4065
  func (x *DeleteChatAction) GetMessageRange() *SyncActionMessageRange {
@@ -3861,7 +4078,7 @@ type ClearChatAction struct {
3861
4078
 
3862
4079
  func (x *ClearChatAction) Reset() {
3863
4080
  *x = ClearChatAction{}
3864
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
4081
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
3865
4082
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3866
4083
  ms.StoreMessageInfo(mi)
3867
4084
  }
@@ -3873,7 +4090,7 @@ func (x *ClearChatAction) String() string {
3873
4090
  func (*ClearChatAction) ProtoMessage() {}
3874
4091
 
3875
4092
  func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
3876
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
4093
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
3877
4094
  if x != nil {
3878
4095
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3879
4096
  if ms.LoadMessageInfo() == nil {
@@ -3886,7 +4103,7 @@ func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
3886
4103
 
3887
4104
  // Deprecated: Use ClearChatAction.ProtoReflect.Descriptor instead.
3888
4105
  func (*ClearChatAction) Descriptor() ([]byte, []int) {
3889
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{47}
4106
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{50}
3890
4107
  }
3891
4108
 
3892
4109
  func (x *ClearChatAction) GetMessageRange() *SyncActionMessageRange {
@@ -3906,7 +4123,7 @@ type MarkChatAsReadAction struct {
3906
4123
 
3907
4124
  func (x *MarkChatAsReadAction) Reset() {
3908
4125
  *x = MarkChatAsReadAction{}
3909
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
4126
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
3910
4127
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3911
4128
  ms.StoreMessageInfo(mi)
3912
4129
  }
@@ -3918,7 +4135,7 @@ func (x *MarkChatAsReadAction) String() string {
3918
4135
  func (*MarkChatAsReadAction) ProtoMessage() {}
3919
4136
 
3920
4137
  func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
3921
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
4138
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
3922
4139
  if x != nil {
3923
4140
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3924
4141
  if ms.LoadMessageInfo() == nil {
@@ -3931,7 +4148,7 @@ func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
3931
4148
 
3932
4149
  // Deprecated: Use MarkChatAsReadAction.ProtoReflect.Descriptor instead.
3933
4150
  func (*MarkChatAsReadAction) Descriptor() ([]byte, []int) {
3934
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{48}
4151
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{51}
3935
4152
  }
3936
4153
 
3937
4154
  func (x *MarkChatAsReadAction) GetRead() bool {
@@ -3958,7 +4175,7 @@ type DeleteMessageForMeAction struct {
3958
4175
 
3959
4176
  func (x *DeleteMessageForMeAction) Reset() {
3960
4177
  *x = DeleteMessageForMeAction{}
3961
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
4178
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
3962
4179
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3963
4180
  ms.StoreMessageInfo(mi)
3964
4181
  }
@@ -3970,7 +4187,7 @@ func (x *DeleteMessageForMeAction) String() string {
3970
4187
  func (*DeleteMessageForMeAction) ProtoMessage() {}
3971
4188
 
3972
4189
  func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
3973
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
4190
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
3974
4191
  if x != nil {
3975
4192
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3976
4193
  if ms.LoadMessageInfo() == nil {
@@ -3983,7 +4200,7 @@ func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
3983
4200
 
3984
4201
  // Deprecated: Use DeleteMessageForMeAction.ProtoReflect.Descriptor instead.
3985
4202
  func (*DeleteMessageForMeAction) Descriptor() ([]byte, []int) {
3986
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{49}
4203
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{52}
3987
4204
  }
3988
4205
 
3989
4206
  func (x *DeleteMessageForMeAction) GetDeleteMedia() bool {
@@ -4010,7 +4227,7 @@ type ArchiveChatAction struct {
4010
4227
 
4011
4228
  func (x *ArchiveChatAction) Reset() {
4012
4229
  *x = ArchiveChatAction{}
4013
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
4230
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
4014
4231
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4015
4232
  ms.StoreMessageInfo(mi)
4016
4233
  }
@@ -4022,7 +4239,7 @@ func (x *ArchiveChatAction) String() string {
4022
4239
  func (*ArchiveChatAction) ProtoMessage() {}
4023
4240
 
4024
4241
  func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
4025
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
4242
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
4026
4243
  if x != nil {
4027
4244
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4028
4245
  if ms.LoadMessageInfo() == nil {
@@ -4035,7 +4252,7 @@ func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
4035
4252
 
4036
4253
  // Deprecated: Use ArchiveChatAction.ProtoReflect.Descriptor instead.
4037
4254
  func (*ArchiveChatAction) Descriptor() ([]byte, []int) {
4038
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{50}
4255
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{53}
4039
4256
  }
4040
4257
 
4041
4258
  func (x *ArchiveChatAction) GetArchived() bool {
@@ -4061,7 +4278,7 @@ type RecentEmojiWeightsAction struct {
4061
4278
 
4062
4279
  func (x *RecentEmojiWeightsAction) Reset() {
4063
4280
  *x = RecentEmojiWeightsAction{}
4064
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
4281
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
4065
4282
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4066
4283
  ms.StoreMessageInfo(mi)
4067
4284
  }
@@ -4073,7 +4290,7 @@ func (x *RecentEmojiWeightsAction) String() string {
4073
4290
  func (*RecentEmojiWeightsAction) ProtoMessage() {}
4074
4291
 
4075
4292
  func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
4076
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
4293
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
4077
4294
  if x != nil {
4078
4295
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4079
4296
  if ms.LoadMessageInfo() == nil {
@@ -4086,7 +4303,7 @@ func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
4086
4303
 
4087
4304
  // Deprecated: Use RecentEmojiWeightsAction.ProtoReflect.Descriptor instead.
4088
4305
  func (*RecentEmojiWeightsAction) Descriptor() ([]byte, []int) {
4089
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{51}
4306
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{54}
4090
4307
  }
4091
4308
 
4092
4309
  func (x *RecentEmojiWeightsAction) GetWeights() []*RecentEmojiWeight {
@@ -4105,7 +4322,7 @@ type LabelAssociationAction struct {
4105
4322
 
4106
4323
  func (x *LabelAssociationAction) Reset() {
4107
4324
  *x = LabelAssociationAction{}
4108
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
4325
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4109
4326
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4110
4327
  ms.StoreMessageInfo(mi)
4111
4328
  }
@@ -4117,7 +4334,7 @@ func (x *LabelAssociationAction) String() string {
4117
4334
  func (*LabelAssociationAction) ProtoMessage() {}
4118
4335
 
4119
4336
  func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
4120
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
4337
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4121
4338
  if x != nil {
4122
4339
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4123
4340
  if ms.LoadMessageInfo() == nil {
@@ -4130,7 +4347,7 @@ func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
4130
4347
 
4131
4348
  // Deprecated: Use LabelAssociationAction.ProtoReflect.Descriptor instead.
4132
4349
  func (*LabelAssociationAction) Descriptor() ([]byte, []int) {
4133
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{52}
4350
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{55}
4134
4351
  }
4135
4352
 
4136
4353
  func (x *LabelAssociationAction) GetLabeled() bool {
@@ -4153,7 +4370,7 @@ type QuickReplyAction struct {
4153
4370
 
4154
4371
  func (x *QuickReplyAction) Reset() {
4155
4372
  *x = QuickReplyAction{}
4156
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
4373
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4157
4374
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4158
4375
  ms.StoreMessageInfo(mi)
4159
4376
  }
@@ -4165,7 +4382,7 @@ func (x *QuickReplyAction) String() string {
4165
4382
  func (*QuickReplyAction) ProtoMessage() {}
4166
4383
 
4167
4384
  func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
4168
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
4385
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4169
4386
  if x != nil {
4170
4387
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4171
4388
  if ms.LoadMessageInfo() == nil {
@@ -4178,7 +4395,7 @@ func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
4178
4395
 
4179
4396
  // Deprecated: Use QuickReplyAction.ProtoReflect.Descriptor instead.
4180
4397
  func (*QuickReplyAction) Descriptor() ([]byte, []int) {
4181
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{53}
4398
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{56}
4182
4399
  }
4183
4400
 
4184
4401
  func (x *QuickReplyAction) GetShortcut() string {
@@ -4225,7 +4442,7 @@ type LocaleSetting struct {
4225
4442
 
4226
4443
  func (x *LocaleSetting) Reset() {
4227
4444
  *x = LocaleSetting{}
4228
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
4445
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4229
4446
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4230
4447
  ms.StoreMessageInfo(mi)
4231
4448
  }
@@ -4237,7 +4454,7 @@ func (x *LocaleSetting) String() string {
4237
4454
  func (*LocaleSetting) ProtoMessage() {}
4238
4455
 
4239
4456
  func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
4240
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
4457
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4241
4458
  if x != nil {
4242
4459
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4243
4460
  if ms.LoadMessageInfo() == nil {
@@ -4250,7 +4467,7 @@ func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
4250
4467
 
4251
4468
  // Deprecated: Use LocaleSetting.ProtoReflect.Descriptor instead.
4252
4469
  func (*LocaleSetting) Descriptor() ([]byte, []int) {
4253
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{54}
4470
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{57}
4254
4471
  }
4255
4472
 
4256
4473
  func (x *LocaleSetting) GetLocale() string {
@@ -4269,7 +4486,7 @@ type PushNameSetting struct {
4269
4486
 
4270
4487
  func (x *PushNameSetting) Reset() {
4271
4488
  *x = PushNameSetting{}
4272
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4489
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4273
4490
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4274
4491
  ms.StoreMessageInfo(mi)
4275
4492
  }
@@ -4281,7 +4498,7 @@ func (x *PushNameSetting) String() string {
4281
4498
  func (*PushNameSetting) ProtoMessage() {}
4282
4499
 
4283
4500
  func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
4284
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4501
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4285
4502
  if x != nil {
4286
4503
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4287
4504
  if ms.LoadMessageInfo() == nil {
@@ -4294,7 +4511,7 @@ func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
4294
4511
 
4295
4512
  // Deprecated: Use PushNameSetting.ProtoReflect.Descriptor instead.
4296
4513
  func (*PushNameSetting) Descriptor() ([]byte, []int) {
4297
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{55}
4514
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{58}
4298
4515
  }
4299
4516
 
4300
4517
  func (x *PushNameSetting) GetName() string {
@@ -4313,7 +4530,7 @@ type SecurityNotificationSetting struct {
4313
4530
 
4314
4531
  func (x *SecurityNotificationSetting) Reset() {
4315
4532
  *x = SecurityNotificationSetting{}
4316
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4533
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4317
4534
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4318
4535
  ms.StoreMessageInfo(mi)
4319
4536
  }
@@ -4325,7 +4542,7 @@ func (x *SecurityNotificationSetting) String() string {
4325
4542
  func (*SecurityNotificationSetting) ProtoMessage() {}
4326
4543
 
4327
4544
  func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
4328
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4545
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4329
4546
  if x != nil {
4330
4547
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4331
4548
  if ms.LoadMessageInfo() == nil {
@@ -4338,7 +4555,7 @@ func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
4338
4555
 
4339
4556
  // Deprecated: Use SecurityNotificationSetting.ProtoReflect.Descriptor instead.
4340
4557
  func (*SecurityNotificationSetting) Descriptor() ([]byte, []int) {
4341
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{56}
4558
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{59}
4342
4559
  }
4343
4560
 
4344
4561
  func (x *SecurityNotificationSetting) GetShowNotification() bool {
@@ -4357,7 +4574,7 @@ type PinAction struct {
4357
4574
 
4358
4575
  func (x *PinAction) Reset() {
4359
4576
  *x = PinAction{}
4360
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4577
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4361
4578
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4362
4579
  ms.StoreMessageInfo(mi)
4363
4580
  }
@@ -4369,7 +4586,7 @@ func (x *PinAction) String() string {
4369
4586
  func (*PinAction) ProtoMessage() {}
4370
4587
 
4371
4588
  func (x *PinAction) ProtoReflect() protoreflect.Message {
4372
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4589
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4373
4590
  if x != nil {
4374
4591
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4375
4592
  if ms.LoadMessageInfo() == nil {
@@ -4382,7 +4599,7 @@ func (x *PinAction) ProtoReflect() protoreflect.Message {
4382
4599
 
4383
4600
  // Deprecated: Use PinAction.ProtoReflect.Descriptor instead.
4384
4601
  func (*PinAction) Descriptor() ([]byte, []int) {
4385
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{57}
4602
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{60}
4386
4603
  }
4387
4604
 
4388
4605
  func (x *PinAction) GetPinned() bool {
@@ -4403,7 +4620,7 @@ type MuteAction struct {
4403
4620
 
4404
4621
  func (x *MuteAction) Reset() {
4405
4622
  *x = MuteAction{}
4406
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4623
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
4407
4624
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4408
4625
  ms.StoreMessageInfo(mi)
4409
4626
  }
@@ -4415,7 +4632,7 @@ func (x *MuteAction) String() string {
4415
4632
  func (*MuteAction) ProtoMessage() {}
4416
4633
 
4417
4634
  func (x *MuteAction) ProtoReflect() protoreflect.Message {
4418
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4635
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
4419
4636
  if x != nil {
4420
4637
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4421
4638
  if ms.LoadMessageInfo() == nil {
@@ -4428,7 +4645,7 @@ func (x *MuteAction) ProtoReflect() protoreflect.Message {
4428
4645
 
4429
4646
  // Deprecated: Use MuteAction.ProtoReflect.Descriptor instead.
4430
4647
  func (*MuteAction) Descriptor() ([]byte, []int) {
4431
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{58}
4648
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{61}
4432
4649
  }
4433
4650
 
4434
4651
  func (x *MuteAction) GetMuted() bool {
@@ -4466,7 +4683,7 @@ type ContactAction struct {
4466
4683
 
4467
4684
  func (x *ContactAction) Reset() {
4468
4685
  *x = ContactAction{}
4469
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4686
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
4470
4687
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4471
4688
  ms.StoreMessageInfo(mi)
4472
4689
  }
@@ -4478,7 +4695,7 @@ func (x *ContactAction) String() string {
4478
4695
  func (*ContactAction) ProtoMessage() {}
4479
4696
 
4480
4697
  func (x *ContactAction) ProtoReflect() protoreflect.Message {
4481
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4698
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
4482
4699
  if x != nil {
4483
4700
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4484
4701
  if ms.LoadMessageInfo() == nil {
@@ -4491,7 +4708,7 @@ func (x *ContactAction) ProtoReflect() protoreflect.Message {
4491
4708
 
4492
4709
  // Deprecated: Use ContactAction.ProtoReflect.Descriptor instead.
4493
4710
  func (*ContactAction) Descriptor() ([]byte, []int) {
4494
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{59}
4711
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{62}
4495
4712
  }
4496
4713
 
4497
4714
  func (x *ContactAction) GetFullName() string {
@@ -4545,7 +4762,7 @@ type StarAction struct {
4545
4762
 
4546
4763
  func (x *StarAction) Reset() {
4547
4764
  *x = StarAction{}
4548
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4765
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
4549
4766
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4550
4767
  ms.StoreMessageInfo(mi)
4551
4768
  }
@@ -4557,7 +4774,7 @@ func (x *StarAction) String() string {
4557
4774
  func (*StarAction) ProtoMessage() {}
4558
4775
 
4559
4776
  func (x *StarAction) ProtoReflect() protoreflect.Message {
4560
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4777
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
4561
4778
  if x != nil {
4562
4779
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4563
4780
  if ms.LoadMessageInfo() == nil {
@@ -4570,7 +4787,7 @@ func (x *StarAction) ProtoReflect() protoreflect.Message {
4570
4787
 
4571
4788
  // Deprecated: Use StarAction.ProtoReflect.Descriptor instead.
4572
4789
  func (*StarAction) Descriptor() ([]byte, []int) {
4573
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{60}
4790
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{63}
4574
4791
  }
4575
4792
 
4576
4793
  func (x *StarAction) GetStarred() bool {
@@ -4592,7 +4809,7 @@ type SyncActionData struct {
4592
4809
 
4593
4810
  func (x *SyncActionData) Reset() {
4594
4811
  *x = SyncActionData{}
4595
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
4812
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
4596
4813
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4597
4814
  ms.StoreMessageInfo(mi)
4598
4815
  }
@@ -4604,7 +4821,7 @@ func (x *SyncActionData) String() string {
4604
4821
  func (*SyncActionData) ProtoMessage() {}
4605
4822
 
4606
4823
  func (x *SyncActionData) ProtoReflect() protoreflect.Message {
4607
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
4824
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
4608
4825
  if x != nil {
4609
4826
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4610
4827
  if ms.LoadMessageInfo() == nil {
@@ -4617,7 +4834,7 @@ func (x *SyncActionData) ProtoReflect() protoreflect.Message {
4617
4834
 
4618
4835
  // Deprecated: Use SyncActionData.ProtoReflect.Descriptor instead.
4619
4836
  func (*SyncActionData) Descriptor() ([]byte, []int) {
4620
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{61}
4837
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{64}
4621
4838
  }
4622
4839
 
4623
4840
  func (x *SyncActionData) GetIndex() []byte {
@@ -4658,7 +4875,7 @@ type CallLogRecord_ParticipantInfo struct {
4658
4875
 
4659
4876
  func (x *CallLogRecord_ParticipantInfo) Reset() {
4660
4877
  *x = CallLogRecord_ParticipantInfo{}
4661
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
4878
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
4662
4879
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4663
4880
  ms.StoreMessageInfo(mi)
4664
4881
  }
@@ -4670,7 +4887,7 @@ func (x *CallLogRecord_ParticipantInfo) String() string {
4670
4887
  func (*CallLogRecord_ParticipantInfo) ProtoMessage() {}
4671
4888
 
4672
4889
  func (x *CallLogRecord_ParticipantInfo) ProtoReflect() protoreflect.Message {
4673
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
4890
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
4674
4891
  if x != nil {
4675
4892
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4676
4893
  if ms.LoadMessageInfo() == nil {
@@ -4709,7 +4926,7 @@ type FavoritesAction_Favorite struct {
4709
4926
 
4710
4927
  func (x *FavoritesAction_Favorite) Reset() {
4711
4928
  *x = FavoritesAction_Favorite{}
4712
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
4929
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
4713
4930
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4714
4931
  ms.StoreMessageInfo(mi)
4715
4932
  }
@@ -4721,7 +4938,7 @@ func (x *FavoritesAction_Favorite) String() string {
4721
4938
  func (*FavoritesAction_Favorite) ProtoMessage() {}
4722
4939
 
4723
4940
  func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
4724
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
4941
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
4725
4942
  if x != nil {
4726
4943
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4727
4944
  if ms.LoadMessageInfo() == nil {
@@ -4734,7 +4951,7 @@ func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
4734
4951
 
4735
4952
  // Deprecated: Use FavoritesAction_Favorite.ProtoReflect.Descriptor instead.
4736
4953
  func (*FavoritesAction_Favorite) Descriptor() ([]byte, []int) {
4737
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14, 0}
4954
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16, 0}
4738
4955
  }
4739
4956
 
4740
4957
  func (x *FavoritesAction_Favorite) GetID() string {
@@ -4802,7 +5019,12 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
4802
5019
  "\x06FAILED\x10\b\x12\r\n" +
4803
5020
  "\tABANDONED\x10\t\x12\v\n" +
4804
5021
  "\aONGOING\x10\n" +
4805
- "\"\xa6\x02\n" +
5022
+ "\"\xae\x01\n" +
5023
+ "\x10PaymentTosAction\x12R\n" +
5024
+ "\rpaymentNotice\x18\x01 \x02(\x0e2,.WASyncAction.PaymentTosAction.PaymentNoticeR\rpaymentNotice\x12\x1a\n" +
5025
+ "\baccepted\x18\x02 \x02(\bR\baccepted\"*\n" +
5026
+ "\rPaymentNotice\x12\x19\n" +
5027
+ "\x15BR_PAY_PRIVACY_POLICY\x10\x00\"\xa6\x02\n" +
4806
5028
  "!NotificationActivitySettingAction\x12\x8d\x01\n" +
4807
5029
  "\x1bnotificationActivitySetting\x18\x01 \x01(\x0e2K.WASyncAction.NotificationActivitySettingAction.NotificationActivitySettingR\x1bnotificationActivitySetting\"q\n" +
4808
5030
  "\x1bNotificationActivitySetting\x12\x18\n" +
@@ -4912,7 +5134,7 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
4912
5134
  "\x06WEAROS\x10\b\"A\n" +
4913
5135
  "\x11RecentEmojiWeight\x12\x14\n" +
4914
5136
  "\x05emoji\x18\x01 \x01(\tR\x05emoji\x12\x16\n" +
4915
- "\x06weight\x18\x02 \x01(\x02R\x06weight\"\xea%\n" +
5137
+ "\x06weight\x18\x02 \x01(\x02R\x06weight\"\xf8(\n" +
4916
5138
  "\x0fSyncActionValue\x12\x1c\n" +
4917
5139
  "\ttimestamp\x18\x01 \x01(\x03R\ttimestamp\x128\n" +
4918
5140
  "\n" +
@@ -4973,7 +5195,12 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
4973
5195
  "\x15usernameChatStartMode\x18; \x01(\v2).WASyncAction.UsernameChatStartModeActionR\x15usernameChatStartMode\x12}\n" +
4974
5196
  "!notificationActivitySettingAction\x18< \x01(\v2/.WASyncAction.NotificationActivitySettingActionR!notificationActivitySettingAction\x12J\n" +
4975
5197
  "\x10lidContactAction\x18= \x01(\v2\x1e.WASyncAction.LidContactActionR\x10lidContactAction\x12z\n" +
4976
- " ctwaPerCustomerDataSharingAction\x18> \x01(\v2..WASyncAction.CtwaPerCustomerDataSharingActionR ctwaPerCustomerDataSharingAction\"t\n" +
5198
+ " ctwaPerCustomerDataSharingAction\x18> \x01(\v2..WASyncAction.CtwaPerCustomerDataSharingActionR ctwaPerCustomerDataSharingAction\x12J\n" +
5199
+ "\x10paymentTosAction\x18? \x01(\v2\x1e.WASyncAction.PaymentTosActionR\x10paymentTosAction\x12\xbc\x01\n" +
5200
+ "6privacySettingChannelsPersonalisedRecommendationAction\x18@ \x01(\v2D.WASyncAction.PrivacySettingChannelsPersonalisedRecommendationActionR6privacySettingChannelsPersonalisedRecommendationAction\x12\x80\x01\n" +
5201
+ "\"businessBroadcastAssociationAction\x18A \x01(\v20.WASyncAction.BusinessBroadcastAssociationActionR\"businessBroadcastAssociationAction\">\n" +
5202
+ "\"BusinessBroadcastAssociationAction\x12\x18\n" +
5203
+ "\adeleted\x18\x01 \x01(\bR\adeleted\"t\n" +
4977
5204
  " CtwaPerCustomerDataSharingAction\x12P\n" +
4978
5205
  "#isCtwaPerCustomerDataSharingEnabled\x18\x01 \x01(\bR#isCtwaPerCustomerDataSharingEnabled\"\xa4\x01\n" +
4979
5206
  "\x10LidContactAction\x12\x1a\n" +
@@ -4984,7 +5211,9 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
4984
5211
  "\x0fFavoritesAction\x12D\n" +
4985
5212
  "\tfavorites\x18\x01 \x03(\v2&.WASyncAction.FavoritesAction.FavoriteR\tfavorites\x1a\x1a\n" +
4986
5213
  "\bFavorite\x12\x0e\n" +
4987
- "\x02ID\x18\x01 \x01(\tR\x02ID\"Y\n" +
5214
+ "\x02ID\x18\x01 \x01(\tR\x02ID\"`\n" +
5215
+ "6PrivacySettingChannelsPersonalisedRecommendationAction\x12&\n" +
5216
+ "\x0eisUserOptedOut\x18\x01 \x01(\bR\x0eisUserOptedOut\"Y\n" +
4988
5217
  "'PrivacySettingDisableLinkPreviewsAction\x12.\n" +
4989
5218
  "\x12isPreviewsDisabled\x18\x01 \x01(\bR\x12isPreviewsDisabled\":\n" +
4990
5219
  "\x18WamoUserIdentifierAction\x12\x1e\n" +
@@ -5146,176 +5375,184 @@ func file_waSyncAction_WASyncAction_proto_rawDescGZIP() []byte {
5146
5375
  return file_waSyncAction_WASyncAction_proto_rawDescData
5147
5376
  }
5148
5377
 
5149
- var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo, 12)
5150
- var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo, 64)
5378
+ var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo, 13)
5379
+ var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo, 67)
5151
5380
  var file_waSyncAction_WASyncAction_proto_goTypes = []any{
5152
5381
  (CallLogRecord_CallType)(0), // 0: WASyncAction.CallLogRecord.CallType
5153
5382
  (CallLogRecord_SilenceReason)(0), // 1: WASyncAction.CallLogRecord.SilenceReason
5154
5383
  (CallLogRecord_CallResult)(0), // 2: WASyncAction.CallLogRecord.CallResult
5155
- (NotificationActivitySettingAction_NotificationActivitySetting)(0), // 3: WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
5156
- (WaffleAccountLinkStateAction_AccountLinkState)(0), // 4: WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
5157
- (MerchantPaymentPartnerAction_Status)(0), // 5: WASyncAction.MerchantPaymentPartnerAction.Status
5158
- (NoteEditAction_NoteType)(0), // 6: WASyncAction.NoteEditAction.NoteType
5159
- (StatusPrivacyAction_StatusDistributionMode)(0), // 7: WASyncAction.StatusPrivacyAction.StatusDistributionMode
5160
- (MarketingMessageAction_MarketingMessagePrototypeType)(0), // 8: WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
5161
- (UsernameChatStartModeAction_ChatStartMode)(0), // 9: WASyncAction.UsernameChatStartModeAction.ChatStartMode
5162
- (LabelEditAction_ListType)(0), // 10: WASyncAction.LabelEditAction.ListType
5163
- (PatchDebugData_Platform)(0), // 11: WASyncAction.PatchDebugData.Platform
5164
- (*CallLogRecord)(nil), // 12: WASyncAction.CallLogRecord
5165
- (*NotificationActivitySettingAction)(nil), // 13: WASyncAction.NotificationActivitySettingAction
5166
- (*WaffleAccountLinkStateAction)(nil), // 14: WASyncAction.WaffleAccountLinkStateAction
5167
- (*MerchantPaymentPartnerAction)(nil), // 15: WASyncAction.MerchantPaymentPartnerAction
5168
- (*NoteEditAction)(nil), // 16: WASyncAction.NoteEditAction
5169
- (*StatusPrivacyAction)(nil), // 17: WASyncAction.StatusPrivacyAction
5170
- (*MarketingMessageAction)(nil), // 18: WASyncAction.MarketingMessageAction
5171
- (*UsernameChatStartModeAction)(nil), // 19: WASyncAction.UsernameChatStartModeAction
5172
- (*LabelEditAction)(nil), // 20: WASyncAction.LabelEditAction
5173
- (*PatchDebugData)(nil), // 21: WASyncAction.PatchDebugData
5174
- (*RecentEmojiWeight)(nil), // 22: WASyncAction.RecentEmojiWeight
5175
- (*SyncActionValue)(nil), // 23: WASyncAction.SyncActionValue
5176
- (*CtwaPerCustomerDataSharingAction)(nil), // 24: WASyncAction.CtwaPerCustomerDataSharingAction
5177
- (*LidContactAction)(nil), // 25: WASyncAction.LidContactAction
5178
- (*FavoritesAction)(nil), // 26: WASyncAction.FavoritesAction
5179
- (*PrivacySettingDisableLinkPreviewsAction)(nil), // 27: WASyncAction.PrivacySettingDisableLinkPreviewsAction
5180
- (*WamoUserIdentifierAction)(nil), // 28: WASyncAction.WamoUserIdentifierAction
5181
- (*LockChatAction)(nil), // 29: WASyncAction.LockChatAction
5182
- (*CustomPaymentMethodsAction)(nil), // 30: WASyncAction.CustomPaymentMethodsAction
5183
- (*CustomPaymentMethod)(nil), // 31: WASyncAction.CustomPaymentMethod
5184
- (*CustomPaymentMethodMetadata)(nil), // 32: WASyncAction.CustomPaymentMethodMetadata
5185
- (*PaymentInfoAction)(nil), // 33: WASyncAction.PaymentInfoAction
5186
- (*LabelReorderingAction)(nil), // 34: WASyncAction.LabelReorderingAction
5187
- (*DeleteIndividualCallLogAction)(nil), // 35: WASyncAction.DeleteIndividualCallLogAction
5188
- (*BotWelcomeRequestAction)(nil), // 36: WASyncAction.BotWelcomeRequestAction
5189
- (*CallLogAction)(nil), // 37: WASyncAction.CallLogAction
5190
- (*PrivacySettingRelayAllCalls)(nil), // 38: WASyncAction.PrivacySettingRelayAllCalls
5191
- (*ExternalWebBetaAction)(nil), // 39: WASyncAction.ExternalWebBetaAction
5192
- (*MarketingMessageBroadcastAction)(nil), // 40: WASyncAction.MarketingMessageBroadcastAction
5193
- (*PnForLidChatAction)(nil), // 41: WASyncAction.PnForLidChatAction
5194
- (*ChatAssignmentOpenedStatusAction)(nil), // 42: WASyncAction.ChatAssignmentOpenedStatusAction
5195
- (*ChatAssignmentAction)(nil), // 43: WASyncAction.ChatAssignmentAction
5196
- (*StickerAction)(nil), // 44: WASyncAction.StickerAction
5197
- (*RemoveRecentStickerAction)(nil), // 45: WASyncAction.RemoveRecentStickerAction
5198
- (*PrimaryVersionAction)(nil), // 46: WASyncAction.PrimaryVersionAction
5199
- (*NuxAction)(nil), // 47: WASyncAction.NuxAction
5200
- (*TimeFormatAction)(nil), // 48: WASyncAction.TimeFormatAction
5201
- (*UserStatusMuteAction)(nil), // 49: WASyncAction.UserStatusMuteAction
5202
- (*SubscriptionAction)(nil), // 50: WASyncAction.SubscriptionAction
5203
- (*AgentAction)(nil), // 51: WASyncAction.AgentAction
5204
- (*AndroidUnsupportedActions)(nil), // 52: WASyncAction.AndroidUnsupportedActions
5205
- (*PrimaryFeature)(nil), // 53: WASyncAction.PrimaryFeature
5206
- (*KeyExpiration)(nil), // 54: WASyncAction.KeyExpiration
5207
- (*SyncActionMessage)(nil), // 55: WASyncAction.SyncActionMessage
5208
- (*SyncActionMessageRange)(nil), // 56: WASyncAction.SyncActionMessageRange
5209
- (*UnarchiveChatsSetting)(nil), // 57: WASyncAction.UnarchiveChatsSetting
5210
- (*DeleteChatAction)(nil), // 58: WASyncAction.DeleteChatAction
5211
- (*ClearChatAction)(nil), // 59: WASyncAction.ClearChatAction
5212
- (*MarkChatAsReadAction)(nil), // 60: WASyncAction.MarkChatAsReadAction
5213
- (*DeleteMessageForMeAction)(nil), // 61: WASyncAction.DeleteMessageForMeAction
5214
- (*ArchiveChatAction)(nil), // 62: WASyncAction.ArchiveChatAction
5215
- (*RecentEmojiWeightsAction)(nil), // 63: WASyncAction.RecentEmojiWeightsAction
5216
- (*LabelAssociationAction)(nil), // 64: WASyncAction.LabelAssociationAction
5217
- (*QuickReplyAction)(nil), // 65: WASyncAction.QuickReplyAction
5218
- (*LocaleSetting)(nil), // 66: WASyncAction.LocaleSetting
5219
- (*PushNameSetting)(nil), // 67: WASyncAction.PushNameSetting
5220
- (*SecurityNotificationSetting)(nil), // 68: WASyncAction.SecurityNotificationSetting
5221
- (*PinAction)(nil), // 69: WASyncAction.PinAction
5222
- (*MuteAction)(nil), // 70: WASyncAction.MuteAction
5223
- (*ContactAction)(nil), // 71: WASyncAction.ContactAction
5224
- (*StarAction)(nil), // 72: WASyncAction.StarAction
5225
- (*SyncActionData)(nil), // 73: WASyncAction.SyncActionData
5226
- (*CallLogRecord_ParticipantInfo)(nil), // 74: WASyncAction.CallLogRecord.ParticipantInfo
5227
- (*FavoritesAction_Favorite)(nil), // 75: WASyncAction.FavoritesAction.Favorite
5228
- (*waChatLockSettings.ChatLockSettings)(nil), // 76: WAProtobufsChatLockSettings.ChatLockSettings
5229
- (*waDeviceCapabilities.DeviceCapabilities)(nil), // 77: WAProtobufsDeviceCapabilities.DeviceCapabilities
5230
- (*waCommon.MessageKey)(nil), // 78: WACommon.MessageKey
5384
+ (PaymentTosAction_PaymentNotice)(0), // 3: WASyncAction.PaymentTosAction.PaymentNotice
5385
+ (NotificationActivitySettingAction_NotificationActivitySetting)(0), // 4: WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
5386
+ (WaffleAccountLinkStateAction_AccountLinkState)(0), // 5: WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
5387
+ (MerchantPaymentPartnerAction_Status)(0), // 6: WASyncAction.MerchantPaymentPartnerAction.Status
5388
+ (NoteEditAction_NoteType)(0), // 7: WASyncAction.NoteEditAction.NoteType
5389
+ (StatusPrivacyAction_StatusDistributionMode)(0), // 8: WASyncAction.StatusPrivacyAction.StatusDistributionMode
5390
+ (MarketingMessageAction_MarketingMessagePrototypeType)(0), // 9: WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
5391
+ (UsernameChatStartModeAction_ChatStartMode)(0), // 10: WASyncAction.UsernameChatStartModeAction.ChatStartMode
5392
+ (LabelEditAction_ListType)(0), // 11: WASyncAction.LabelEditAction.ListType
5393
+ (PatchDebugData_Platform)(0), // 12: WASyncAction.PatchDebugData.Platform
5394
+ (*CallLogRecord)(nil), // 13: WASyncAction.CallLogRecord
5395
+ (*PaymentTosAction)(nil), // 14: WASyncAction.PaymentTosAction
5396
+ (*NotificationActivitySettingAction)(nil), // 15: WASyncAction.NotificationActivitySettingAction
5397
+ (*WaffleAccountLinkStateAction)(nil), // 16: WASyncAction.WaffleAccountLinkStateAction
5398
+ (*MerchantPaymentPartnerAction)(nil), // 17: WASyncAction.MerchantPaymentPartnerAction
5399
+ (*NoteEditAction)(nil), // 18: WASyncAction.NoteEditAction
5400
+ (*StatusPrivacyAction)(nil), // 19: WASyncAction.StatusPrivacyAction
5401
+ (*MarketingMessageAction)(nil), // 20: WASyncAction.MarketingMessageAction
5402
+ (*UsernameChatStartModeAction)(nil), // 21: WASyncAction.UsernameChatStartModeAction
5403
+ (*LabelEditAction)(nil), // 22: WASyncAction.LabelEditAction
5404
+ (*PatchDebugData)(nil), // 23: WASyncAction.PatchDebugData
5405
+ (*RecentEmojiWeight)(nil), // 24: WASyncAction.RecentEmojiWeight
5406
+ (*SyncActionValue)(nil), // 25: WASyncAction.SyncActionValue
5407
+ (*BusinessBroadcastAssociationAction)(nil), // 26: WASyncAction.BusinessBroadcastAssociationAction
5408
+ (*CtwaPerCustomerDataSharingAction)(nil), // 27: WASyncAction.CtwaPerCustomerDataSharingAction
5409
+ (*LidContactAction)(nil), // 28: WASyncAction.LidContactAction
5410
+ (*FavoritesAction)(nil), // 29: WASyncAction.FavoritesAction
5411
+ (*PrivacySettingChannelsPersonalisedRecommendationAction)(nil), // 30: WASyncAction.PrivacySettingChannelsPersonalisedRecommendationAction
5412
+ (*PrivacySettingDisableLinkPreviewsAction)(nil), // 31: WASyncAction.PrivacySettingDisableLinkPreviewsAction
5413
+ (*WamoUserIdentifierAction)(nil), // 32: WASyncAction.WamoUserIdentifierAction
5414
+ (*LockChatAction)(nil), // 33: WASyncAction.LockChatAction
5415
+ (*CustomPaymentMethodsAction)(nil), // 34: WASyncAction.CustomPaymentMethodsAction
5416
+ (*CustomPaymentMethod)(nil), // 35: WASyncAction.CustomPaymentMethod
5417
+ (*CustomPaymentMethodMetadata)(nil), // 36: WASyncAction.CustomPaymentMethodMetadata
5418
+ (*PaymentInfoAction)(nil), // 37: WASyncAction.PaymentInfoAction
5419
+ (*LabelReorderingAction)(nil), // 38: WASyncAction.LabelReorderingAction
5420
+ (*DeleteIndividualCallLogAction)(nil), // 39: WASyncAction.DeleteIndividualCallLogAction
5421
+ (*BotWelcomeRequestAction)(nil), // 40: WASyncAction.BotWelcomeRequestAction
5422
+ (*CallLogAction)(nil), // 41: WASyncAction.CallLogAction
5423
+ (*PrivacySettingRelayAllCalls)(nil), // 42: WASyncAction.PrivacySettingRelayAllCalls
5424
+ (*ExternalWebBetaAction)(nil), // 43: WASyncAction.ExternalWebBetaAction
5425
+ (*MarketingMessageBroadcastAction)(nil), // 44: WASyncAction.MarketingMessageBroadcastAction
5426
+ (*PnForLidChatAction)(nil), // 45: WASyncAction.PnForLidChatAction
5427
+ (*ChatAssignmentOpenedStatusAction)(nil), // 46: WASyncAction.ChatAssignmentOpenedStatusAction
5428
+ (*ChatAssignmentAction)(nil), // 47: WASyncAction.ChatAssignmentAction
5429
+ (*StickerAction)(nil), // 48: WASyncAction.StickerAction
5430
+ (*RemoveRecentStickerAction)(nil), // 49: WASyncAction.RemoveRecentStickerAction
5431
+ (*PrimaryVersionAction)(nil), // 50: WASyncAction.PrimaryVersionAction
5432
+ (*NuxAction)(nil), // 51: WASyncAction.NuxAction
5433
+ (*TimeFormatAction)(nil), // 52: WASyncAction.TimeFormatAction
5434
+ (*UserStatusMuteAction)(nil), // 53: WASyncAction.UserStatusMuteAction
5435
+ (*SubscriptionAction)(nil), // 54: WASyncAction.SubscriptionAction
5436
+ (*AgentAction)(nil), // 55: WASyncAction.AgentAction
5437
+ (*AndroidUnsupportedActions)(nil), // 56: WASyncAction.AndroidUnsupportedActions
5438
+ (*PrimaryFeature)(nil), // 57: WASyncAction.PrimaryFeature
5439
+ (*KeyExpiration)(nil), // 58: WASyncAction.KeyExpiration
5440
+ (*SyncActionMessage)(nil), // 59: WASyncAction.SyncActionMessage
5441
+ (*SyncActionMessageRange)(nil), // 60: WASyncAction.SyncActionMessageRange
5442
+ (*UnarchiveChatsSetting)(nil), // 61: WASyncAction.UnarchiveChatsSetting
5443
+ (*DeleteChatAction)(nil), // 62: WASyncAction.DeleteChatAction
5444
+ (*ClearChatAction)(nil), // 63: WASyncAction.ClearChatAction
5445
+ (*MarkChatAsReadAction)(nil), // 64: WASyncAction.MarkChatAsReadAction
5446
+ (*DeleteMessageForMeAction)(nil), // 65: WASyncAction.DeleteMessageForMeAction
5447
+ (*ArchiveChatAction)(nil), // 66: WASyncAction.ArchiveChatAction
5448
+ (*RecentEmojiWeightsAction)(nil), // 67: WASyncAction.RecentEmojiWeightsAction
5449
+ (*LabelAssociationAction)(nil), // 68: WASyncAction.LabelAssociationAction
5450
+ (*QuickReplyAction)(nil), // 69: WASyncAction.QuickReplyAction
5451
+ (*LocaleSetting)(nil), // 70: WASyncAction.LocaleSetting
5452
+ (*PushNameSetting)(nil), // 71: WASyncAction.PushNameSetting
5453
+ (*SecurityNotificationSetting)(nil), // 72: WASyncAction.SecurityNotificationSetting
5454
+ (*PinAction)(nil), // 73: WASyncAction.PinAction
5455
+ (*MuteAction)(nil), // 74: WASyncAction.MuteAction
5456
+ (*ContactAction)(nil), // 75: WASyncAction.ContactAction
5457
+ (*StarAction)(nil), // 76: WASyncAction.StarAction
5458
+ (*SyncActionData)(nil), // 77: WASyncAction.SyncActionData
5459
+ (*CallLogRecord_ParticipantInfo)(nil), // 78: WASyncAction.CallLogRecord.ParticipantInfo
5460
+ (*FavoritesAction_Favorite)(nil), // 79: WASyncAction.FavoritesAction.Favorite
5461
+ (*waChatLockSettings.ChatLockSettings)(nil), // 80: WAProtobufsChatLockSettings.ChatLockSettings
5462
+ (*waDeviceCapabilities.DeviceCapabilities)(nil), // 81: WAProtobufsDeviceCapabilities.DeviceCapabilities
5463
+ (*waCommon.MessageKey)(nil), // 82: WACommon.MessageKey
5231
5464
  }
5232
5465
  var file_waSyncAction_WASyncAction_proto_depIdxs = []int32{
5233
5466
  2, // 0: WASyncAction.CallLogRecord.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
5234
5467
  1, // 1: WASyncAction.CallLogRecord.silenceReason:type_name -> WASyncAction.CallLogRecord.SilenceReason
5235
- 74, // 2: WASyncAction.CallLogRecord.participants:type_name -> WASyncAction.CallLogRecord.ParticipantInfo
5468
+ 78, // 2: WASyncAction.CallLogRecord.participants:type_name -> WASyncAction.CallLogRecord.ParticipantInfo
5236
5469
  0, // 3: WASyncAction.CallLogRecord.callType:type_name -> WASyncAction.CallLogRecord.CallType
5237
- 3, // 4: WASyncAction.NotificationActivitySettingAction.notificationActivitySetting:type_name -> WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
5238
- 4, // 5: WASyncAction.WaffleAccountLinkStateAction.linkState:type_name -> WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
5239
- 5, // 6: WASyncAction.MerchantPaymentPartnerAction.status:type_name -> WASyncAction.MerchantPaymentPartnerAction.Status
5240
- 6, // 7: WASyncAction.NoteEditAction.type:type_name -> WASyncAction.NoteEditAction.NoteType
5241
- 7, // 8: WASyncAction.StatusPrivacyAction.mode:type_name -> WASyncAction.StatusPrivacyAction.StatusDistributionMode
5242
- 8, // 9: WASyncAction.MarketingMessageAction.type:type_name -> WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
5243
- 9, // 10: WASyncAction.UsernameChatStartModeAction.chatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction.ChatStartMode
5244
- 10, // 11: WASyncAction.LabelEditAction.type:type_name -> WASyncAction.LabelEditAction.ListType
5245
- 11, // 12: WASyncAction.PatchDebugData.senderPlatform:type_name -> WASyncAction.PatchDebugData.Platform
5246
- 72, // 13: WASyncAction.SyncActionValue.starAction:type_name -> WASyncAction.StarAction
5247
- 71, // 14: WASyncAction.SyncActionValue.contactAction:type_name -> WASyncAction.ContactAction
5248
- 70, // 15: WASyncAction.SyncActionValue.muteAction:type_name -> WASyncAction.MuteAction
5249
- 69, // 16: WASyncAction.SyncActionValue.pinAction:type_name -> WASyncAction.PinAction
5250
- 68, // 17: WASyncAction.SyncActionValue.securityNotificationSetting:type_name -> WASyncAction.SecurityNotificationSetting
5251
- 67, // 18: WASyncAction.SyncActionValue.pushNameSetting:type_name -> WASyncAction.PushNameSetting
5252
- 65, // 19: WASyncAction.SyncActionValue.quickReplyAction:type_name -> WASyncAction.QuickReplyAction
5253
- 63, // 20: WASyncAction.SyncActionValue.recentEmojiWeightsAction:type_name -> WASyncAction.RecentEmojiWeightsAction
5254
- 20, // 21: WASyncAction.SyncActionValue.labelEditAction:type_name -> WASyncAction.LabelEditAction
5255
- 64, // 22: WASyncAction.SyncActionValue.labelAssociationAction:type_name -> WASyncAction.LabelAssociationAction
5256
- 66, // 23: WASyncAction.SyncActionValue.localeSetting:type_name -> WASyncAction.LocaleSetting
5257
- 62, // 24: WASyncAction.SyncActionValue.archiveChatAction:type_name -> WASyncAction.ArchiveChatAction
5258
- 61, // 25: WASyncAction.SyncActionValue.deleteMessageForMeAction:type_name -> WASyncAction.DeleteMessageForMeAction
5259
- 54, // 26: WASyncAction.SyncActionValue.keyExpiration:type_name -> WASyncAction.KeyExpiration
5260
- 60, // 27: WASyncAction.SyncActionValue.markChatAsReadAction:type_name -> WASyncAction.MarkChatAsReadAction
5261
- 59, // 28: WASyncAction.SyncActionValue.clearChatAction:type_name -> WASyncAction.ClearChatAction
5262
- 58, // 29: WASyncAction.SyncActionValue.deleteChatAction:type_name -> WASyncAction.DeleteChatAction
5263
- 57, // 30: WASyncAction.SyncActionValue.unarchiveChatsSetting:type_name -> WASyncAction.UnarchiveChatsSetting
5264
- 53, // 31: WASyncAction.SyncActionValue.primaryFeature:type_name -> WASyncAction.PrimaryFeature
5265
- 52, // 32: WASyncAction.SyncActionValue.androidUnsupportedActions:type_name -> WASyncAction.AndroidUnsupportedActions
5266
- 51, // 33: WASyncAction.SyncActionValue.agentAction:type_name -> WASyncAction.AgentAction
5267
- 50, // 34: WASyncAction.SyncActionValue.subscriptionAction:type_name -> WASyncAction.SubscriptionAction
5268
- 49, // 35: WASyncAction.SyncActionValue.userStatusMuteAction:type_name -> WASyncAction.UserStatusMuteAction
5269
- 48, // 36: WASyncAction.SyncActionValue.timeFormatAction:type_name -> WASyncAction.TimeFormatAction
5270
- 47, // 37: WASyncAction.SyncActionValue.nuxAction:type_name -> WASyncAction.NuxAction
5271
- 46, // 38: WASyncAction.SyncActionValue.primaryVersionAction:type_name -> WASyncAction.PrimaryVersionAction
5272
- 44, // 39: WASyncAction.SyncActionValue.stickerAction:type_name -> WASyncAction.StickerAction
5273
- 45, // 40: WASyncAction.SyncActionValue.removeRecentStickerAction:type_name -> WASyncAction.RemoveRecentStickerAction
5274
- 43, // 41: WASyncAction.SyncActionValue.chatAssignment:type_name -> WASyncAction.ChatAssignmentAction
5275
- 42, // 42: WASyncAction.SyncActionValue.chatAssignmentOpenedStatus:type_name -> WASyncAction.ChatAssignmentOpenedStatusAction
5276
- 41, // 43: WASyncAction.SyncActionValue.pnForLidChatAction:type_name -> WASyncAction.PnForLidChatAction
5277
- 18, // 44: WASyncAction.SyncActionValue.marketingMessageAction:type_name -> WASyncAction.MarketingMessageAction
5278
- 40, // 45: WASyncAction.SyncActionValue.marketingMessageBroadcastAction:type_name -> WASyncAction.MarketingMessageBroadcastAction
5279
- 39, // 46: WASyncAction.SyncActionValue.externalWebBetaAction:type_name -> WASyncAction.ExternalWebBetaAction
5280
- 38, // 47: WASyncAction.SyncActionValue.privacySettingRelayAllCalls:type_name -> WASyncAction.PrivacySettingRelayAllCalls
5281
- 37, // 48: WASyncAction.SyncActionValue.callLogAction:type_name -> WASyncAction.CallLogAction
5282
- 17, // 49: WASyncAction.SyncActionValue.statusPrivacy:type_name -> WASyncAction.StatusPrivacyAction
5283
- 36, // 50: WASyncAction.SyncActionValue.botWelcomeRequestAction:type_name -> WASyncAction.BotWelcomeRequestAction
5284
- 35, // 51: WASyncAction.SyncActionValue.deleteIndividualCallLog:type_name -> WASyncAction.DeleteIndividualCallLogAction
5285
- 34, // 52: WASyncAction.SyncActionValue.labelReorderingAction:type_name -> WASyncAction.LabelReorderingAction
5286
- 33, // 53: WASyncAction.SyncActionValue.paymentInfoAction:type_name -> WASyncAction.PaymentInfoAction
5287
- 30, // 54: WASyncAction.SyncActionValue.customPaymentMethodsAction:type_name -> WASyncAction.CustomPaymentMethodsAction
5288
- 29, // 55: WASyncAction.SyncActionValue.lockChatAction:type_name -> WASyncAction.LockChatAction
5289
- 76, // 56: WASyncAction.SyncActionValue.chatLockSettings:type_name -> WAProtobufsChatLockSettings.ChatLockSettings
5290
- 28, // 57: WASyncAction.SyncActionValue.wamoUserIdentifierAction:type_name -> WASyncAction.WamoUserIdentifierAction
5291
- 27, // 58: WASyncAction.SyncActionValue.privacySettingDisableLinkPreviewsAction:type_name -> WASyncAction.PrivacySettingDisableLinkPreviewsAction
5292
- 77, // 59: WASyncAction.SyncActionValue.deviceCapabilities:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities
5293
- 16, // 60: WASyncAction.SyncActionValue.noteEditAction:type_name -> WASyncAction.NoteEditAction
5294
- 26, // 61: WASyncAction.SyncActionValue.favoritesAction:type_name -> WASyncAction.FavoritesAction
5295
- 15, // 62: WASyncAction.SyncActionValue.merchantPaymentPartnerAction:type_name -> WASyncAction.MerchantPaymentPartnerAction
5296
- 14, // 63: WASyncAction.SyncActionValue.waffleAccountLinkStateAction:type_name -> WASyncAction.WaffleAccountLinkStateAction
5297
- 19, // 64: WASyncAction.SyncActionValue.usernameChatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction
5298
- 13, // 65: WASyncAction.SyncActionValue.notificationActivitySettingAction:type_name -> WASyncAction.NotificationActivitySettingAction
5299
- 25, // 66: WASyncAction.SyncActionValue.lidContactAction:type_name -> WASyncAction.LidContactAction
5300
- 24, // 67: WASyncAction.SyncActionValue.ctwaPerCustomerDataSharingAction:type_name -> WASyncAction.CtwaPerCustomerDataSharingAction
5301
- 75, // 68: WASyncAction.FavoritesAction.favorites:type_name -> WASyncAction.FavoritesAction.Favorite
5302
- 31, // 69: WASyncAction.CustomPaymentMethodsAction.customPaymentMethods:type_name -> WASyncAction.CustomPaymentMethod
5303
- 32, // 70: WASyncAction.CustomPaymentMethod.metadata:type_name -> WASyncAction.CustomPaymentMethodMetadata
5304
- 12, // 71: WASyncAction.CallLogAction.callLogRecord:type_name -> WASyncAction.CallLogRecord
5305
- 78, // 72: WASyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
5306
- 55, // 73: WASyncAction.SyncActionMessageRange.messages:type_name -> WASyncAction.SyncActionMessage
5307
- 56, // 74: WASyncAction.DeleteChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5308
- 56, // 75: WASyncAction.ClearChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5309
- 56, // 76: WASyncAction.MarkChatAsReadAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5310
- 56, // 77: WASyncAction.ArchiveChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5311
- 22, // 78: WASyncAction.RecentEmojiWeightsAction.weights:type_name -> WASyncAction.RecentEmojiWeight
5312
- 23, // 79: WASyncAction.SyncActionData.value:type_name -> WASyncAction.SyncActionValue
5313
- 2, // 80: WASyncAction.CallLogRecord.ParticipantInfo.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
5314
- 81, // [81:81] is the sub-list for method output_type
5315
- 81, // [81:81] is the sub-list for method input_type
5316
- 81, // [81:81] is the sub-list for extension type_name
5317
- 81, // [81:81] is the sub-list for extension extendee
5318
- 0, // [0:81] is the sub-list for field type_name
5470
+ 3, // 4: WASyncAction.PaymentTosAction.paymentNotice:type_name -> WASyncAction.PaymentTosAction.PaymentNotice
5471
+ 4, // 5: WASyncAction.NotificationActivitySettingAction.notificationActivitySetting:type_name -> WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
5472
+ 5, // 6: WASyncAction.WaffleAccountLinkStateAction.linkState:type_name -> WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
5473
+ 6, // 7: WASyncAction.MerchantPaymentPartnerAction.status:type_name -> WASyncAction.MerchantPaymentPartnerAction.Status
5474
+ 7, // 8: WASyncAction.NoteEditAction.type:type_name -> WASyncAction.NoteEditAction.NoteType
5475
+ 8, // 9: WASyncAction.StatusPrivacyAction.mode:type_name -> WASyncAction.StatusPrivacyAction.StatusDistributionMode
5476
+ 9, // 10: WASyncAction.MarketingMessageAction.type:type_name -> WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
5477
+ 10, // 11: WASyncAction.UsernameChatStartModeAction.chatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction.ChatStartMode
5478
+ 11, // 12: WASyncAction.LabelEditAction.type:type_name -> WASyncAction.LabelEditAction.ListType
5479
+ 12, // 13: WASyncAction.PatchDebugData.senderPlatform:type_name -> WASyncAction.PatchDebugData.Platform
5480
+ 76, // 14: WASyncAction.SyncActionValue.starAction:type_name -> WASyncAction.StarAction
5481
+ 75, // 15: WASyncAction.SyncActionValue.contactAction:type_name -> WASyncAction.ContactAction
5482
+ 74, // 16: WASyncAction.SyncActionValue.muteAction:type_name -> WASyncAction.MuteAction
5483
+ 73, // 17: WASyncAction.SyncActionValue.pinAction:type_name -> WASyncAction.PinAction
5484
+ 72, // 18: WASyncAction.SyncActionValue.securityNotificationSetting:type_name -> WASyncAction.SecurityNotificationSetting
5485
+ 71, // 19: WASyncAction.SyncActionValue.pushNameSetting:type_name -> WASyncAction.PushNameSetting
5486
+ 69, // 20: WASyncAction.SyncActionValue.quickReplyAction:type_name -> WASyncAction.QuickReplyAction
5487
+ 67, // 21: WASyncAction.SyncActionValue.recentEmojiWeightsAction:type_name -> WASyncAction.RecentEmojiWeightsAction
5488
+ 22, // 22: WASyncAction.SyncActionValue.labelEditAction:type_name -> WASyncAction.LabelEditAction
5489
+ 68, // 23: WASyncAction.SyncActionValue.labelAssociationAction:type_name -> WASyncAction.LabelAssociationAction
5490
+ 70, // 24: WASyncAction.SyncActionValue.localeSetting:type_name -> WASyncAction.LocaleSetting
5491
+ 66, // 25: WASyncAction.SyncActionValue.archiveChatAction:type_name -> WASyncAction.ArchiveChatAction
5492
+ 65, // 26: WASyncAction.SyncActionValue.deleteMessageForMeAction:type_name -> WASyncAction.DeleteMessageForMeAction
5493
+ 58, // 27: WASyncAction.SyncActionValue.keyExpiration:type_name -> WASyncAction.KeyExpiration
5494
+ 64, // 28: WASyncAction.SyncActionValue.markChatAsReadAction:type_name -> WASyncAction.MarkChatAsReadAction
5495
+ 63, // 29: WASyncAction.SyncActionValue.clearChatAction:type_name -> WASyncAction.ClearChatAction
5496
+ 62, // 30: WASyncAction.SyncActionValue.deleteChatAction:type_name -> WASyncAction.DeleteChatAction
5497
+ 61, // 31: WASyncAction.SyncActionValue.unarchiveChatsSetting:type_name -> WASyncAction.UnarchiveChatsSetting
5498
+ 57, // 32: WASyncAction.SyncActionValue.primaryFeature:type_name -> WASyncAction.PrimaryFeature
5499
+ 56, // 33: WASyncAction.SyncActionValue.androidUnsupportedActions:type_name -> WASyncAction.AndroidUnsupportedActions
5500
+ 55, // 34: WASyncAction.SyncActionValue.agentAction:type_name -> WASyncAction.AgentAction
5501
+ 54, // 35: WASyncAction.SyncActionValue.subscriptionAction:type_name -> WASyncAction.SubscriptionAction
5502
+ 53, // 36: WASyncAction.SyncActionValue.userStatusMuteAction:type_name -> WASyncAction.UserStatusMuteAction
5503
+ 52, // 37: WASyncAction.SyncActionValue.timeFormatAction:type_name -> WASyncAction.TimeFormatAction
5504
+ 51, // 38: WASyncAction.SyncActionValue.nuxAction:type_name -> WASyncAction.NuxAction
5505
+ 50, // 39: WASyncAction.SyncActionValue.primaryVersionAction:type_name -> WASyncAction.PrimaryVersionAction
5506
+ 48, // 40: WASyncAction.SyncActionValue.stickerAction:type_name -> WASyncAction.StickerAction
5507
+ 49, // 41: WASyncAction.SyncActionValue.removeRecentStickerAction:type_name -> WASyncAction.RemoveRecentStickerAction
5508
+ 47, // 42: WASyncAction.SyncActionValue.chatAssignment:type_name -> WASyncAction.ChatAssignmentAction
5509
+ 46, // 43: WASyncAction.SyncActionValue.chatAssignmentOpenedStatus:type_name -> WASyncAction.ChatAssignmentOpenedStatusAction
5510
+ 45, // 44: WASyncAction.SyncActionValue.pnForLidChatAction:type_name -> WASyncAction.PnForLidChatAction
5511
+ 20, // 45: WASyncAction.SyncActionValue.marketingMessageAction:type_name -> WASyncAction.MarketingMessageAction
5512
+ 44, // 46: WASyncAction.SyncActionValue.marketingMessageBroadcastAction:type_name -> WASyncAction.MarketingMessageBroadcastAction
5513
+ 43, // 47: WASyncAction.SyncActionValue.externalWebBetaAction:type_name -> WASyncAction.ExternalWebBetaAction
5514
+ 42, // 48: WASyncAction.SyncActionValue.privacySettingRelayAllCalls:type_name -> WASyncAction.PrivacySettingRelayAllCalls
5515
+ 41, // 49: WASyncAction.SyncActionValue.callLogAction:type_name -> WASyncAction.CallLogAction
5516
+ 19, // 50: WASyncAction.SyncActionValue.statusPrivacy:type_name -> WASyncAction.StatusPrivacyAction
5517
+ 40, // 51: WASyncAction.SyncActionValue.botWelcomeRequestAction:type_name -> WASyncAction.BotWelcomeRequestAction
5518
+ 39, // 52: WASyncAction.SyncActionValue.deleteIndividualCallLog:type_name -> WASyncAction.DeleteIndividualCallLogAction
5519
+ 38, // 53: WASyncAction.SyncActionValue.labelReorderingAction:type_name -> WASyncAction.LabelReorderingAction
5520
+ 37, // 54: WASyncAction.SyncActionValue.paymentInfoAction:type_name -> WASyncAction.PaymentInfoAction
5521
+ 34, // 55: WASyncAction.SyncActionValue.customPaymentMethodsAction:type_name -> WASyncAction.CustomPaymentMethodsAction
5522
+ 33, // 56: WASyncAction.SyncActionValue.lockChatAction:type_name -> WASyncAction.LockChatAction
5523
+ 80, // 57: WASyncAction.SyncActionValue.chatLockSettings:type_name -> WAProtobufsChatLockSettings.ChatLockSettings
5524
+ 32, // 58: WASyncAction.SyncActionValue.wamoUserIdentifierAction:type_name -> WASyncAction.WamoUserIdentifierAction
5525
+ 31, // 59: WASyncAction.SyncActionValue.privacySettingDisableLinkPreviewsAction:type_name -> WASyncAction.PrivacySettingDisableLinkPreviewsAction
5526
+ 81, // 60: WASyncAction.SyncActionValue.deviceCapabilities:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities
5527
+ 18, // 61: WASyncAction.SyncActionValue.noteEditAction:type_name -> WASyncAction.NoteEditAction
5528
+ 29, // 62: WASyncAction.SyncActionValue.favoritesAction:type_name -> WASyncAction.FavoritesAction
5529
+ 17, // 63: WASyncAction.SyncActionValue.merchantPaymentPartnerAction:type_name -> WASyncAction.MerchantPaymentPartnerAction
5530
+ 16, // 64: WASyncAction.SyncActionValue.waffleAccountLinkStateAction:type_name -> WASyncAction.WaffleAccountLinkStateAction
5531
+ 21, // 65: WASyncAction.SyncActionValue.usernameChatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction
5532
+ 15, // 66: WASyncAction.SyncActionValue.notificationActivitySettingAction:type_name -> WASyncAction.NotificationActivitySettingAction
5533
+ 28, // 67: WASyncAction.SyncActionValue.lidContactAction:type_name -> WASyncAction.LidContactAction
5534
+ 27, // 68: WASyncAction.SyncActionValue.ctwaPerCustomerDataSharingAction:type_name -> WASyncAction.CtwaPerCustomerDataSharingAction
5535
+ 14, // 69: WASyncAction.SyncActionValue.paymentTosAction:type_name -> WASyncAction.PaymentTosAction
5536
+ 30, // 70: WASyncAction.SyncActionValue.privacySettingChannelsPersonalisedRecommendationAction:type_name -> WASyncAction.PrivacySettingChannelsPersonalisedRecommendationAction
5537
+ 26, // 71: WASyncAction.SyncActionValue.businessBroadcastAssociationAction:type_name -> WASyncAction.BusinessBroadcastAssociationAction
5538
+ 79, // 72: WASyncAction.FavoritesAction.favorites:type_name -> WASyncAction.FavoritesAction.Favorite
5539
+ 35, // 73: WASyncAction.CustomPaymentMethodsAction.customPaymentMethods:type_name -> WASyncAction.CustomPaymentMethod
5540
+ 36, // 74: WASyncAction.CustomPaymentMethod.metadata:type_name -> WASyncAction.CustomPaymentMethodMetadata
5541
+ 13, // 75: WASyncAction.CallLogAction.callLogRecord:type_name -> WASyncAction.CallLogRecord
5542
+ 82, // 76: WASyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
5543
+ 59, // 77: WASyncAction.SyncActionMessageRange.messages:type_name -> WASyncAction.SyncActionMessage
5544
+ 60, // 78: WASyncAction.DeleteChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5545
+ 60, // 79: WASyncAction.ClearChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5546
+ 60, // 80: WASyncAction.MarkChatAsReadAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5547
+ 60, // 81: WASyncAction.ArchiveChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5548
+ 24, // 82: WASyncAction.RecentEmojiWeightsAction.weights:type_name -> WASyncAction.RecentEmojiWeight
5549
+ 25, // 83: WASyncAction.SyncActionData.value:type_name -> WASyncAction.SyncActionValue
5550
+ 2, // 84: WASyncAction.CallLogRecord.ParticipantInfo.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
5551
+ 85, // [85:85] is the sub-list for method output_type
5552
+ 85, // [85:85] is the sub-list for method input_type
5553
+ 85, // [85:85] is the sub-list for extension type_name
5554
+ 85, // [85:85] is the sub-list for extension extendee
5555
+ 0, // [0:85] is the sub-list for field type_name
5319
5556
  }
5320
5557
 
5321
5558
  func init() { file_waSyncAction_WASyncAction_proto_init() }
@@ -5328,8 +5565,8 @@ func file_waSyncAction_WASyncAction_proto_init() {
5328
5565
  File: protoimpl.DescBuilder{
5329
5566
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
5330
5567
  RawDescriptor: unsafe.Slice(unsafe.StringData(file_waSyncAction_WASyncAction_proto_rawDesc), len(file_waSyncAction_WASyncAction_proto_rawDesc)),
5331
- NumEnums: 12,
5332
- NumMessages: 64,
5568
+ NumEnums: 13,
5569
+ NumMessages: 67,
5333
5570
  NumExtensions: 0,
5334
5571
  NumServices: 0,
5335
5572
  },