slidge-whatsapp 0.2.7__cp311-cp311-manylinux_2_36_aarch64.whl → 0.3.0__cp311-cp311-manylinux_2_36_aarch64.whl

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

Potentially problematic release.


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

Files changed (212) hide show
  1. slidge_whatsapp/contact.py +15 -3
  2. slidge_whatsapp/event.go +144 -48
  3. slidge_whatsapp/gateway.go +7 -63
  4. slidge_whatsapp/gateway.py +2 -3
  5. slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.h +178 -161
  6. slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.so +0 -0
  7. slidge_whatsapp/generated/build.py +148 -134
  8. slidge_whatsapp/generated/whatsapp.c +1612 -1340
  9. slidge_whatsapp/generated/whatsapp.go +995 -884
  10. slidge_whatsapp/generated/whatsapp.py +1169 -1044
  11. slidge_whatsapp/generated/whatsapp_go.h +178 -161
  12. slidge_whatsapp/go.mod +18 -15
  13. slidge_whatsapp/go.sum +38 -26
  14. slidge_whatsapp/group.py +34 -30
  15. slidge_whatsapp/media/media.go +1 -1
  16. slidge_whatsapp/session.go +34 -17
  17. slidge_whatsapp/session.py +46 -14
  18. slidge_whatsapp/vendor/github.com/beeper/argo-go/LICENSE +9 -0
  19. slidge_whatsapp/vendor/github.com/beeper/argo-go/block/blockreader.go +329 -0
  20. slidge_whatsapp/vendor/github.com/beeper/argo-go/block/blockwriter.go +417 -0
  21. slidge_whatsapp/vendor/github.com/beeper/argo-go/codec/decoder.go +652 -0
  22. slidge_whatsapp/vendor/github.com/beeper/argo-go/codec/encoder.go +985 -0
  23. slidge_whatsapp/vendor/github.com/beeper/argo-go/header/header.go +135 -0
  24. slidge_whatsapp/vendor/github.com/beeper/argo-go/internal/util/util.go +133 -0
  25. slidge_whatsapp/vendor/github.com/beeper/argo-go/label/label.go +384 -0
  26. slidge_whatsapp/vendor/github.com/beeper/argo-go/label/wiremarkers.go +37 -0
  27. slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/bitset/bitset.go +197 -0
  28. slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/buf/buf.go +420 -0
  29. slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/varint/varint.go +246 -0
  30. slidge_whatsapp/vendor/github.com/beeper/argo-go/wire/wire.go +614 -0
  31. slidge_whatsapp/vendor/github.com/beeper/argo-go/wirecodec/decode.go +341 -0
  32. slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/LICENSE +21 -0
  33. slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/list.go +95 -0
  34. slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/orderedmap.go +187 -0
  35. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz.go +1 -0
  36. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo.go +3 -0
  37. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_nocgo.go +4 -5
  38. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_darwin.go +11 -1
  39. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_linux.go +10 -0
  40. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_windows.go +12 -0
  41. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/.gitignore +0 -2
  42. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/CHANGELOG.md +30 -0
  43. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/COPYRIGHT.txt +6 -1
  44. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/README.md +14 -17
  45. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi.go +1 -1
  46. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi2.go +7 -0
  47. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/LICENSE +21 -0
  48. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/darwin_amd64/libffi.8.dylib +0 -0
  49. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/darwin_arm64/libffi.8.dylib +0 -0
  50. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/windows_amd64/libffi-8.dll +0 -0
  51. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/cif.go +15 -0
  52. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/cif_arm64.go +16 -0
  53. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed.go +49 -0
  54. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_darwin_amd64.go +10 -0
  55. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_darwin_arm64.go +10 -0
  56. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_windows_amd64.go +10 -0
  57. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/ffi.go +51 -13
  58. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/init.go +22 -9
  59. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/README.md +2 -0
  60. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c +3096 -1651
  61. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h +188 -128
  62. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth.go +13 -140
  63. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3ext.h +4 -0
  64. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.23.go +2 -2
  65. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.25.go +37 -0
  66. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/LICENSE +19 -0
  67. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/argmap.go +37 -0
  68. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/collections.go +148 -0
  69. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/comment.go +31 -0
  70. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/decode.go +216 -0
  71. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/definition.go +110 -0
  72. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/directive.go +43 -0
  73. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/document.go +89 -0
  74. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/dumper.go +159 -0
  75. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/fragment.go +41 -0
  76. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/operation.go +32 -0
  77. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/path.go +72 -0
  78. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/selection.go +41 -0
  79. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/source.go +19 -0
  80. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/type.go +68 -0
  81. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/value.go +122 -0
  82. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/handleerrors.go +60 -26
  83. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/networkerror.go +2 -1
  84. slidge_whatsapp/vendor/go.mau.fi/util/exstrings/stringutil.go +28 -0
  85. slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +19 -3
  86. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.pre-commit-config.yaml +3 -3
  87. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +1 -1
  88. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/hash.go +1 -1
  89. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +5 -1
  90. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/argo-wire-type-store.argo +63 -0
  91. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/argo.go +62 -0
  92. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/name-to-queryids.json +306 -0
  93. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +3 -2
  94. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +1 -0
  95. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +15 -18
  96. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +5 -0
  97. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +4 -0
  98. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +3 -0
  99. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +97 -25
  100. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +22 -10
  101. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +10 -9
  102. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +2 -14
  103. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/newsletter.go +83 -7
  104. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +5 -1
  105. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +2 -2
  106. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +15 -6
  107. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.pb.go +5156 -0
  108. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.proto +516 -0
  109. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.pb.go +30 -3
  110. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.proto +3 -0
  111. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +8532 -11526
  112. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +132 -438
  113. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +52 -23
  114. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +3 -0
  115. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +225 -73
  116. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +21 -5
  117. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +884 -441
  118. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +40 -0
  119. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +60 -38
  120. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +3 -0
  121. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +8 -1
  122. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +6 -4
  123. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +1 -1
  124. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +3 -2
  125. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +25 -5
  126. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +3 -1
  127. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +1 -0
  128. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +8 -0
  129. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +2 -1
  130. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +2 -0
  131. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +12 -8
  132. slidge_whatsapp/vendor/golang.org/x/crypto/curve25519/curve25519.go +1 -1
  133. slidge_whatsapp/vendor/golang.org/x/net/http2/config.go +44 -2
  134. slidge_whatsapp/vendor/golang.org/x/net/http2/gotrack.go +14 -3
  135. slidge_whatsapp/vendor/golang.org/x/net/http2/http2.go +7 -29
  136. slidge_whatsapp/vendor/golang.org/x/net/http2/server.go +53 -71
  137. slidge_whatsapp/vendor/golang.org/x/net/http2/transport.go +20 -74
  138. slidge_whatsapp/vendor/golang.org/x/sys/unix/affinity_linux.go +1 -3
  139. slidge_whatsapp/vendor/golang.org/x/sys/unix/mkerrors.sh +3 -0
  140. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin.go +1 -55
  141. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_solaris.go +1 -1
  142. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux.go +47 -16
  143. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_386.go +3 -0
  144. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go +3 -0
  145. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go +3 -0
  146. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go +3 -0
  147. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go +3 -0
  148. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go +3 -0
  149. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go +3 -0
  150. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go +3 -0
  151. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go +3 -0
  152. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go +3 -0
  153. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go +3 -0
  154. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go +3 -0
  155. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go +3 -0
  156. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go +3 -0
  157. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go +3 -0
  158. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go +4 -4
  159. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go +1 -0
  160. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go +1 -0
  161. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go +1 -0
  162. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go +1 -0
  163. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go +1 -0
  164. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go +1 -0
  165. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go +1 -0
  166. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go +1 -0
  167. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go +1 -0
  168. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go +1 -0
  169. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go +1 -0
  170. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go +1 -0
  171. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go +1 -0
  172. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go +1 -0
  173. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go +1 -0
  174. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux.go +168 -12
  175. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_386.go +17 -1
  176. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go +16 -0
  177. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go +18 -2
  178. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go +16 -0
  179. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go +16 -0
  180. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go +17 -1
  181. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go +16 -0
  182. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go +16 -0
  183. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go +17 -1
  184. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go +18 -2
  185. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go +16 -0
  186. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go +16 -0
  187. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go +16 -0
  188. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go +16 -0
  189. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go +16 -0
  190. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +6 -0
  191. slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +483 -483
  192. slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/protowire/wire.go +25 -1
  193. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb +0 -0
  194. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/editions.go +10 -5
  195. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/presence.go +33 -0
  196. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/api_gen.go +6 -0
  197. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go +68 -22
  198. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_message_opaque.go +2 -1
  199. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_opaque.go +8 -37
  200. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/presence.go +0 -3
  201. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +1 -1
  202. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go +8 -0
  203. slidge_whatsapp/vendor/modules.txt +43 -23
  204. {slidge_whatsapp-0.2.7.dist-info → slidge_whatsapp-0.3.0.dist-info}/METADATA +5 -4
  205. {slidge_whatsapp-0.2.7.dist-info → slidge_whatsapp-0.3.0.dist-info}/RECORD +208 -161
  206. {slidge_whatsapp-0.2.7.dist-info → slidge_whatsapp-0.3.0.dist-info}/WHEEL +1 -1
  207. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi_amd64.go +0 -7
  208. slidge_whatsapp/vendor/golang.org/x/net/http2/config_go124.go +0 -61
  209. slidge_whatsapp/vendor/golang.org/x/net/http2/config_pre_go124.go +0 -16
  210. slidge_whatsapp/vendor/golang.org/x/net/http2/timer.go +0 -20
  211. {slidge_whatsapp-0.2.7.dist-info → slidge_whatsapp-0.3.0.dist-info}/entry_points.txt +0 -0
  212. {slidge_whatsapp-0.2.7.dist-info → slidge_whatsapp-0.3.0.dist-info/licenses}/LICENSE +0 -0
@@ -230,6 +230,65 @@ func (CallLogRecord_CallResult) EnumDescriptor() ([]byte, []int) {
230
230
  return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{0, 2}
231
231
  }
232
232
 
233
+ type MaibaAIFeaturesControlAction_MaibaAIFeatureStatus int32
234
+
235
+ const (
236
+ MaibaAIFeaturesControlAction_ENABLED MaibaAIFeaturesControlAction_MaibaAIFeatureStatus = 0
237
+ MaibaAIFeaturesControlAction_ENABLED_HAS_LEARNING MaibaAIFeaturesControlAction_MaibaAIFeatureStatus = 1
238
+ MaibaAIFeaturesControlAction_DISABLED MaibaAIFeaturesControlAction_MaibaAIFeatureStatus = 2
239
+ )
240
+
241
+ // Enum value maps for MaibaAIFeaturesControlAction_MaibaAIFeatureStatus.
242
+ var (
243
+ MaibaAIFeaturesControlAction_MaibaAIFeatureStatus_name = map[int32]string{
244
+ 0: "ENABLED",
245
+ 1: "ENABLED_HAS_LEARNING",
246
+ 2: "DISABLED",
247
+ }
248
+ MaibaAIFeaturesControlAction_MaibaAIFeatureStatus_value = map[string]int32{
249
+ "ENABLED": 0,
250
+ "ENABLED_HAS_LEARNING": 1,
251
+ "DISABLED": 2,
252
+ }
253
+ )
254
+
255
+ func (x MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) Enum() *MaibaAIFeaturesControlAction_MaibaAIFeatureStatus {
256
+ p := new(MaibaAIFeaturesControlAction_MaibaAIFeatureStatus)
257
+ *p = x
258
+ return p
259
+ }
260
+
261
+ func (x MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) String() string {
262
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
263
+ }
264
+
265
+ func (MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) Descriptor() protoreflect.EnumDescriptor {
266
+ return file_waSyncAction_WASyncAction_proto_enumTypes[3].Descriptor()
267
+ }
268
+
269
+ func (MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) Type() protoreflect.EnumType {
270
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[3]
271
+ }
272
+
273
+ func (x MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) Number() protoreflect.EnumNumber {
274
+ return protoreflect.EnumNumber(x)
275
+ }
276
+
277
+ // Deprecated: Do not use.
278
+ func (x *MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) UnmarshalJSON(b []byte) error {
279
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
280
+ if err != nil {
281
+ return err
282
+ }
283
+ *x = MaibaAIFeaturesControlAction_MaibaAIFeatureStatus(num)
284
+ return nil
285
+ }
286
+
287
+ // Deprecated: Use MaibaAIFeaturesControlAction_MaibaAIFeatureStatus.Descriptor instead.
288
+ func (MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) EnumDescriptor() ([]byte, []int) {
289
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1, 0}
290
+ }
291
+
233
292
  type PaymentTosAction_PaymentNotice int32
234
293
 
235
294
  const (
@@ -257,11 +316,11 @@ func (x PaymentTosAction_PaymentNotice) String() string {
257
316
  }
258
317
 
259
318
  func (PaymentTosAction_PaymentNotice) Descriptor() protoreflect.EnumDescriptor {
260
- return file_waSyncAction_WASyncAction_proto_enumTypes[3].Descriptor()
319
+ return file_waSyncAction_WASyncAction_proto_enumTypes[4].Descriptor()
261
320
  }
262
321
 
263
322
  func (PaymentTosAction_PaymentNotice) Type() protoreflect.EnumType {
264
- return &file_waSyncAction_WASyncAction_proto_enumTypes[3]
323
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[4]
265
324
  }
266
325
 
267
326
  func (x PaymentTosAction_PaymentNotice) Number() protoreflect.EnumNumber {
@@ -280,7 +339,7 @@ func (x *PaymentTosAction_PaymentNotice) UnmarshalJSON(b []byte) error {
280
339
 
281
340
  // Deprecated: Use PaymentTosAction_PaymentNotice.Descriptor instead.
282
341
  func (PaymentTosAction_PaymentNotice) EnumDescriptor() ([]byte, []int) {
283
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1, 0}
342
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2, 0}
284
343
  }
285
344
 
286
345
  type NotificationActivitySettingAction_NotificationActivitySetting int32
@@ -319,11 +378,11 @@ func (x NotificationActivitySettingAction_NotificationActivitySetting) String()
319
378
  }
320
379
 
321
380
  func (NotificationActivitySettingAction_NotificationActivitySetting) Descriptor() protoreflect.EnumDescriptor {
322
- return file_waSyncAction_WASyncAction_proto_enumTypes[4].Descriptor()
381
+ return file_waSyncAction_WASyncAction_proto_enumTypes[5].Descriptor()
323
382
  }
324
383
 
325
384
  func (NotificationActivitySettingAction_NotificationActivitySetting) Type() protoreflect.EnumType {
326
- return &file_waSyncAction_WASyncAction_proto_enumTypes[4]
385
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[5]
327
386
  }
328
387
 
329
388
  func (x NotificationActivitySettingAction_NotificationActivitySetting) Number() protoreflect.EnumNumber {
@@ -342,7 +401,7 @@ func (x *NotificationActivitySettingAction_NotificationActivitySetting) Unmarsha
342
401
 
343
402
  // Deprecated: Use NotificationActivitySettingAction_NotificationActivitySetting.Descriptor instead.
344
403
  func (NotificationActivitySettingAction_NotificationActivitySetting) EnumDescriptor() ([]byte, []int) {
345
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2, 0}
404
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3, 0}
346
405
  }
347
406
 
348
407
  type WaffleAccountLinkStateAction_AccountLinkState int32
@@ -372,11 +431,11 @@ func (x WaffleAccountLinkStateAction_AccountLinkState) String() string {
372
431
  }
373
432
 
374
433
  func (WaffleAccountLinkStateAction_AccountLinkState) Descriptor() protoreflect.EnumDescriptor {
375
- return file_waSyncAction_WASyncAction_proto_enumTypes[5].Descriptor()
434
+ return file_waSyncAction_WASyncAction_proto_enumTypes[6].Descriptor()
376
435
  }
377
436
 
378
437
  func (WaffleAccountLinkStateAction_AccountLinkState) Type() protoreflect.EnumType {
379
- return &file_waSyncAction_WASyncAction_proto_enumTypes[5]
438
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[6]
380
439
  }
381
440
 
382
441
  func (x WaffleAccountLinkStateAction_AccountLinkState) Number() protoreflect.EnumNumber {
@@ -395,7 +454,7 @@ func (x *WaffleAccountLinkStateAction_AccountLinkState) UnmarshalJSON(b []byte)
395
454
 
396
455
  // Deprecated: Use WaffleAccountLinkStateAction_AccountLinkState.Descriptor instead.
397
456
  func (WaffleAccountLinkStateAction_AccountLinkState) EnumDescriptor() ([]byte, []int) {
398
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3, 0}
457
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4, 0}
399
458
  }
400
459
 
401
460
  type MerchantPaymentPartnerAction_Status int32
@@ -428,11 +487,11 @@ func (x MerchantPaymentPartnerAction_Status) String() string {
428
487
  }
429
488
 
430
489
  func (MerchantPaymentPartnerAction_Status) Descriptor() protoreflect.EnumDescriptor {
431
- return file_waSyncAction_WASyncAction_proto_enumTypes[6].Descriptor()
490
+ return file_waSyncAction_WASyncAction_proto_enumTypes[7].Descriptor()
432
491
  }
433
492
 
434
493
  func (MerchantPaymentPartnerAction_Status) Type() protoreflect.EnumType {
435
- return &file_waSyncAction_WASyncAction_proto_enumTypes[6]
494
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[7]
436
495
  }
437
496
 
438
497
  func (x MerchantPaymentPartnerAction_Status) Number() protoreflect.EnumNumber {
@@ -451,7 +510,7 @@ func (x *MerchantPaymentPartnerAction_Status) UnmarshalJSON(b []byte) error {
451
510
 
452
511
  // Deprecated: Use MerchantPaymentPartnerAction_Status.Descriptor instead.
453
512
  func (MerchantPaymentPartnerAction_Status) EnumDescriptor() ([]byte, []int) {
454
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4, 0}
513
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5, 0}
455
514
  }
456
515
 
457
516
  type NoteEditAction_NoteType int32
@@ -484,11 +543,11 @@ func (x NoteEditAction_NoteType) String() string {
484
543
  }
485
544
 
486
545
  func (NoteEditAction_NoteType) Descriptor() protoreflect.EnumDescriptor {
487
- return file_waSyncAction_WASyncAction_proto_enumTypes[7].Descriptor()
546
+ return file_waSyncAction_WASyncAction_proto_enumTypes[8].Descriptor()
488
547
  }
489
548
 
490
549
  func (NoteEditAction_NoteType) Type() protoreflect.EnumType {
491
- return &file_waSyncAction_WASyncAction_proto_enumTypes[7]
550
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[8]
492
551
  }
493
552
 
494
553
  func (x NoteEditAction_NoteType) Number() protoreflect.EnumNumber {
@@ -507,7 +566,7 @@ func (x *NoteEditAction_NoteType) UnmarshalJSON(b []byte) error {
507
566
 
508
567
  // Deprecated: Use NoteEditAction_NoteType.Descriptor instead.
509
568
  func (NoteEditAction_NoteType) EnumDescriptor() ([]byte, []int) {
510
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5, 0}
569
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6, 0}
511
570
  }
512
571
 
513
572
  type StatusPrivacyAction_StatusDistributionMode int32
@@ -543,11 +602,11 @@ func (x StatusPrivacyAction_StatusDistributionMode) String() string {
543
602
  }
544
603
 
545
604
  func (StatusPrivacyAction_StatusDistributionMode) Descriptor() protoreflect.EnumDescriptor {
546
- return file_waSyncAction_WASyncAction_proto_enumTypes[8].Descriptor()
605
+ return file_waSyncAction_WASyncAction_proto_enumTypes[9].Descriptor()
547
606
  }
548
607
 
549
608
  func (StatusPrivacyAction_StatusDistributionMode) Type() protoreflect.EnumType {
550
- return &file_waSyncAction_WASyncAction_proto_enumTypes[8]
609
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[9]
551
610
  }
552
611
 
553
612
  func (x StatusPrivacyAction_StatusDistributionMode) Number() protoreflect.EnumNumber {
@@ -566,7 +625,7 @@ func (x *StatusPrivacyAction_StatusDistributionMode) UnmarshalJSON(b []byte) err
566
625
 
567
626
  // Deprecated: Use StatusPrivacyAction_StatusDistributionMode.Descriptor instead.
568
627
  func (StatusPrivacyAction_StatusDistributionMode) EnumDescriptor() ([]byte, []int) {
569
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6, 0}
628
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7, 0}
570
629
  }
571
630
 
572
631
  type MarketingMessageAction_MarketingMessagePrototypeType int32
@@ -596,11 +655,11 @@ func (x MarketingMessageAction_MarketingMessagePrototypeType) String() string {
596
655
  }
597
656
 
598
657
  func (MarketingMessageAction_MarketingMessagePrototypeType) Descriptor() protoreflect.EnumDescriptor {
599
- return file_waSyncAction_WASyncAction_proto_enumTypes[9].Descriptor()
658
+ return file_waSyncAction_WASyncAction_proto_enumTypes[10].Descriptor()
600
659
  }
601
660
 
602
661
  func (MarketingMessageAction_MarketingMessagePrototypeType) Type() protoreflect.EnumType {
603
- return &file_waSyncAction_WASyncAction_proto_enumTypes[9]
662
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[10]
604
663
  }
605
664
 
606
665
  func (x MarketingMessageAction_MarketingMessagePrototypeType) Number() protoreflect.EnumNumber {
@@ -619,7 +678,7 @@ func (x *MarketingMessageAction_MarketingMessagePrototypeType) UnmarshalJSON(b [
619
678
 
620
679
  // Deprecated: Use MarketingMessageAction_MarketingMessagePrototypeType.Descriptor instead.
621
680
  func (MarketingMessageAction_MarketingMessagePrototypeType) EnumDescriptor() ([]byte, []int) {
622
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7, 0}
681
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8, 0}
623
682
  }
624
683
 
625
684
  type UsernameChatStartModeAction_ChatStartMode int32
@@ -652,11 +711,11 @@ func (x UsernameChatStartModeAction_ChatStartMode) String() string {
652
711
  }
653
712
 
654
713
  func (UsernameChatStartModeAction_ChatStartMode) Descriptor() protoreflect.EnumDescriptor {
655
- return file_waSyncAction_WASyncAction_proto_enumTypes[10].Descriptor()
714
+ return file_waSyncAction_WASyncAction_proto_enumTypes[11].Descriptor()
656
715
  }
657
716
 
658
717
  func (UsernameChatStartModeAction_ChatStartMode) Type() protoreflect.EnumType {
659
- return &file_waSyncAction_WASyncAction_proto_enumTypes[10]
718
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[11]
660
719
  }
661
720
 
662
721
  func (x UsernameChatStartModeAction_ChatStartMode) Number() protoreflect.EnumNumber {
@@ -675,7 +734,7 @@ func (x *UsernameChatStartModeAction_ChatStartMode) UnmarshalJSON(b []byte) erro
675
734
 
676
735
  // Deprecated: Use UsernameChatStartModeAction_ChatStartMode.Descriptor instead.
677
736
  func (UsernameChatStartModeAction_ChatStartMode) EnumDescriptor() ([]byte, []int) {
678
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8, 0}
737
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9, 0}
679
738
  }
680
739
 
681
740
  type LabelEditAction_ListType int32
@@ -726,11 +785,11 @@ func (x LabelEditAction_ListType) String() string {
726
785
  }
727
786
 
728
787
  func (LabelEditAction_ListType) Descriptor() protoreflect.EnumDescriptor {
729
- return file_waSyncAction_WASyncAction_proto_enumTypes[11].Descriptor()
788
+ return file_waSyncAction_WASyncAction_proto_enumTypes[12].Descriptor()
730
789
  }
731
790
 
732
791
  func (LabelEditAction_ListType) Type() protoreflect.EnumType {
733
- return &file_waSyncAction_WASyncAction_proto_enumTypes[11]
792
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[12]
734
793
  }
735
794
 
736
795
  func (x LabelEditAction_ListType) Number() protoreflect.EnumNumber {
@@ -749,7 +808,7 @@ func (x *LabelEditAction_ListType) UnmarshalJSON(b []byte) error {
749
808
 
750
809
  // Deprecated: Use LabelEditAction_ListType.Descriptor instead.
751
810
  func (LabelEditAction_ListType) EnumDescriptor() ([]byte, []int) {
752
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9, 0}
811
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10, 0}
753
812
  }
754
813
 
755
814
  type PatchDebugData_Platform int32
@@ -803,11 +862,11 @@ func (x PatchDebugData_Platform) String() string {
803
862
  }
804
863
 
805
864
  func (PatchDebugData_Platform) Descriptor() protoreflect.EnumDescriptor {
806
- return file_waSyncAction_WASyncAction_proto_enumTypes[12].Descriptor()
865
+ return file_waSyncAction_WASyncAction_proto_enumTypes[13].Descriptor()
807
866
  }
808
867
 
809
868
  func (PatchDebugData_Platform) Type() protoreflect.EnumType {
810
- return &file_waSyncAction_WASyncAction_proto_enumTypes[12]
869
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[13]
811
870
  }
812
871
 
813
872
  func (x PatchDebugData_Platform) Number() protoreflect.EnumNumber {
@@ -826,7 +885,7 @@ func (x *PatchDebugData_Platform) UnmarshalJSON(b []byte) error {
826
885
 
827
886
  // Deprecated: Use PatchDebugData_Platform.Descriptor instead.
828
887
  func (PatchDebugData_Platform) EnumDescriptor() ([]byte, []int) {
829
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10, 0}
888
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11, 0}
830
889
  }
831
890
 
832
891
  type CallLogRecord struct {
@@ -985,6 +1044,50 @@ func (x *CallLogRecord) GetCallType() CallLogRecord_CallType {
985
1044
  return CallLogRecord_REGULAR
986
1045
  }
987
1046
 
1047
+ type MaibaAIFeaturesControlAction struct {
1048
+ state protoimpl.MessageState `protogen:"open.v1"`
1049
+ AiFeatureStatus *MaibaAIFeaturesControlAction_MaibaAIFeatureStatus `protobuf:"varint,1,opt,name=aiFeatureStatus,enum=WASyncAction.MaibaAIFeaturesControlAction_MaibaAIFeatureStatus" json:"aiFeatureStatus,omitempty"`
1050
+ unknownFields protoimpl.UnknownFields
1051
+ sizeCache protoimpl.SizeCache
1052
+ }
1053
+
1054
+ func (x *MaibaAIFeaturesControlAction) Reset() {
1055
+ *x = MaibaAIFeaturesControlAction{}
1056
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
1057
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1058
+ ms.StoreMessageInfo(mi)
1059
+ }
1060
+
1061
+ func (x *MaibaAIFeaturesControlAction) String() string {
1062
+ return protoimpl.X.MessageStringOf(x)
1063
+ }
1064
+
1065
+ func (*MaibaAIFeaturesControlAction) ProtoMessage() {}
1066
+
1067
+ func (x *MaibaAIFeaturesControlAction) ProtoReflect() protoreflect.Message {
1068
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
1069
+ if x != nil {
1070
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1071
+ if ms.LoadMessageInfo() == nil {
1072
+ ms.StoreMessageInfo(mi)
1073
+ }
1074
+ return ms
1075
+ }
1076
+ return mi.MessageOf(x)
1077
+ }
1078
+
1079
+ // Deprecated: Use MaibaAIFeaturesControlAction.ProtoReflect.Descriptor instead.
1080
+ func (*MaibaAIFeaturesControlAction) Descriptor() ([]byte, []int) {
1081
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1}
1082
+ }
1083
+
1084
+ func (x *MaibaAIFeaturesControlAction) GetAiFeatureStatus() MaibaAIFeaturesControlAction_MaibaAIFeatureStatus {
1085
+ if x != nil && x.AiFeatureStatus != nil {
1086
+ return *x.AiFeatureStatus
1087
+ }
1088
+ return MaibaAIFeaturesControlAction_ENABLED
1089
+ }
1090
+
988
1091
  type PaymentTosAction struct {
989
1092
  state protoimpl.MessageState `protogen:"open.v1"`
990
1093
  PaymentNotice *PaymentTosAction_PaymentNotice `protobuf:"varint,1,req,name=paymentNotice,enum=WASyncAction.PaymentTosAction_PaymentNotice" json:"paymentNotice,omitempty"`
@@ -995,7 +1098,7 @@ type PaymentTosAction struct {
995
1098
 
996
1099
  func (x *PaymentTosAction) Reset() {
997
1100
  *x = PaymentTosAction{}
998
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
1101
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
999
1102
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1000
1103
  ms.StoreMessageInfo(mi)
1001
1104
  }
@@ -1007,7 +1110,7 @@ func (x *PaymentTosAction) String() string {
1007
1110
  func (*PaymentTosAction) ProtoMessage() {}
1008
1111
 
1009
1112
  func (x *PaymentTosAction) ProtoReflect() protoreflect.Message {
1010
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
1113
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1011
1114
  if x != nil {
1012
1115
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1013
1116
  if ms.LoadMessageInfo() == nil {
@@ -1020,7 +1123,7 @@ func (x *PaymentTosAction) ProtoReflect() protoreflect.Message {
1020
1123
 
1021
1124
  // Deprecated: Use PaymentTosAction.ProtoReflect.Descriptor instead.
1022
1125
  func (*PaymentTosAction) Descriptor() ([]byte, []int) {
1023
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1}
1126
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2}
1024
1127
  }
1025
1128
 
1026
1129
  func (x *PaymentTosAction) GetPaymentNotice() PaymentTosAction_PaymentNotice {
@@ -1046,7 +1149,7 @@ type NotificationActivitySettingAction struct {
1046
1149
 
1047
1150
  func (x *NotificationActivitySettingAction) Reset() {
1048
1151
  *x = NotificationActivitySettingAction{}
1049
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1152
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
1050
1153
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1051
1154
  ms.StoreMessageInfo(mi)
1052
1155
  }
@@ -1058,7 +1161,7 @@ func (x *NotificationActivitySettingAction) String() string {
1058
1161
  func (*NotificationActivitySettingAction) ProtoMessage() {}
1059
1162
 
1060
1163
  func (x *NotificationActivitySettingAction) ProtoReflect() protoreflect.Message {
1061
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1164
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
1062
1165
  if x != nil {
1063
1166
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1064
1167
  if ms.LoadMessageInfo() == nil {
@@ -1071,7 +1174,7 @@ func (x *NotificationActivitySettingAction) ProtoReflect() protoreflect.Message
1071
1174
 
1072
1175
  // Deprecated: Use NotificationActivitySettingAction.ProtoReflect.Descriptor instead.
1073
1176
  func (*NotificationActivitySettingAction) Descriptor() ([]byte, []int) {
1074
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2}
1177
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3}
1075
1178
  }
1076
1179
 
1077
1180
  func (x *NotificationActivitySettingAction) GetNotificationActivitySetting() NotificationActivitySettingAction_NotificationActivitySetting {
@@ -1090,7 +1193,7 @@ type WaffleAccountLinkStateAction struct {
1090
1193
 
1091
1194
  func (x *WaffleAccountLinkStateAction) Reset() {
1092
1195
  *x = WaffleAccountLinkStateAction{}
1093
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
1196
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1094
1197
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1095
1198
  ms.StoreMessageInfo(mi)
1096
1199
  }
@@ -1102,7 +1205,7 @@ func (x *WaffleAccountLinkStateAction) String() string {
1102
1205
  func (*WaffleAccountLinkStateAction) ProtoMessage() {}
1103
1206
 
1104
1207
  func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
1105
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
1208
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1106
1209
  if x != nil {
1107
1210
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1108
1211
  if ms.LoadMessageInfo() == nil {
@@ -1115,7 +1218,7 @@ func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
1115
1218
 
1116
1219
  // Deprecated: Use WaffleAccountLinkStateAction.ProtoReflect.Descriptor instead.
1117
1220
  func (*WaffleAccountLinkStateAction) Descriptor() ([]byte, []int) {
1118
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3}
1221
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4}
1119
1222
  }
1120
1223
 
1121
1224
  func (x *WaffleAccountLinkStateAction) GetLinkState() WaffleAccountLinkStateAction_AccountLinkState {
@@ -1137,7 +1240,7 @@ type MerchantPaymentPartnerAction struct {
1137
1240
 
1138
1241
  func (x *MerchantPaymentPartnerAction) Reset() {
1139
1242
  *x = MerchantPaymentPartnerAction{}
1140
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1243
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1141
1244
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1142
1245
  ms.StoreMessageInfo(mi)
1143
1246
  }
@@ -1149,7 +1252,7 @@ func (x *MerchantPaymentPartnerAction) String() string {
1149
1252
  func (*MerchantPaymentPartnerAction) ProtoMessage() {}
1150
1253
 
1151
1254
  func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
1152
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1255
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1153
1256
  if x != nil {
1154
1257
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1155
1258
  if ms.LoadMessageInfo() == nil {
@@ -1162,7 +1265,7 @@ func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
1162
1265
 
1163
1266
  // Deprecated: Use MerchantPaymentPartnerAction.ProtoReflect.Descriptor instead.
1164
1267
  func (*MerchantPaymentPartnerAction) Descriptor() ([]byte, []int) {
1165
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4}
1268
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5}
1166
1269
  }
1167
1270
 
1168
1271
  func (x *MerchantPaymentPartnerAction) GetStatus() MerchantPaymentPartnerAction_Status {
@@ -1206,7 +1309,7 @@ type NoteEditAction struct {
1206
1309
 
1207
1310
  func (x *NoteEditAction) Reset() {
1208
1311
  *x = NoteEditAction{}
1209
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1312
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1210
1313
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1211
1314
  ms.StoreMessageInfo(mi)
1212
1315
  }
@@ -1218,7 +1321,7 @@ func (x *NoteEditAction) String() string {
1218
1321
  func (*NoteEditAction) ProtoMessage() {}
1219
1322
 
1220
1323
  func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
1221
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1324
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1222
1325
  if x != nil {
1223
1326
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1224
1327
  if ms.LoadMessageInfo() == nil {
@@ -1231,7 +1334,7 @@ func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
1231
1334
 
1232
1335
  // Deprecated: Use NoteEditAction.ProtoReflect.Descriptor instead.
1233
1336
  func (*NoteEditAction) Descriptor() ([]byte, []int) {
1234
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5}
1337
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6}
1235
1338
  }
1236
1339
 
1237
1340
  func (x *NoteEditAction) GetType() NoteEditAction_NoteType {
@@ -1279,7 +1382,7 @@ type StatusPrivacyAction struct {
1279
1382
 
1280
1383
  func (x *StatusPrivacyAction) Reset() {
1281
1384
  *x = StatusPrivacyAction{}
1282
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1385
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1283
1386
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1284
1387
  ms.StoreMessageInfo(mi)
1285
1388
  }
@@ -1291,7 +1394,7 @@ func (x *StatusPrivacyAction) String() string {
1291
1394
  func (*StatusPrivacyAction) ProtoMessage() {}
1292
1395
 
1293
1396
  func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
1294
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1397
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1295
1398
  if x != nil {
1296
1399
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1297
1400
  if ms.LoadMessageInfo() == nil {
@@ -1304,7 +1407,7 @@ func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
1304
1407
 
1305
1408
  // Deprecated: Use StatusPrivacyAction.ProtoReflect.Descriptor instead.
1306
1409
  func (*StatusPrivacyAction) Descriptor() ([]byte, []int) {
1307
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6}
1410
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7}
1308
1411
  }
1309
1412
 
1310
1413
  func (x *StatusPrivacyAction) GetMode() StatusPrivacyAction_StatusDistributionMode {
@@ -1336,7 +1439,7 @@ type MarketingMessageAction struct {
1336
1439
 
1337
1440
  func (x *MarketingMessageAction) Reset() {
1338
1441
  *x = MarketingMessageAction{}
1339
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1442
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1340
1443
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1341
1444
  ms.StoreMessageInfo(mi)
1342
1445
  }
@@ -1348,7 +1451,7 @@ func (x *MarketingMessageAction) String() string {
1348
1451
  func (*MarketingMessageAction) ProtoMessage() {}
1349
1452
 
1350
1453
  func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
1351
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1454
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1352
1455
  if x != nil {
1353
1456
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1354
1457
  if ms.LoadMessageInfo() == nil {
@@ -1361,7 +1464,7 @@ func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
1361
1464
 
1362
1465
  // Deprecated: Use MarketingMessageAction.ProtoReflect.Descriptor instead.
1363
1466
  func (*MarketingMessageAction) Descriptor() ([]byte, []int) {
1364
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7}
1467
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8}
1365
1468
  }
1366
1469
 
1367
1470
  func (x *MarketingMessageAction) GetName() string {
@@ -1422,7 +1525,7 @@ type UsernameChatStartModeAction struct {
1422
1525
 
1423
1526
  func (x *UsernameChatStartModeAction) Reset() {
1424
1527
  *x = UsernameChatStartModeAction{}
1425
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1528
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1426
1529
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1427
1530
  ms.StoreMessageInfo(mi)
1428
1531
  }
@@ -1434,7 +1537,7 @@ func (x *UsernameChatStartModeAction) String() string {
1434
1537
  func (*UsernameChatStartModeAction) ProtoMessage() {}
1435
1538
 
1436
1539
  func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
1437
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1540
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1438
1541
  if x != nil {
1439
1542
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1440
1543
  if ms.LoadMessageInfo() == nil {
@@ -1447,7 +1550,7 @@ func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
1447
1550
 
1448
1551
  // Deprecated: Use UsernameChatStartModeAction.ProtoReflect.Descriptor instead.
1449
1552
  func (*UsernameChatStartModeAction) Descriptor() ([]byte, []int) {
1450
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8}
1553
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9}
1451
1554
  }
1452
1555
 
1453
1556
  func (x *UsernameChatStartModeAction) GetChatStartMode() UsernameChatStartModeAction_ChatStartMode {
@@ -1473,7 +1576,7 @@ type LabelEditAction struct {
1473
1576
 
1474
1577
  func (x *LabelEditAction) Reset() {
1475
1578
  *x = LabelEditAction{}
1476
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1579
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1477
1580
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1478
1581
  ms.StoreMessageInfo(mi)
1479
1582
  }
@@ -1485,7 +1588,7 @@ func (x *LabelEditAction) String() string {
1485
1588
  func (*LabelEditAction) ProtoMessage() {}
1486
1589
 
1487
1590
  func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
1488
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1591
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1489
1592
  if x != nil {
1490
1593
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1491
1594
  if ms.LoadMessageInfo() == nil {
@@ -1498,7 +1601,7 @@ func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
1498
1601
 
1499
1602
  // Deprecated: Use LabelEditAction.ProtoReflect.Descriptor instead.
1500
1603
  func (*LabelEditAction) Descriptor() ([]byte, []int) {
1501
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9}
1604
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10}
1502
1605
  }
1503
1606
 
1504
1607
  func (x *LabelEditAction) GetName() string {
@@ -1576,7 +1679,7 @@ type PatchDebugData struct {
1576
1679
 
1577
1680
  func (x *PatchDebugData) Reset() {
1578
1681
  *x = PatchDebugData{}
1579
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1682
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1580
1683
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1581
1684
  ms.StoreMessageInfo(mi)
1582
1685
  }
@@ -1588,7 +1691,7 @@ func (x *PatchDebugData) String() string {
1588
1691
  func (*PatchDebugData) ProtoMessage() {}
1589
1692
 
1590
1693
  func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
1591
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1694
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1592
1695
  if x != nil {
1593
1696
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1594
1697
  if ms.LoadMessageInfo() == nil {
@@ -1601,7 +1704,7 @@ func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
1601
1704
 
1602
1705
  // Deprecated: Use PatchDebugData.ProtoReflect.Descriptor instead.
1603
1706
  func (*PatchDebugData) Descriptor() ([]byte, []int) {
1604
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10}
1707
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11}
1605
1708
  }
1606
1709
 
1607
1710
  func (x *PatchDebugData) GetCurrentLthash() []byte {
@@ -1691,7 +1794,7 @@ type RecentEmojiWeight struct {
1691
1794
 
1692
1795
  func (x *RecentEmojiWeight) Reset() {
1693
1796
  *x = RecentEmojiWeight{}
1694
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1797
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
1695
1798
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1696
1799
  ms.StoreMessageInfo(mi)
1697
1800
  }
@@ -1703,7 +1806,7 @@ func (x *RecentEmojiWeight) String() string {
1703
1806
  func (*RecentEmojiWeight) ProtoMessage() {}
1704
1807
 
1705
1808
  func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
1706
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1809
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
1707
1810
  if x != nil {
1708
1811
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1709
1812
  if ms.LoadMessageInfo() == nil {
@@ -1716,7 +1819,7 @@ func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
1716
1819
 
1717
1820
  // Deprecated: Use RecentEmojiWeight.ProtoReflect.Descriptor instead.
1718
1821
  func (*RecentEmojiWeight) Descriptor() ([]byte, []int) {
1719
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11}
1822
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12}
1720
1823
  }
1721
1824
 
1722
1825
  func (x *RecentEmojiWeight) GetEmoji() string {
@@ -1794,13 +1897,18 @@ type SyncActionValue struct {
1794
1897
  PaymentTosAction *PaymentTosAction `protobuf:"bytes,63,opt,name=paymentTosAction" json:"paymentTosAction,omitempty"`
1795
1898
  PrivacySettingChannelsPersonalisedRecommendationAction *PrivacySettingChannelsPersonalisedRecommendationAction `protobuf:"bytes,64,opt,name=privacySettingChannelsPersonalisedRecommendationAction" json:"privacySettingChannelsPersonalisedRecommendationAction,omitempty"`
1796
1899
  BusinessBroadcastAssociationAction *BusinessBroadcastAssociationAction `protobuf:"bytes,65,opt,name=businessBroadcastAssociationAction" json:"businessBroadcastAssociationAction,omitempty"`
1900
+ DetectedOutcomesStatusAction *DetectedOutcomesStatusAction `protobuf:"bytes,66,opt,name=detectedOutcomesStatusAction" json:"detectedOutcomesStatusAction,omitempty"`
1901
+ MaibaAiFeaturesControlAction *MaibaAIFeaturesControlAction `protobuf:"bytes,68,opt,name=maibaAiFeaturesControlAction" json:"maibaAiFeaturesControlAction,omitempty"`
1902
+ BusinessBroadcastListAction *BusinessBroadcastListAction `protobuf:"bytes,69,opt,name=businessBroadcastListAction" json:"businessBroadcastListAction,omitempty"`
1903
+ MusicUserIDAction *MusicUserIdAction `protobuf:"bytes,70,opt,name=musicUserIDAction" json:"musicUserIDAction,omitempty"`
1904
+ StatusPostOptInNotificationPreferencesAction *StatusPostOptInNotificationPreferencesAction `protobuf:"bytes,71,opt,name=statusPostOptInNotificationPreferencesAction" json:"statusPostOptInNotificationPreferencesAction,omitempty"`
1797
1905
  unknownFields protoimpl.UnknownFields
1798
1906
  sizeCache protoimpl.SizeCache
1799
1907
  }
1800
1908
 
1801
1909
  func (x *SyncActionValue) Reset() {
1802
1910
  *x = SyncActionValue{}
1803
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
1911
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
1804
1912
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1805
1913
  ms.StoreMessageInfo(mi)
1806
1914
  }
@@ -1812,7 +1920,7 @@ func (x *SyncActionValue) String() string {
1812
1920
  func (*SyncActionValue) ProtoMessage() {}
1813
1921
 
1814
1922
  func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
1815
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
1923
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
1816
1924
  if x != nil {
1817
1925
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1818
1926
  if ms.LoadMessageInfo() == nil {
@@ -1825,7 +1933,7 @@ func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
1825
1933
 
1826
1934
  // Deprecated: Use SyncActionValue.ProtoReflect.Descriptor instead.
1827
1935
  func (*SyncActionValue) Descriptor() ([]byte, []int) {
1828
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12}
1936
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13}
1829
1937
  }
1830
1938
 
1831
1939
  func (x *SyncActionValue) GetTimestamp() int64 {
@@ -2241,28 +2349,63 @@ func (x *SyncActionValue) GetBusinessBroadcastAssociationAction() *BusinessBroad
2241
2349
  return nil
2242
2350
  }
2243
2351
 
2244
- type BusinessBroadcastAssociationAction struct {
2352
+ func (x *SyncActionValue) GetDetectedOutcomesStatusAction() *DetectedOutcomesStatusAction {
2353
+ if x != nil {
2354
+ return x.DetectedOutcomesStatusAction
2355
+ }
2356
+ return nil
2357
+ }
2358
+
2359
+ func (x *SyncActionValue) GetMaibaAiFeaturesControlAction() *MaibaAIFeaturesControlAction {
2360
+ if x != nil {
2361
+ return x.MaibaAiFeaturesControlAction
2362
+ }
2363
+ return nil
2364
+ }
2365
+
2366
+ func (x *SyncActionValue) GetBusinessBroadcastListAction() *BusinessBroadcastListAction {
2367
+ if x != nil {
2368
+ return x.BusinessBroadcastListAction
2369
+ }
2370
+ return nil
2371
+ }
2372
+
2373
+ func (x *SyncActionValue) GetMusicUserIDAction() *MusicUserIdAction {
2374
+ if x != nil {
2375
+ return x.MusicUserIDAction
2376
+ }
2377
+ return nil
2378
+ }
2379
+
2380
+ func (x *SyncActionValue) GetStatusPostOptInNotificationPreferencesAction() *StatusPostOptInNotificationPreferencesAction {
2381
+ if x != nil {
2382
+ return x.StatusPostOptInNotificationPreferencesAction
2383
+ }
2384
+ return nil
2385
+ }
2386
+
2387
+ type StatusPostOptInNotificationPreferencesAction struct {
2245
2388
  state protoimpl.MessageState `protogen:"open.v1"`
2246
- Deleted *bool `protobuf:"varint,1,opt,name=deleted" json:"deleted,omitempty"`
2389
+ Enabled *bool `protobuf:"varint,1,opt,name=enabled" json:"enabled,omitempty"`
2247
2390
  unknownFields protoimpl.UnknownFields
2248
2391
  sizeCache protoimpl.SizeCache
2249
2392
  }
2250
2393
 
2251
- func (x *BusinessBroadcastAssociationAction) Reset() {
2252
- *x = BusinessBroadcastAssociationAction{}
2253
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
2394
+ func (x *StatusPostOptInNotificationPreferencesAction) Reset() {
2395
+ *x = StatusPostOptInNotificationPreferencesAction{}
2396
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2254
2397
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2255
2398
  ms.StoreMessageInfo(mi)
2256
2399
  }
2257
2400
 
2258
- func (x *BusinessBroadcastAssociationAction) String() string {
2401
+ func (x *StatusPostOptInNotificationPreferencesAction) String() string {
2259
2402
  return protoimpl.X.MessageStringOf(x)
2260
2403
  }
2261
2404
 
2262
- func (*BusinessBroadcastAssociationAction) ProtoMessage() {}
2405
+ func (*StatusPostOptInNotificationPreferencesAction) ProtoMessage() {}
2263
2406
 
2264
- func (x *BusinessBroadcastAssociationAction) ProtoReflect() protoreflect.Message {
2265
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
2407
+ func (x *StatusPostOptInNotificationPreferencesAction) ProtoReflect() protoreflect.Message {
2408
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2266
2409
  if x != nil {
2267
2410
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2268
2411
  if ms.LoadMessageInfo() == nil {
@@ -2273,40 +2416,41 @@ func (x *BusinessBroadcastAssociationAction) ProtoReflect() protoreflect.Message
2273
2416
  return mi.MessageOf(x)
2274
2417
  }
2275
2418
 
2276
- // Deprecated: Use BusinessBroadcastAssociationAction.ProtoReflect.Descriptor instead.
2277
- func (*BusinessBroadcastAssociationAction) Descriptor() ([]byte, []int) {
2278
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13}
2419
+ // Deprecated: Use StatusPostOptInNotificationPreferencesAction.ProtoReflect.Descriptor instead.
2420
+ func (*StatusPostOptInNotificationPreferencesAction) Descriptor() ([]byte, []int) {
2421
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14}
2279
2422
  }
2280
2423
 
2281
- func (x *BusinessBroadcastAssociationAction) GetDeleted() bool {
2282
- if x != nil && x.Deleted != nil {
2283
- return *x.Deleted
2424
+ func (x *StatusPostOptInNotificationPreferencesAction) GetEnabled() bool {
2425
+ if x != nil && x.Enabled != nil {
2426
+ return *x.Enabled
2284
2427
  }
2285
2428
  return false
2286
2429
  }
2287
2430
 
2288
- type CtwaPerCustomerDataSharingAction struct {
2289
- state protoimpl.MessageState `protogen:"open.v1"`
2290
- IsCtwaPerCustomerDataSharingEnabled *bool `protobuf:"varint,1,opt,name=isCtwaPerCustomerDataSharingEnabled" json:"isCtwaPerCustomerDataSharingEnabled,omitempty"`
2291
- unknownFields protoimpl.UnknownFields
2292
- sizeCache protoimpl.SizeCache
2431
+ type BroadcastListParticipant struct {
2432
+ state protoimpl.MessageState `protogen:"open.v1"`
2433
+ LidJID *string `protobuf:"bytes,1,req,name=lidJID" json:"lidJID,omitempty"`
2434
+ PnJID *string `protobuf:"bytes,2,opt,name=pnJID" json:"pnJID,omitempty"`
2435
+ unknownFields protoimpl.UnknownFields
2436
+ sizeCache protoimpl.SizeCache
2293
2437
  }
2294
2438
 
2295
- func (x *CtwaPerCustomerDataSharingAction) Reset() {
2296
- *x = CtwaPerCustomerDataSharingAction{}
2297
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2439
+ func (x *BroadcastListParticipant) Reset() {
2440
+ *x = BroadcastListParticipant{}
2441
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2298
2442
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2299
2443
  ms.StoreMessageInfo(mi)
2300
2444
  }
2301
2445
 
2302
- func (x *CtwaPerCustomerDataSharingAction) String() string {
2446
+ func (x *BroadcastListParticipant) String() string {
2303
2447
  return protoimpl.X.MessageStringOf(x)
2304
2448
  }
2305
2449
 
2306
- func (*CtwaPerCustomerDataSharingAction) ProtoMessage() {}
2450
+ func (*BroadcastListParticipant) ProtoMessage() {}
2307
2451
 
2308
- func (x *CtwaPerCustomerDataSharingAction) ProtoReflect() protoreflect.Message {
2309
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2452
+ func (x *BroadcastListParticipant) ProtoReflect() protoreflect.Message {
2453
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2310
2454
  if x != nil {
2311
2455
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2312
2456
  if ms.LoadMessageInfo() == nil {
@@ -2317,9 +2461,164 @@ func (x *CtwaPerCustomerDataSharingAction) ProtoReflect() protoreflect.Message {
2317
2461
  return mi.MessageOf(x)
2318
2462
  }
2319
2463
 
2320
- // Deprecated: Use CtwaPerCustomerDataSharingAction.ProtoReflect.Descriptor instead.
2464
+ // Deprecated: Use BroadcastListParticipant.ProtoReflect.Descriptor instead.
2465
+ func (*BroadcastListParticipant) Descriptor() ([]byte, []int) {
2466
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{15}
2467
+ }
2468
+
2469
+ func (x *BroadcastListParticipant) GetLidJID() string {
2470
+ if x != nil && x.LidJID != nil {
2471
+ return *x.LidJID
2472
+ }
2473
+ return ""
2474
+ }
2475
+
2476
+ func (x *BroadcastListParticipant) GetPnJID() string {
2477
+ if x != nil && x.PnJID != nil {
2478
+ return *x.PnJID
2479
+ }
2480
+ return ""
2481
+ }
2482
+
2483
+ type BusinessBroadcastListAction struct {
2484
+ state protoimpl.MessageState `protogen:"open.v1"`
2485
+ Deleted *bool `protobuf:"varint,1,opt,name=deleted" json:"deleted,omitempty"`
2486
+ Participants []*BroadcastListParticipant `protobuf:"bytes,2,rep,name=participants" json:"participants,omitempty"`
2487
+ ListName *string `protobuf:"bytes,3,opt,name=listName" json:"listName,omitempty"`
2488
+ unknownFields protoimpl.UnknownFields
2489
+ sizeCache protoimpl.SizeCache
2490
+ }
2491
+
2492
+ func (x *BusinessBroadcastListAction) Reset() {
2493
+ *x = BusinessBroadcastListAction{}
2494
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2495
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2496
+ ms.StoreMessageInfo(mi)
2497
+ }
2498
+
2499
+ func (x *BusinessBroadcastListAction) String() string {
2500
+ return protoimpl.X.MessageStringOf(x)
2501
+ }
2502
+
2503
+ func (*BusinessBroadcastListAction) ProtoMessage() {}
2504
+
2505
+ func (x *BusinessBroadcastListAction) ProtoReflect() protoreflect.Message {
2506
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2507
+ if x != nil {
2508
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2509
+ if ms.LoadMessageInfo() == nil {
2510
+ ms.StoreMessageInfo(mi)
2511
+ }
2512
+ return ms
2513
+ }
2514
+ return mi.MessageOf(x)
2515
+ }
2516
+
2517
+ // Deprecated: Use BusinessBroadcastListAction.ProtoReflect.Descriptor instead.
2518
+ func (*BusinessBroadcastListAction) Descriptor() ([]byte, []int) {
2519
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16}
2520
+ }
2521
+
2522
+ func (x *BusinessBroadcastListAction) GetDeleted() bool {
2523
+ if x != nil && x.Deleted != nil {
2524
+ return *x.Deleted
2525
+ }
2526
+ return false
2527
+ }
2528
+
2529
+ func (x *BusinessBroadcastListAction) GetParticipants() []*BroadcastListParticipant {
2530
+ if x != nil {
2531
+ return x.Participants
2532
+ }
2533
+ return nil
2534
+ }
2535
+
2536
+ func (x *BusinessBroadcastListAction) GetListName() string {
2537
+ if x != nil && x.ListName != nil {
2538
+ return *x.ListName
2539
+ }
2540
+ return ""
2541
+ }
2542
+
2543
+ type BusinessBroadcastAssociationAction struct {
2544
+ state protoimpl.MessageState `protogen:"open.v1"`
2545
+ Deleted *bool `protobuf:"varint,1,opt,name=deleted" json:"deleted,omitempty"`
2546
+ unknownFields protoimpl.UnknownFields
2547
+ sizeCache protoimpl.SizeCache
2548
+ }
2549
+
2550
+ func (x *BusinessBroadcastAssociationAction) Reset() {
2551
+ *x = BusinessBroadcastAssociationAction{}
2552
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2553
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2554
+ ms.StoreMessageInfo(mi)
2555
+ }
2556
+
2557
+ func (x *BusinessBroadcastAssociationAction) String() string {
2558
+ return protoimpl.X.MessageStringOf(x)
2559
+ }
2560
+
2561
+ func (*BusinessBroadcastAssociationAction) ProtoMessage() {}
2562
+
2563
+ func (x *BusinessBroadcastAssociationAction) ProtoReflect() protoreflect.Message {
2564
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2565
+ if x != nil {
2566
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2567
+ if ms.LoadMessageInfo() == nil {
2568
+ ms.StoreMessageInfo(mi)
2569
+ }
2570
+ return ms
2571
+ }
2572
+ return mi.MessageOf(x)
2573
+ }
2574
+
2575
+ // Deprecated: Use BusinessBroadcastAssociationAction.ProtoReflect.Descriptor instead.
2576
+ func (*BusinessBroadcastAssociationAction) Descriptor() ([]byte, []int) {
2577
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{17}
2578
+ }
2579
+
2580
+ func (x *BusinessBroadcastAssociationAction) GetDeleted() bool {
2581
+ if x != nil && x.Deleted != nil {
2582
+ return *x.Deleted
2583
+ }
2584
+ return false
2585
+ }
2586
+
2587
+ type CtwaPerCustomerDataSharingAction struct {
2588
+ state protoimpl.MessageState `protogen:"open.v1"`
2589
+ IsCtwaPerCustomerDataSharingEnabled *bool `protobuf:"varint,1,opt,name=isCtwaPerCustomerDataSharingEnabled" json:"isCtwaPerCustomerDataSharingEnabled,omitempty"`
2590
+ unknownFields protoimpl.UnknownFields
2591
+ sizeCache protoimpl.SizeCache
2592
+ }
2593
+
2594
+ func (x *CtwaPerCustomerDataSharingAction) Reset() {
2595
+ *x = CtwaPerCustomerDataSharingAction{}
2596
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2597
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2598
+ ms.StoreMessageInfo(mi)
2599
+ }
2600
+
2601
+ func (x *CtwaPerCustomerDataSharingAction) String() string {
2602
+ return protoimpl.X.MessageStringOf(x)
2603
+ }
2604
+
2605
+ func (*CtwaPerCustomerDataSharingAction) ProtoMessage() {}
2606
+
2607
+ func (x *CtwaPerCustomerDataSharingAction) ProtoReflect() protoreflect.Message {
2608
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2609
+ if x != nil {
2610
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2611
+ if ms.LoadMessageInfo() == nil {
2612
+ ms.StoreMessageInfo(mi)
2613
+ }
2614
+ return ms
2615
+ }
2616
+ return mi.MessageOf(x)
2617
+ }
2618
+
2619
+ // Deprecated: Use CtwaPerCustomerDataSharingAction.ProtoReflect.Descriptor instead.
2321
2620
  func (*CtwaPerCustomerDataSharingAction) Descriptor() ([]byte, []int) {
2322
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14}
2621
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{18}
2323
2622
  }
2324
2623
 
2325
2624
  func (x *CtwaPerCustomerDataSharingAction) GetIsCtwaPerCustomerDataSharingEnabled() bool {
@@ -2341,7 +2640,7 @@ type LidContactAction struct {
2341
2640
 
2342
2641
  func (x *LidContactAction) Reset() {
2343
2642
  *x = LidContactAction{}
2344
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2643
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2345
2644
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2346
2645
  ms.StoreMessageInfo(mi)
2347
2646
  }
@@ -2353,7 +2652,7 @@ func (x *LidContactAction) String() string {
2353
2652
  func (*LidContactAction) ProtoMessage() {}
2354
2653
 
2355
2654
  func (x *LidContactAction) ProtoReflect() protoreflect.Message {
2356
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2655
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2357
2656
  if x != nil {
2358
2657
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2359
2658
  if ms.LoadMessageInfo() == nil {
@@ -2366,7 +2665,7 @@ func (x *LidContactAction) ProtoReflect() protoreflect.Message {
2366
2665
 
2367
2666
  // Deprecated: Use LidContactAction.ProtoReflect.Descriptor instead.
2368
2667
  func (*LidContactAction) Descriptor() ([]byte, []int) {
2369
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{15}
2668
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{19}
2370
2669
  }
2371
2670
 
2372
2671
  func (x *LidContactAction) GetFullName() string {
@@ -2406,7 +2705,7 @@ type FavoritesAction struct {
2406
2705
 
2407
2706
  func (x *FavoritesAction) Reset() {
2408
2707
  *x = FavoritesAction{}
2409
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2708
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2410
2709
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2411
2710
  ms.StoreMessageInfo(mi)
2412
2711
  }
@@ -2418,7 +2717,7 @@ func (x *FavoritesAction) String() string {
2418
2717
  func (*FavoritesAction) ProtoMessage() {}
2419
2718
 
2420
2719
  func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
2421
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2720
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2422
2721
  if x != nil {
2423
2722
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2424
2723
  if ms.LoadMessageInfo() == nil {
@@ -2431,7 +2730,7 @@ func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
2431
2730
 
2432
2731
  // Deprecated: Use FavoritesAction.ProtoReflect.Descriptor instead.
2433
2732
  func (*FavoritesAction) Descriptor() ([]byte, []int) {
2434
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16}
2733
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20}
2435
2734
  }
2436
2735
 
2437
2736
  func (x *FavoritesAction) GetFavorites() []*FavoritesAction_Favorite {
@@ -2450,7 +2749,7 @@ type PrivacySettingChannelsPersonalisedRecommendationAction struct {
2450
2749
 
2451
2750
  func (x *PrivacySettingChannelsPersonalisedRecommendationAction) Reset() {
2452
2751
  *x = PrivacySettingChannelsPersonalisedRecommendationAction{}
2453
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2752
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2454
2753
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2455
2754
  ms.StoreMessageInfo(mi)
2456
2755
  }
@@ -2462,7 +2761,7 @@ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) String() string
2462
2761
  func (*PrivacySettingChannelsPersonalisedRecommendationAction) ProtoMessage() {}
2463
2762
 
2464
2763
  func (x *PrivacySettingChannelsPersonalisedRecommendationAction) ProtoReflect() protoreflect.Message {
2465
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2764
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2466
2765
  if x != nil {
2467
2766
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2468
2767
  if ms.LoadMessageInfo() == nil {
@@ -2475,7 +2774,7 @@ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) ProtoReflect()
2475
2774
 
2476
2775
  // Deprecated: Use PrivacySettingChannelsPersonalisedRecommendationAction.ProtoReflect.Descriptor instead.
2477
2776
  func (*PrivacySettingChannelsPersonalisedRecommendationAction) Descriptor() ([]byte, []int) {
2478
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{17}
2777
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{21}
2479
2778
  }
2480
2779
 
2481
2780
  func (x *PrivacySettingChannelsPersonalisedRecommendationAction) GetIsUserOptedOut() bool {
@@ -2494,7 +2793,7 @@ type PrivacySettingDisableLinkPreviewsAction struct {
2494
2793
 
2495
2794
  func (x *PrivacySettingDisableLinkPreviewsAction) Reset() {
2496
2795
  *x = PrivacySettingDisableLinkPreviewsAction{}
2497
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2796
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2498
2797
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2499
2798
  ms.StoreMessageInfo(mi)
2500
2799
  }
@@ -2506,7 +2805,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) String() string {
2506
2805
  func (*PrivacySettingDisableLinkPreviewsAction) ProtoMessage() {}
2507
2806
 
2508
2807
  func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Message {
2509
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2808
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2510
2809
  if x != nil {
2511
2810
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2512
2811
  if ms.LoadMessageInfo() == nil {
@@ -2519,7 +2818,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Me
2519
2818
 
2520
2819
  // Deprecated: Use PrivacySettingDisableLinkPreviewsAction.ProtoReflect.Descriptor instead.
2521
2820
  func (*PrivacySettingDisableLinkPreviewsAction) Descriptor() ([]byte, []int) {
2522
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{18}
2821
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22}
2523
2822
  }
2524
2823
 
2525
2824
  func (x *PrivacySettingDisableLinkPreviewsAction) GetIsPreviewsDisabled() bool {
@@ -2538,7 +2837,7 @@ type WamoUserIdentifierAction struct {
2538
2837
 
2539
2838
  func (x *WamoUserIdentifierAction) Reset() {
2540
2839
  *x = WamoUserIdentifierAction{}
2541
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2840
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
2542
2841
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2543
2842
  ms.StoreMessageInfo(mi)
2544
2843
  }
@@ -2550,7 +2849,7 @@ func (x *WamoUserIdentifierAction) String() string {
2550
2849
  func (*WamoUserIdentifierAction) ProtoMessage() {}
2551
2850
 
2552
2851
  func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
2553
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2852
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
2554
2853
  if x != nil {
2555
2854
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2556
2855
  if ms.LoadMessageInfo() == nil {
@@ -2563,7 +2862,7 @@ func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
2563
2862
 
2564
2863
  // Deprecated: Use WamoUserIdentifierAction.ProtoReflect.Descriptor instead.
2565
2864
  func (*WamoUserIdentifierAction) Descriptor() ([]byte, []int) {
2566
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{19}
2865
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{23}
2567
2866
  }
2568
2867
 
2569
2868
  func (x *WamoUserIdentifierAction) GetIdentifier() string {
@@ -2582,7 +2881,7 @@ type LockChatAction struct {
2582
2881
 
2583
2882
  func (x *LockChatAction) Reset() {
2584
2883
  *x = LockChatAction{}
2585
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2884
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
2586
2885
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2587
2886
  ms.StoreMessageInfo(mi)
2588
2887
  }
@@ -2594,7 +2893,7 @@ func (x *LockChatAction) String() string {
2594
2893
  func (*LockChatAction) ProtoMessage() {}
2595
2894
 
2596
2895
  func (x *LockChatAction) ProtoReflect() protoreflect.Message {
2597
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2896
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
2598
2897
  if x != nil {
2599
2898
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2600
2899
  if ms.LoadMessageInfo() == nil {
@@ -2607,7 +2906,7 @@ func (x *LockChatAction) ProtoReflect() protoreflect.Message {
2607
2906
 
2608
2907
  // Deprecated: Use LockChatAction.ProtoReflect.Descriptor instead.
2609
2908
  func (*LockChatAction) Descriptor() ([]byte, []int) {
2610
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20}
2909
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{24}
2611
2910
  }
2612
2911
 
2613
2912
  func (x *LockChatAction) GetLocked() bool {
@@ -2626,7 +2925,7 @@ type CustomPaymentMethodsAction struct {
2626
2925
 
2627
2926
  func (x *CustomPaymentMethodsAction) Reset() {
2628
2927
  *x = CustomPaymentMethodsAction{}
2629
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2928
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
2630
2929
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2631
2930
  ms.StoreMessageInfo(mi)
2632
2931
  }
@@ -2638,7 +2937,7 @@ func (x *CustomPaymentMethodsAction) String() string {
2638
2937
  func (*CustomPaymentMethodsAction) ProtoMessage() {}
2639
2938
 
2640
2939
  func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
2641
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2940
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
2642
2941
  if x != nil {
2643
2942
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2644
2943
  if ms.LoadMessageInfo() == nil {
@@ -2651,7 +2950,7 @@ func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
2651
2950
 
2652
2951
  // Deprecated: Use CustomPaymentMethodsAction.ProtoReflect.Descriptor instead.
2653
2952
  func (*CustomPaymentMethodsAction) Descriptor() ([]byte, []int) {
2654
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{21}
2953
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{25}
2655
2954
  }
2656
2955
 
2657
2956
  func (x *CustomPaymentMethodsAction) GetCustomPaymentMethods() []*CustomPaymentMethod {
@@ -2673,7 +2972,7 @@ type CustomPaymentMethod struct {
2673
2972
 
2674
2973
  func (x *CustomPaymentMethod) Reset() {
2675
2974
  *x = CustomPaymentMethod{}
2676
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2975
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
2677
2976
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2678
2977
  ms.StoreMessageInfo(mi)
2679
2978
  }
@@ -2685,7 +2984,7 @@ func (x *CustomPaymentMethod) String() string {
2685
2984
  func (*CustomPaymentMethod) ProtoMessage() {}
2686
2985
 
2687
2986
  func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
2688
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2987
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
2689
2988
  if x != nil {
2690
2989
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2691
2990
  if ms.LoadMessageInfo() == nil {
@@ -2698,7 +2997,7 @@ func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
2698
2997
 
2699
2998
  // Deprecated: Use CustomPaymentMethod.ProtoReflect.Descriptor instead.
2700
2999
  func (*CustomPaymentMethod) Descriptor() ([]byte, []int) {
2701
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22}
3000
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{26}
2702
3001
  }
2703
3002
 
2704
3003
  func (x *CustomPaymentMethod) GetCredentialID() string {
@@ -2739,7 +3038,7 @@ type CustomPaymentMethodMetadata struct {
2739
3038
 
2740
3039
  func (x *CustomPaymentMethodMetadata) Reset() {
2741
3040
  *x = CustomPaymentMethodMetadata{}
2742
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
3041
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
2743
3042
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2744
3043
  ms.StoreMessageInfo(mi)
2745
3044
  }
@@ -2751,7 +3050,7 @@ func (x *CustomPaymentMethodMetadata) String() string {
2751
3050
  func (*CustomPaymentMethodMetadata) ProtoMessage() {}
2752
3051
 
2753
3052
  func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
2754
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
3053
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
2755
3054
  if x != nil {
2756
3055
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2757
3056
  if ms.LoadMessageInfo() == nil {
@@ -2764,7 +3063,7 @@ func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
2764
3063
 
2765
3064
  // Deprecated: Use CustomPaymentMethodMetadata.ProtoReflect.Descriptor instead.
2766
3065
  func (*CustomPaymentMethodMetadata) Descriptor() ([]byte, []int) {
2767
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{23}
3066
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{27}
2768
3067
  }
2769
3068
 
2770
3069
  func (x *CustomPaymentMethodMetadata) GetKey() string {
@@ -2790,7 +3089,7 @@ type PaymentInfoAction struct {
2790
3089
 
2791
3090
  func (x *PaymentInfoAction) Reset() {
2792
3091
  *x = PaymentInfoAction{}
2793
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
3092
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
2794
3093
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2795
3094
  ms.StoreMessageInfo(mi)
2796
3095
  }
@@ -2802,7 +3101,7 @@ func (x *PaymentInfoAction) String() string {
2802
3101
  func (*PaymentInfoAction) ProtoMessage() {}
2803
3102
 
2804
3103
  func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
2805
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
3104
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
2806
3105
  if x != nil {
2807
3106
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2808
3107
  if ms.LoadMessageInfo() == nil {
@@ -2815,7 +3114,7 @@ func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
2815
3114
 
2816
3115
  // Deprecated: Use PaymentInfoAction.ProtoReflect.Descriptor instead.
2817
3116
  func (*PaymentInfoAction) Descriptor() ([]byte, []int) {
2818
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{24}
3117
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{28}
2819
3118
  }
2820
3119
 
2821
3120
  func (x *PaymentInfoAction) GetCpi() string {
@@ -2834,7 +3133,7 @@ type LabelReorderingAction struct {
2834
3133
 
2835
3134
  func (x *LabelReorderingAction) Reset() {
2836
3135
  *x = LabelReorderingAction{}
2837
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
3136
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
2838
3137
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2839
3138
  ms.StoreMessageInfo(mi)
2840
3139
  }
@@ -2846,7 +3145,7 @@ func (x *LabelReorderingAction) String() string {
2846
3145
  func (*LabelReorderingAction) ProtoMessage() {}
2847
3146
 
2848
3147
  func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
2849
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
3148
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
2850
3149
  if x != nil {
2851
3150
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2852
3151
  if ms.LoadMessageInfo() == nil {
@@ -2859,7 +3158,7 @@ func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
2859
3158
 
2860
3159
  // Deprecated: Use LabelReorderingAction.ProtoReflect.Descriptor instead.
2861
3160
  func (*LabelReorderingAction) Descriptor() ([]byte, []int) {
2862
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{25}
3161
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{29}
2863
3162
  }
2864
3163
 
2865
3164
  func (x *LabelReorderingAction) GetSortedLabelIDs() []int32 {
@@ -2879,7 +3178,7 @@ type DeleteIndividualCallLogAction struct {
2879
3178
 
2880
3179
  func (x *DeleteIndividualCallLogAction) Reset() {
2881
3180
  *x = DeleteIndividualCallLogAction{}
2882
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
3181
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
2883
3182
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2884
3183
  ms.StoreMessageInfo(mi)
2885
3184
  }
@@ -2891,7 +3190,7 @@ func (x *DeleteIndividualCallLogAction) String() string {
2891
3190
  func (*DeleteIndividualCallLogAction) ProtoMessage() {}
2892
3191
 
2893
3192
  func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
2894
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
3193
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
2895
3194
  if x != nil {
2896
3195
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2897
3196
  if ms.LoadMessageInfo() == nil {
@@ -2904,7 +3203,7 @@ func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
2904
3203
 
2905
3204
  // Deprecated: Use DeleteIndividualCallLogAction.ProtoReflect.Descriptor instead.
2906
3205
  func (*DeleteIndividualCallLogAction) Descriptor() ([]byte, []int) {
2907
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{26}
3206
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{30}
2908
3207
  }
2909
3208
 
2910
3209
  func (x *DeleteIndividualCallLogAction) GetPeerJID() string {
@@ -2930,7 +3229,7 @@ type BotWelcomeRequestAction struct {
2930
3229
 
2931
3230
  func (x *BotWelcomeRequestAction) Reset() {
2932
3231
  *x = BotWelcomeRequestAction{}
2933
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
3232
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
2934
3233
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2935
3234
  ms.StoreMessageInfo(mi)
2936
3235
  }
@@ -2942,7 +3241,7 @@ func (x *BotWelcomeRequestAction) String() string {
2942
3241
  func (*BotWelcomeRequestAction) ProtoMessage() {}
2943
3242
 
2944
3243
  func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
2945
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
3244
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
2946
3245
  if x != nil {
2947
3246
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2948
3247
  if ms.LoadMessageInfo() == nil {
@@ -2955,7 +3254,7 @@ func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
2955
3254
 
2956
3255
  // Deprecated: Use BotWelcomeRequestAction.ProtoReflect.Descriptor instead.
2957
3256
  func (*BotWelcomeRequestAction) Descriptor() ([]byte, []int) {
2958
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{27}
3257
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{31}
2959
3258
  }
2960
3259
 
2961
3260
  func (x *BotWelcomeRequestAction) GetIsSent() bool {
@@ -2965,6 +3264,50 @@ func (x *BotWelcomeRequestAction) GetIsSent() bool {
2965
3264
  return false
2966
3265
  }
2967
3266
 
3267
+ type MusicUserIdAction struct {
3268
+ state protoimpl.MessageState `protogen:"open.v1"`
3269
+ MusicUserID *string `protobuf:"bytes,1,opt,name=musicUserID" json:"musicUserID,omitempty"`
3270
+ unknownFields protoimpl.UnknownFields
3271
+ sizeCache protoimpl.SizeCache
3272
+ }
3273
+
3274
+ func (x *MusicUserIdAction) Reset() {
3275
+ *x = MusicUserIdAction{}
3276
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
3277
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3278
+ ms.StoreMessageInfo(mi)
3279
+ }
3280
+
3281
+ func (x *MusicUserIdAction) String() string {
3282
+ return protoimpl.X.MessageStringOf(x)
3283
+ }
3284
+
3285
+ func (*MusicUserIdAction) ProtoMessage() {}
3286
+
3287
+ func (x *MusicUserIdAction) ProtoReflect() protoreflect.Message {
3288
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
3289
+ if x != nil {
3290
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3291
+ if ms.LoadMessageInfo() == nil {
3292
+ ms.StoreMessageInfo(mi)
3293
+ }
3294
+ return ms
3295
+ }
3296
+ return mi.MessageOf(x)
3297
+ }
3298
+
3299
+ // Deprecated: Use MusicUserIdAction.ProtoReflect.Descriptor instead.
3300
+ func (*MusicUserIdAction) Descriptor() ([]byte, []int) {
3301
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{32}
3302
+ }
3303
+
3304
+ func (x *MusicUserIdAction) GetMusicUserID() string {
3305
+ if x != nil && x.MusicUserID != nil {
3306
+ return *x.MusicUserID
3307
+ }
3308
+ return ""
3309
+ }
3310
+
2968
3311
  type CallLogAction struct {
2969
3312
  state protoimpl.MessageState `protogen:"open.v1"`
2970
3313
  CallLogRecord *CallLogRecord `protobuf:"bytes,1,opt,name=callLogRecord" json:"callLogRecord,omitempty"`
@@ -2974,7 +3317,7 @@ type CallLogAction struct {
2974
3317
 
2975
3318
  func (x *CallLogAction) Reset() {
2976
3319
  *x = CallLogAction{}
2977
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
3320
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
2978
3321
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2979
3322
  ms.StoreMessageInfo(mi)
2980
3323
  }
@@ -2986,7 +3329,7 @@ func (x *CallLogAction) String() string {
2986
3329
  func (*CallLogAction) ProtoMessage() {}
2987
3330
 
2988
3331
  func (x *CallLogAction) ProtoReflect() protoreflect.Message {
2989
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
3332
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
2990
3333
  if x != nil {
2991
3334
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2992
3335
  if ms.LoadMessageInfo() == nil {
@@ -2999,7 +3342,7 @@ func (x *CallLogAction) ProtoReflect() protoreflect.Message {
2999
3342
 
3000
3343
  // Deprecated: Use CallLogAction.ProtoReflect.Descriptor instead.
3001
3344
  func (*CallLogAction) Descriptor() ([]byte, []int) {
3002
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{28}
3345
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{33}
3003
3346
  }
3004
3347
 
3005
3348
  func (x *CallLogAction) GetCallLogRecord() *CallLogRecord {
@@ -3018,7 +3361,7 @@ type PrivacySettingRelayAllCalls struct {
3018
3361
 
3019
3362
  func (x *PrivacySettingRelayAllCalls) Reset() {
3020
3363
  *x = PrivacySettingRelayAllCalls{}
3021
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
3364
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
3022
3365
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3023
3366
  ms.StoreMessageInfo(mi)
3024
3367
  }
@@ -3030,7 +3373,7 @@ func (x *PrivacySettingRelayAllCalls) String() string {
3030
3373
  func (*PrivacySettingRelayAllCalls) ProtoMessage() {}
3031
3374
 
3032
3375
  func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
3033
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
3376
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
3034
3377
  if x != nil {
3035
3378
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3036
3379
  if ms.LoadMessageInfo() == nil {
@@ -3043,7 +3386,7 @@ func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
3043
3386
 
3044
3387
  // Deprecated: Use PrivacySettingRelayAllCalls.ProtoReflect.Descriptor instead.
3045
3388
  func (*PrivacySettingRelayAllCalls) Descriptor() ([]byte, []int) {
3046
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{29}
3389
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{34}
3047
3390
  }
3048
3391
 
3049
3392
  func (x *PrivacySettingRelayAllCalls) GetIsEnabled() bool {
@@ -3053,6 +3396,50 @@ func (x *PrivacySettingRelayAllCalls) GetIsEnabled() bool {
3053
3396
  return false
3054
3397
  }
3055
3398
 
3399
+ type DetectedOutcomesStatusAction struct {
3400
+ state protoimpl.MessageState `protogen:"open.v1"`
3401
+ IsEnabled *bool `protobuf:"varint,1,opt,name=isEnabled" json:"isEnabled,omitempty"`
3402
+ unknownFields protoimpl.UnknownFields
3403
+ sizeCache protoimpl.SizeCache
3404
+ }
3405
+
3406
+ func (x *DetectedOutcomesStatusAction) Reset() {
3407
+ *x = DetectedOutcomesStatusAction{}
3408
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3409
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3410
+ ms.StoreMessageInfo(mi)
3411
+ }
3412
+
3413
+ func (x *DetectedOutcomesStatusAction) String() string {
3414
+ return protoimpl.X.MessageStringOf(x)
3415
+ }
3416
+
3417
+ func (*DetectedOutcomesStatusAction) ProtoMessage() {}
3418
+
3419
+ func (x *DetectedOutcomesStatusAction) ProtoReflect() protoreflect.Message {
3420
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3421
+ if x != nil {
3422
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3423
+ if ms.LoadMessageInfo() == nil {
3424
+ ms.StoreMessageInfo(mi)
3425
+ }
3426
+ return ms
3427
+ }
3428
+ return mi.MessageOf(x)
3429
+ }
3430
+
3431
+ // Deprecated: Use DetectedOutcomesStatusAction.ProtoReflect.Descriptor instead.
3432
+ func (*DetectedOutcomesStatusAction) Descriptor() ([]byte, []int) {
3433
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{35}
3434
+ }
3435
+
3436
+ func (x *DetectedOutcomesStatusAction) GetIsEnabled() bool {
3437
+ if x != nil && x.IsEnabled != nil {
3438
+ return *x.IsEnabled
3439
+ }
3440
+ return false
3441
+ }
3442
+
3056
3443
  type ExternalWebBetaAction struct {
3057
3444
  state protoimpl.MessageState `protogen:"open.v1"`
3058
3445
  IsOptIn *bool `protobuf:"varint,1,opt,name=isOptIn" json:"isOptIn,omitempty"`
@@ -3062,7 +3449,7 @@ type ExternalWebBetaAction struct {
3062
3449
 
3063
3450
  func (x *ExternalWebBetaAction) Reset() {
3064
3451
  *x = ExternalWebBetaAction{}
3065
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
3452
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3066
3453
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3067
3454
  ms.StoreMessageInfo(mi)
3068
3455
  }
@@ -3074,7 +3461,7 @@ func (x *ExternalWebBetaAction) String() string {
3074
3461
  func (*ExternalWebBetaAction) ProtoMessage() {}
3075
3462
 
3076
3463
  func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
3077
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
3464
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3078
3465
  if x != nil {
3079
3466
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3080
3467
  if ms.LoadMessageInfo() == nil {
@@ -3087,7 +3474,7 @@ func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
3087
3474
 
3088
3475
  // Deprecated: Use ExternalWebBetaAction.ProtoReflect.Descriptor instead.
3089
3476
  func (*ExternalWebBetaAction) Descriptor() ([]byte, []int) {
3090
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{30}
3477
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{36}
3091
3478
  }
3092
3479
 
3093
3480
  func (x *ExternalWebBetaAction) GetIsOptIn() bool {
@@ -3106,7 +3493,7 @@ type MarketingMessageBroadcastAction struct {
3106
3493
 
3107
3494
  func (x *MarketingMessageBroadcastAction) Reset() {
3108
3495
  *x = MarketingMessageBroadcastAction{}
3109
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
3496
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3110
3497
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3111
3498
  ms.StoreMessageInfo(mi)
3112
3499
  }
@@ -3118,7 +3505,7 @@ func (x *MarketingMessageBroadcastAction) String() string {
3118
3505
  func (*MarketingMessageBroadcastAction) ProtoMessage() {}
3119
3506
 
3120
3507
  func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
3121
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
3508
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3122
3509
  if x != nil {
3123
3510
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3124
3511
  if ms.LoadMessageInfo() == nil {
@@ -3131,7 +3518,7 @@ func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
3131
3518
 
3132
3519
  // Deprecated: Use MarketingMessageBroadcastAction.ProtoReflect.Descriptor instead.
3133
3520
  func (*MarketingMessageBroadcastAction) Descriptor() ([]byte, []int) {
3134
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{31}
3521
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{37}
3135
3522
  }
3136
3523
 
3137
3524
  func (x *MarketingMessageBroadcastAction) GetRepliedCount() int32 {
@@ -3150,7 +3537,7 @@ type PnForLidChatAction struct {
3150
3537
 
3151
3538
  func (x *PnForLidChatAction) Reset() {
3152
3539
  *x = PnForLidChatAction{}
3153
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
3540
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3154
3541
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3155
3542
  ms.StoreMessageInfo(mi)
3156
3543
  }
@@ -3162,7 +3549,7 @@ func (x *PnForLidChatAction) String() string {
3162
3549
  func (*PnForLidChatAction) ProtoMessage() {}
3163
3550
 
3164
3551
  func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
3165
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
3552
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3166
3553
  if x != nil {
3167
3554
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3168
3555
  if ms.LoadMessageInfo() == nil {
@@ -3175,7 +3562,7 @@ func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
3175
3562
 
3176
3563
  // Deprecated: Use PnForLidChatAction.ProtoReflect.Descriptor instead.
3177
3564
  func (*PnForLidChatAction) Descriptor() ([]byte, []int) {
3178
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{32}
3565
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{38}
3179
3566
  }
3180
3567
 
3181
3568
  func (x *PnForLidChatAction) GetPnJID() string {
@@ -3194,7 +3581,7 @@ type ChatAssignmentOpenedStatusAction struct {
3194
3581
 
3195
3582
  func (x *ChatAssignmentOpenedStatusAction) Reset() {
3196
3583
  *x = ChatAssignmentOpenedStatusAction{}
3197
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
3584
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3198
3585
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3199
3586
  ms.StoreMessageInfo(mi)
3200
3587
  }
@@ -3206,7 +3593,7 @@ func (x *ChatAssignmentOpenedStatusAction) String() string {
3206
3593
  func (*ChatAssignmentOpenedStatusAction) ProtoMessage() {}
3207
3594
 
3208
3595
  func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
3209
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
3596
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3210
3597
  if x != nil {
3211
3598
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3212
3599
  if ms.LoadMessageInfo() == nil {
@@ -3219,7 +3606,7 @@ func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
3219
3606
 
3220
3607
  // Deprecated: Use ChatAssignmentOpenedStatusAction.ProtoReflect.Descriptor instead.
3221
3608
  func (*ChatAssignmentOpenedStatusAction) Descriptor() ([]byte, []int) {
3222
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{33}
3609
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{39}
3223
3610
  }
3224
3611
 
3225
3612
  func (x *ChatAssignmentOpenedStatusAction) GetChatOpened() bool {
@@ -3238,7 +3625,7 @@ type ChatAssignmentAction struct {
3238
3625
 
3239
3626
  func (x *ChatAssignmentAction) Reset() {
3240
3627
  *x = ChatAssignmentAction{}
3241
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
3628
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3242
3629
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3243
3630
  ms.StoreMessageInfo(mi)
3244
3631
  }
@@ -3250,7 +3637,7 @@ func (x *ChatAssignmentAction) String() string {
3250
3637
  func (*ChatAssignmentAction) ProtoMessage() {}
3251
3638
 
3252
3639
  func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
3253
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
3640
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3254
3641
  if x != nil {
3255
3642
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3256
3643
  if ms.LoadMessageInfo() == nil {
@@ -3263,7 +3650,7 @@ func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
3263
3650
 
3264
3651
  // Deprecated: Use ChatAssignmentAction.ProtoReflect.Descriptor instead.
3265
3652
  func (*ChatAssignmentAction) Descriptor() ([]byte, []int) {
3266
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{34}
3653
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{40}
3267
3654
  }
3268
3655
 
3269
3656
  func (x *ChatAssignmentAction) GetDeviceAgentID() string {
@@ -3274,25 +3661,27 @@ func (x *ChatAssignmentAction) GetDeviceAgentID() string {
3274
3661
  }
3275
3662
 
3276
3663
  type StickerAction struct {
3277
- state protoimpl.MessageState `protogen:"open.v1"`
3278
- URL *string `protobuf:"bytes,1,opt,name=URL" json:"URL,omitempty"`
3279
- FileEncSHA256 []byte `protobuf:"bytes,2,opt,name=fileEncSHA256" json:"fileEncSHA256,omitempty"`
3280
- MediaKey []byte `protobuf:"bytes,3,opt,name=mediaKey" json:"mediaKey,omitempty"`
3281
- Mimetype *string `protobuf:"bytes,4,opt,name=mimetype" json:"mimetype,omitempty"`
3282
- Height *uint32 `protobuf:"varint,5,opt,name=height" json:"height,omitempty"`
3283
- Width *uint32 `protobuf:"varint,6,opt,name=width" json:"width,omitempty"`
3284
- DirectPath *string `protobuf:"bytes,7,opt,name=directPath" json:"directPath,omitempty"`
3285
- FileLength *uint64 `protobuf:"varint,8,opt,name=fileLength" json:"fileLength,omitempty"`
3286
- IsFavorite *bool `protobuf:"varint,9,opt,name=isFavorite" json:"isFavorite,omitempty"`
3287
- DeviceIDHint *uint32 `protobuf:"varint,10,opt,name=deviceIDHint" json:"deviceIDHint,omitempty"`
3288
- IsLottie *bool `protobuf:"varint,11,opt,name=isLottie" json:"isLottie,omitempty"`
3289
- unknownFields protoimpl.UnknownFields
3290
- sizeCache protoimpl.SizeCache
3664
+ state protoimpl.MessageState `protogen:"open.v1"`
3665
+ URL *string `protobuf:"bytes,1,opt,name=URL" json:"URL,omitempty"`
3666
+ FileEncSHA256 []byte `protobuf:"bytes,2,opt,name=fileEncSHA256" json:"fileEncSHA256,omitempty"`
3667
+ MediaKey []byte `protobuf:"bytes,3,opt,name=mediaKey" json:"mediaKey,omitempty"`
3668
+ Mimetype *string `protobuf:"bytes,4,opt,name=mimetype" json:"mimetype,omitempty"`
3669
+ Height *uint32 `protobuf:"varint,5,opt,name=height" json:"height,omitempty"`
3670
+ Width *uint32 `protobuf:"varint,6,opt,name=width" json:"width,omitempty"`
3671
+ DirectPath *string `protobuf:"bytes,7,opt,name=directPath" json:"directPath,omitempty"`
3672
+ FileLength *uint64 `protobuf:"varint,8,opt,name=fileLength" json:"fileLength,omitempty"`
3673
+ IsFavorite *bool `protobuf:"varint,9,opt,name=isFavorite" json:"isFavorite,omitempty"`
3674
+ DeviceIDHint *uint32 `protobuf:"varint,10,opt,name=deviceIDHint" json:"deviceIDHint,omitempty"`
3675
+ IsLottie *bool `protobuf:"varint,11,opt,name=isLottie" json:"isLottie,omitempty"`
3676
+ ImageHash *string `protobuf:"bytes,12,opt,name=imageHash" json:"imageHash,omitempty"`
3677
+ IsAvatarSticker *bool `protobuf:"varint,13,opt,name=isAvatarSticker" json:"isAvatarSticker,omitempty"`
3678
+ unknownFields protoimpl.UnknownFields
3679
+ sizeCache protoimpl.SizeCache
3291
3680
  }
3292
3681
 
3293
3682
  func (x *StickerAction) Reset() {
3294
3683
  *x = StickerAction{}
3295
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3684
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3296
3685
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3297
3686
  ms.StoreMessageInfo(mi)
3298
3687
  }
@@ -3304,7 +3693,7 @@ func (x *StickerAction) String() string {
3304
3693
  func (*StickerAction) ProtoMessage() {}
3305
3694
 
3306
3695
  func (x *StickerAction) ProtoReflect() protoreflect.Message {
3307
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3696
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3308
3697
  if x != nil {
3309
3698
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3310
3699
  if ms.LoadMessageInfo() == nil {
@@ -3317,7 +3706,7 @@ func (x *StickerAction) ProtoReflect() protoreflect.Message {
3317
3706
 
3318
3707
  // Deprecated: Use StickerAction.ProtoReflect.Descriptor instead.
3319
3708
  func (*StickerAction) Descriptor() ([]byte, []int) {
3320
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{35}
3709
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{41}
3321
3710
  }
3322
3711
 
3323
3712
  func (x *StickerAction) GetURL() string {
@@ -3397,6 +3786,20 @@ func (x *StickerAction) GetIsLottie() bool {
3397
3786
  return false
3398
3787
  }
3399
3788
 
3789
+ func (x *StickerAction) GetImageHash() string {
3790
+ if x != nil && x.ImageHash != nil {
3791
+ return *x.ImageHash
3792
+ }
3793
+ return ""
3794
+ }
3795
+
3796
+ func (x *StickerAction) GetIsAvatarSticker() bool {
3797
+ if x != nil && x.IsAvatarSticker != nil {
3798
+ return *x.IsAvatarSticker
3799
+ }
3800
+ return false
3801
+ }
3802
+
3400
3803
  type RemoveRecentStickerAction struct {
3401
3804
  state protoimpl.MessageState `protogen:"open.v1"`
3402
3805
  LastStickerSentTS *int64 `protobuf:"varint,1,opt,name=lastStickerSentTS" json:"lastStickerSentTS,omitempty"`
@@ -3406,7 +3809,7 @@ type RemoveRecentStickerAction struct {
3406
3809
 
3407
3810
  func (x *RemoveRecentStickerAction) Reset() {
3408
3811
  *x = RemoveRecentStickerAction{}
3409
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3812
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
3410
3813
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3411
3814
  ms.StoreMessageInfo(mi)
3412
3815
  }
@@ -3418,7 +3821,7 @@ func (x *RemoveRecentStickerAction) String() string {
3418
3821
  func (*RemoveRecentStickerAction) ProtoMessage() {}
3419
3822
 
3420
3823
  func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
3421
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3824
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
3422
3825
  if x != nil {
3423
3826
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3424
3827
  if ms.LoadMessageInfo() == nil {
@@ -3431,7 +3834,7 @@ func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
3431
3834
 
3432
3835
  // Deprecated: Use RemoveRecentStickerAction.ProtoReflect.Descriptor instead.
3433
3836
  func (*RemoveRecentStickerAction) Descriptor() ([]byte, []int) {
3434
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{36}
3837
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{42}
3435
3838
  }
3436
3839
 
3437
3840
  func (x *RemoveRecentStickerAction) GetLastStickerSentTS() int64 {
@@ -3450,7 +3853,7 @@ type PrimaryVersionAction struct {
3450
3853
 
3451
3854
  func (x *PrimaryVersionAction) Reset() {
3452
3855
  *x = PrimaryVersionAction{}
3453
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3856
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
3454
3857
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3455
3858
  ms.StoreMessageInfo(mi)
3456
3859
  }
@@ -3462,7 +3865,7 @@ func (x *PrimaryVersionAction) String() string {
3462
3865
  func (*PrimaryVersionAction) ProtoMessage() {}
3463
3866
 
3464
3867
  func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
3465
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3868
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
3466
3869
  if x != nil {
3467
3870
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3468
3871
  if ms.LoadMessageInfo() == nil {
@@ -3475,7 +3878,7 @@ func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
3475
3878
 
3476
3879
  // Deprecated: Use PrimaryVersionAction.ProtoReflect.Descriptor instead.
3477
3880
  func (*PrimaryVersionAction) Descriptor() ([]byte, []int) {
3478
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{37}
3881
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{43}
3479
3882
  }
3480
3883
 
3481
3884
  func (x *PrimaryVersionAction) GetVersion() string {
@@ -3494,7 +3897,7 @@ type NuxAction struct {
3494
3897
 
3495
3898
  func (x *NuxAction) Reset() {
3496
3899
  *x = NuxAction{}
3497
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3900
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
3498
3901
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3499
3902
  ms.StoreMessageInfo(mi)
3500
3903
  }
@@ -3506,7 +3909,7 @@ func (x *NuxAction) String() string {
3506
3909
  func (*NuxAction) ProtoMessage() {}
3507
3910
 
3508
3911
  func (x *NuxAction) ProtoReflect() protoreflect.Message {
3509
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3912
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
3510
3913
  if x != nil {
3511
3914
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3512
3915
  if ms.LoadMessageInfo() == nil {
@@ -3519,7 +3922,7 @@ func (x *NuxAction) ProtoReflect() protoreflect.Message {
3519
3922
 
3520
3923
  // Deprecated: Use NuxAction.ProtoReflect.Descriptor instead.
3521
3924
  func (*NuxAction) Descriptor() ([]byte, []int) {
3522
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{38}
3925
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{44}
3523
3926
  }
3524
3927
 
3525
3928
  func (x *NuxAction) GetAcknowledged() bool {
@@ -3538,7 +3941,7 @@ type TimeFormatAction struct {
3538
3941
 
3539
3942
  func (x *TimeFormatAction) Reset() {
3540
3943
  *x = TimeFormatAction{}
3541
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3944
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
3542
3945
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3543
3946
  ms.StoreMessageInfo(mi)
3544
3947
  }
@@ -3550,7 +3953,7 @@ func (x *TimeFormatAction) String() string {
3550
3953
  func (*TimeFormatAction) ProtoMessage() {}
3551
3954
 
3552
3955
  func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
3553
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3956
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
3554
3957
  if x != nil {
3555
3958
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3556
3959
  if ms.LoadMessageInfo() == nil {
@@ -3563,7 +3966,7 @@ func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
3563
3966
 
3564
3967
  // Deprecated: Use TimeFormatAction.ProtoReflect.Descriptor instead.
3565
3968
  func (*TimeFormatAction) Descriptor() ([]byte, []int) {
3566
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{39}
3969
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{45}
3567
3970
  }
3568
3971
 
3569
3972
  func (x *TimeFormatAction) GetIsTwentyFourHourFormatEnabled() bool {
@@ -3582,7 +3985,7 @@ type UserStatusMuteAction struct {
3582
3985
 
3583
3986
  func (x *UserStatusMuteAction) Reset() {
3584
3987
  *x = UserStatusMuteAction{}
3585
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3988
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
3586
3989
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3587
3990
  ms.StoreMessageInfo(mi)
3588
3991
  }
@@ -3594,7 +3997,7 @@ func (x *UserStatusMuteAction) String() string {
3594
3997
  func (*UserStatusMuteAction) ProtoMessage() {}
3595
3998
 
3596
3999
  func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
3597
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
4000
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
3598
4001
  if x != nil {
3599
4002
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3600
4003
  if ms.LoadMessageInfo() == nil {
@@ -3607,7 +4010,7 @@ func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
3607
4010
 
3608
4011
  // Deprecated: Use UserStatusMuteAction.ProtoReflect.Descriptor instead.
3609
4012
  func (*UserStatusMuteAction) Descriptor() ([]byte, []int) {
3610
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{40}
4013
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{46}
3611
4014
  }
3612
4015
 
3613
4016
  func (x *UserStatusMuteAction) GetMuted() bool {
@@ -3628,7 +4031,7 @@ type SubscriptionAction struct {
3628
4031
 
3629
4032
  func (x *SubscriptionAction) Reset() {
3630
4033
  *x = SubscriptionAction{}
3631
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
4034
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
3632
4035
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3633
4036
  ms.StoreMessageInfo(mi)
3634
4037
  }
@@ -3640,7 +4043,7 @@ func (x *SubscriptionAction) String() string {
3640
4043
  func (*SubscriptionAction) ProtoMessage() {}
3641
4044
 
3642
4045
  func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
3643
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
4046
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
3644
4047
  if x != nil {
3645
4048
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3646
4049
  if ms.LoadMessageInfo() == nil {
@@ -3653,7 +4056,7 @@ func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
3653
4056
 
3654
4057
  // Deprecated: Use SubscriptionAction.ProtoReflect.Descriptor instead.
3655
4058
  func (*SubscriptionAction) Descriptor() ([]byte, []int) {
3656
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{41}
4059
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{47}
3657
4060
  }
3658
4061
 
3659
4062
  func (x *SubscriptionAction) GetIsDeactivated() bool {
@@ -3688,7 +4091,7 @@ type AgentAction struct {
3688
4091
 
3689
4092
  func (x *AgentAction) Reset() {
3690
4093
  *x = AgentAction{}
3691
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
4094
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
3692
4095
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3693
4096
  ms.StoreMessageInfo(mi)
3694
4097
  }
@@ -3700,7 +4103,7 @@ func (x *AgentAction) String() string {
3700
4103
  func (*AgentAction) ProtoMessage() {}
3701
4104
 
3702
4105
  func (x *AgentAction) ProtoReflect() protoreflect.Message {
3703
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
4106
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
3704
4107
  if x != nil {
3705
4108
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3706
4109
  if ms.LoadMessageInfo() == nil {
@@ -3713,7 +4116,7 @@ func (x *AgentAction) ProtoReflect() protoreflect.Message {
3713
4116
 
3714
4117
  // Deprecated: Use AgentAction.ProtoReflect.Descriptor instead.
3715
4118
  func (*AgentAction) Descriptor() ([]byte, []int) {
3716
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{42}
4119
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{48}
3717
4120
  }
3718
4121
 
3719
4122
  func (x *AgentAction) GetName() string {
@@ -3746,7 +4149,7 @@ type AndroidUnsupportedActions struct {
3746
4149
 
3747
4150
  func (x *AndroidUnsupportedActions) Reset() {
3748
4151
  *x = AndroidUnsupportedActions{}
3749
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
4152
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
3750
4153
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3751
4154
  ms.StoreMessageInfo(mi)
3752
4155
  }
@@ -3758,7 +4161,7 @@ func (x *AndroidUnsupportedActions) String() string {
3758
4161
  func (*AndroidUnsupportedActions) ProtoMessage() {}
3759
4162
 
3760
4163
  func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
3761
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
4164
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
3762
4165
  if x != nil {
3763
4166
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3764
4167
  if ms.LoadMessageInfo() == nil {
@@ -3771,7 +4174,7 @@ func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
3771
4174
 
3772
4175
  // Deprecated: Use AndroidUnsupportedActions.ProtoReflect.Descriptor instead.
3773
4176
  func (*AndroidUnsupportedActions) Descriptor() ([]byte, []int) {
3774
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{43}
4177
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{49}
3775
4178
  }
3776
4179
 
3777
4180
  func (x *AndroidUnsupportedActions) GetAllowed() bool {
@@ -3790,7 +4193,7 @@ type PrimaryFeature struct {
3790
4193
 
3791
4194
  func (x *PrimaryFeature) Reset() {
3792
4195
  *x = PrimaryFeature{}
3793
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
4196
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
3794
4197
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3795
4198
  ms.StoreMessageInfo(mi)
3796
4199
  }
@@ -3802,7 +4205,7 @@ func (x *PrimaryFeature) String() string {
3802
4205
  func (*PrimaryFeature) ProtoMessage() {}
3803
4206
 
3804
4207
  func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
3805
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
4208
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
3806
4209
  if x != nil {
3807
4210
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3808
4211
  if ms.LoadMessageInfo() == nil {
@@ -3815,7 +4218,7 @@ func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
3815
4218
 
3816
4219
  // Deprecated: Use PrimaryFeature.ProtoReflect.Descriptor instead.
3817
4220
  func (*PrimaryFeature) Descriptor() ([]byte, []int) {
3818
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{44}
4221
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{50}
3819
4222
  }
3820
4223
 
3821
4224
  func (x *PrimaryFeature) GetFlags() []string {
@@ -3834,7 +4237,7 @@ type KeyExpiration struct {
3834
4237
 
3835
4238
  func (x *KeyExpiration) Reset() {
3836
4239
  *x = KeyExpiration{}
3837
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
4240
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
3838
4241
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3839
4242
  ms.StoreMessageInfo(mi)
3840
4243
  }
@@ -3846,7 +4249,7 @@ func (x *KeyExpiration) String() string {
3846
4249
  func (*KeyExpiration) ProtoMessage() {}
3847
4250
 
3848
4251
  func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
3849
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
4252
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
3850
4253
  if x != nil {
3851
4254
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3852
4255
  if ms.LoadMessageInfo() == nil {
@@ -3859,7 +4262,7 @@ func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
3859
4262
 
3860
4263
  // Deprecated: Use KeyExpiration.ProtoReflect.Descriptor instead.
3861
4264
  func (*KeyExpiration) Descriptor() ([]byte, []int) {
3862
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{45}
4265
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{51}
3863
4266
  }
3864
4267
 
3865
4268
  func (x *KeyExpiration) GetExpiredKeyEpoch() int32 {
@@ -3879,7 +4282,7 @@ type SyncActionMessage struct {
3879
4282
 
3880
4283
  func (x *SyncActionMessage) Reset() {
3881
4284
  *x = SyncActionMessage{}
3882
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
4285
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
3883
4286
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3884
4287
  ms.StoreMessageInfo(mi)
3885
4288
  }
@@ -3891,7 +4294,7 @@ func (x *SyncActionMessage) String() string {
3891
4294
  func (*SyncActionMessage) ProtoMessage() {}
3892
4295
 
3893
4296
  func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
3894
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
4297
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
3895
4298
  if x != nil {
3896
4299
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3897
4300
  if ms.LoadMessageInfo() == nil {
@@ -3904,7 +4307,7 @@ func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
3904
4307
 
3905
4308
  // Deprecated: Use SyncActionMessage.ProtoReflect.Descriptor instead.
3906
4309
  func (*SyncActionMessage) Descriptor() ([]byte, []int) {
3907
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{46}
4310
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{52}
3908
4311
  }
3909
4312
 
3910
4313
  func (x *SyncActionMessage) GetKey() *waCommon.MessageKey {
@@ -3932,7 +4335,7 @@ type SyncActionMessageRange struct {
3932
4335
 
3933
4336
  func (x *SyncActionMessageRange) Reset() {
3934
4337
  *x = SyncActionMessageRange{}
3935
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
4338
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
3936
4339
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3937
4340
  ms.StoreMessageInfo(mi)
3938
4341
  }
@@ -3944,7 +4347,7 @@ func (x *SyncActionMessageRange) String() string {
3944
4347
  func (*SyncActionMessageRange) ProtoMessage() {}
3945
4348
 
3946
4349
  func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
3947
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
4350
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
3948
4351
  if x != nil {
3949
4352
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3950
4353
  if ms.LoadMessageInfo() == nil {
@@ -3957,7 +4360,7 @@ func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
3957
4360
 
3958
4361
  // Deprecated: Use SyncActionMessageRange.ProtoReflect.Descriptor instead.
3959
4362
  func (*SyncActionMessageRange) Descriptor() ([]byte, []int) {
3960
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{47}
4363
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{53}
3961
4364
  }
3962
4365
 
3963
4366
  func (x *SyncActionMessageRange) GetLastMessageTimestamp() int64 {
@@ -3990,7 +4393,7 @@ type UnarchiveChatsSetting struct {
3990
4393
 
3991
4394
  func (x *UnarchiveChatsSetting) Reset() {
3992
4395
  *x = UnarchiveChatsSetting{}
3993
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
4396
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
3994
4397
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3995
4398
  ms.StoreMessageInfo(mi)
3996
4399
  }
@@ -4002,7 +4405,7 @@ func (x *UnarchiveChatsSetting) String() string {
4002
4405
  func (*UnarchiveChatsSetting) ProtoMessage() {}
4003
4406
 
4004
4407
  func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
4005
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
4408
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
4006
4409
  if x != nil {
4007
4410
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4008
4411
  if ms.LoadMessageInfo() == nil {
@@ -4015,7 +4418,7 @@ func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
4015
4418
 
4016
4419
  // Deprecated: Use UnarchiveChatsSetting.ProtoReflect.Descriptor instead.
4017
4420
  func (*UnarchiveChatsSetting) Descriptor() ([]byte, []int) {
4018
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{48}
4421
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{54}
4019
4422
  }
4020
4423
 
4021
4424
  func (x *UnarchiveChatsSetting) GetUnarchiveChats() bool {
@@ -4034,7 +4437,7 @@ type DeleteChatAction struct {
4034
4437
 
4035
4438
  func (x *DeleteChatAction) Reset() {
4036
4439
  *x = DeleteChatAction{}
4037
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
4440
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4038
4441
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4039
4442
  ms.StoreMessageInfo(mi)
4040
4443
  }
@@ -4046,7 +4449,7 @@ func (x *DeleteChatAction) String() string {
4046
4449
  func (*DeleteChatAction) ProtoMessage() {}
4047
4450
 
4048
4451
  func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
4049
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
4452
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4050
4453
  if x != nil {
4051
4454
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4052
4455
  if ms.LoadMessageInfo() == nil {
@@ -4059,7 +4462,7 @@ func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
4059
4462
 
4060
4463
  // Deprecated: Use DeleteChatAction.ProtoReflect.Descriptor instead.
4061
4464
  func (*DeleteChatAction) Descriptor() ([]byte, []int) {
4062
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{49}
4465
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{55}
4063
4466
  }
4064
4467
 
4065
4468
  func (x *DeleteChatAction) GetMessageRange() *SyncActionMessageRange {
@@ -4078,7 +4481,7 @@ type ClearChatAction struct {
4078
4481
 
4079
4482
  func (x *ClearChatAction) Reset() {
4080
4483
  *x = ClearChatAction{}
4081
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
4484
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4082
4485
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4083
4486
  ms.StoreMessageInfo(mi)
4084
4487
  }
@@ -4090,7 +4493,7 @@ func (x *ClearChatAction) String() string {
4090
4493
  func (*ClearChatAction) ProtoMessage() {}
4091
4494
 
4092
4495
  func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
4093
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
4496
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4094
4497
  if x != nil {
4095
4498
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4096
4499
  if ms.LoadMessageInfo() == nil {
@@ -4103,7 +4506,7 @@ func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
4103
4506
 
4104
4507
  // Deprecated: Use ClearChatAction.ProtoReflect.Descriptor instead.
4105
4508
  func (*ClearChatAction) Descriptor() ([]byte, []int) {
4106
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{50}
4509
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{56}
4107
4510
  }
4108
4511
 
4109
4512
  func (x *ClearChatAction) GetMessageRange() *SyncActionMessageRange {
@@ -4123,7 +4526,7 @@ type MarkChatAsReadAction struct {
4123
4526
 
4124
4527
  func (x *MarkChatAsReadAction) Reset() {
4125
4528
  *x = MarkChatAsReadAction{}
4126
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
4529
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4127
4530
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4128
4531
  ms.StoreMessageInfo(mi)
4129
4532
  }
@@ -4135,7 +4538,7 @@ func (x *MarkChatAsReadAction) String() string {
4135
4538
  func (*MarkChatAsReadAction) ProtoMessage() {}
4136
4539
 
4137
4540
  func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
4138
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
4541
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4139
4542
  if x != nil {
4140
4543
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4141
4544
  if ms.LoadMessageInfo() == nil {
@@ -4148,7 +4551,7 @@ func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
4148
4551
 
4149
4552
  // Deprecated: Use MarkChatAsReadAction.ProtoReflect.Descriptor instead.
4150
4553
  func (*MarkChatAsReadAction) Descriptor() ([]byte, []int) {
4151
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{51}
4554
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{57}
4152
4555
  }
4153
4556
 
4154
4557
  func (x *MarkChatAsReadAction) GetRead() bool {
@@ -4175,7 +4578,7 @@ type DeleteMessageForMeAction struct {
4175
4578
 
4176
4579
  func (x *DeleteMessageForMeAction) Reset() {
4177
4580
  *x = DeleteMessageForMeAction{}
4178
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
4581
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4179
4582
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4180
4583
  ms.StoreMessageInfo(mi)
4181
4584
  }
@@ -4187,7 +4590,7 @@ func (x *DeleteMessageForMeAction) String() string {
4187
4590
  func (*DeleteMessageForMeAction) ProtoMessage() {}
4188
4591
 
4189
4592
  func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
4190
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
4593
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4191
4594
  if x != nil {
4192
4595
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4193
4596
  if ms.LoadMessageInfo() == nil {
@@ -4200,7 +4603,7 @@ func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
4200
4603
 
4201
4604
  // Deprecated: Use DeleteMessageForMeAction.ProtoReflect.Descriptor instead.
4202
4605
  func (*DeleteMessageForMeAction) Descriptor() ([]byte, []int) {
4203
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{52}
4606
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{58}
4204
4607
  }
4205
4608
 
4206
4609
  func (x *DeleteMessageForMeAction) GetDeleteMedia() bool {
@@ -4227,7 +4630,7 @@ type ArchiveChatAction struct {
4227
4630
 
4228
4631
  func (x *ArchiveChatAction) Reset() {
4229
4632
  *x = ArchiveChatAction{}
4230
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
4633
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4231
4634
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4232
4635
  ms.StoreMessageInfo(mi)
4233
4636
  }
@@ -4239,7 +4642,7 @@ func (x *ArchiveChatAction) String() string {
4239
4642
  func (*ArchiveChatAction) ProtoMessage() {}
4240
4643
 
4241
4644
  func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
4242
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
4645
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4243
4646
  if x != nil {
4244
4647
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4245
4648
  if ms.LoadMessageInfo() == nil {
@@ -4252,7 +4655,7 @@ func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
4252
4655
 
4253
4656
  // Deprecated: Use ArchiveChatAction.ProtoReflect.Descriptor instead.
4254
4657
  func (*ArchiveChatAction) Descriptor() ([]byte, []int) {
4255
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{53}
4658
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{59}
4256
4659
  }
4257
4660
 
4258
4661
  func (x *ArchiveChatAction) GetArchived() bool {
@@ -4278,7 +4681,7 @@ type RecentEmojiWeightsAction struct {
4278
4681
 
4279
4682
  func (x *RecentEmojiWeightsAction) Reset() {
4280
4683
  *x = RecentEmojiWeightsAction{}
4281
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
4684
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4282
4685
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4283
4686
  ms.StoreMessageInfo(mi)
4284
4687
  }
@@ -4290,7 +4693,7 @@ func (x *RecentEmojiWeightsAction) String() string {
4290
4693
  func (*RecentEmojiWeightsAction) ProtoMessage() {}
4291
4694
 
4292
4695
  func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
4293
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
4696
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4294
4697
  if x != nil {
4295
4698
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4296
4699
  if ms.LoadMessageInfo() == nil {
@@ -4303,7 +4706,7 @@ func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
4303
4706
 
4304
4707
  // Deprecated: Use RecentEmojiWeightsAction.ProtoReflect.Descriptor instead.
4305
4708
  func (*RecentEmojiWeightsAction) Descriptor() ([]byte, []int) {
4306
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{54}
4709
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{60}
4307
4710
  }
4308
4711
 
4309
4712
  func (x *RecentEmojiWeightsAction) GetWeights() []*RecentEmojiWeight {
@@ -4322,7 +4725,7 @@ type LabelAssociationAction struct {
4322
4725
 
4323
4726
  func (x *LabelAssociationAction) Reset() {
4324
4727
  *x = LabelAssociationAction{}
4325
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4728
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
4326
4729
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4327
4730
  ms.StoreMessageInfo(mi)
4328
4731
  }
@@ -4334,7 +4737,7 @@ func (x *LabelAssociationAction) String() string {
4334
4737
  func (*LabelAssociationAction) ProtoMessage() {}
4335
4738
 
4336
4739
  func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
4337
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4740
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
4338
4741
  if x != nil {
4339
4742
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4340
4743
  if ms.LoadMessageInfo() == nil {
@@ -4347,7 +4750,7 @@ func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
4347
4750
 
4348
4751
  // Deprecated: Use LabelAssociationAction.ProtoReflect.Descriptor instead.
4349
4752
  func (*LabelAssociationAction) Descriptor() ([]byte, []int) {
4350
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{55}
4753
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{61}
4351
4754
  }
4352
4755
 
4353
4756
  func (x *LabelAssociationAction) GetLabeled() bool {
@@ -4370,7 +4773,7 @@ type QuickReplyAction struct {
4370
4773
 
4371
4774
  func (x *QuickReplyAction) Reset() {
4372
4775
  *x = QuickReplyAction{}
4373
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4776
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
4374
4777
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4375
4778
  ms.StoreMessageInfo(mi)
4376
4779
  }
@@ -4382,7 +4785,7 @@ func (x *QuickReplyAction) String() string {
4382
4785
  func (*QuickReplyAction) ProtoMessage() {}
4383
4786
 
4384
4787
  func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
4385
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4788
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
4386
4789
  if x != nil {
4387
4790
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4388
4791
  if ms.LoadMessageInfo() == nil {
@@ -4395,7 +4798,7 @@ func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
4395
4798
 
4396
4799
  // Deprecated: Use QuickReplyAction.ProtoReflect.Descriptor instead.
4397
4800
  func (*QuickReplyAction) Descriptor() ([]byte, []int) {
4398
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{56}
4801
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{62}
4399
4802
  }
4400
4803
 
4401
4804
  func (x *QuickReplyAction) GetShortcut() string {
@@ -4442,7 +4845,7 @@ type LocaleSetting struct {
4442
4845
 
4443
4846
  func (x *LocaleSetting) Reset() {
4444
4847
  *x = LocaleSetting{}
4445
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4848
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
4446
4849
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4447
4850
  ms.StoreMessageInfo(mi)
4448
4851
  }
@@ -4454,7 +4857,7 @@ func (x *LocaleSetting) String() string {
4454
4857
  func (*LocaleSetting) ProtoMessage() {}
4455
4858
 
4456
4859
  func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
4457
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4860
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
4458
4861
  if x != nil {
4459
4862
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4460
4863
  if ms.LoadMessageInfo() == nil {
@@ -4467,7 +4870,7 @@ func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
4467
4870
 
4468
4871
  // Deprecated: Use LocaleSetting.ProtoReflect.Descriptor instead.
4469
4872
  func (*LocaleSetting) Descriptor() ([]byte, []int) {
4470
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{57}
4873
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{63}
4471
4874
  }
4472
4875
 
4473
4876
  func (x *LocaleSetting) GetLocale() string {
@@ -4486,7 +4889,7 @@ type PushNameSetting struct {
4486
4889
 
4487
4890
  func (x *PushNameSetting) Reset() {
4488
4891
  *x = PushNameSetting{}
4489
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4892
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
4490
4893
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4491
4894
  ms.StoreMessageInfo(mi)
4492
4895
  }
@@ -4498,7 +4901,7 @@ func (x *PushNameSetting) String() string {
4498
4901
  func (*PushNameSetting) ProtoMessage() {}
4499
4902
 
4500
4903
  func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
4501
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4904
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
4502
4905
  if x != nil {
4503
4906
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4504
4907
  if ms.LoadMessageInfo() == nil {
@@ -4511,7 +4914,7 @@ func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
4511
4914
 
4512
4915
  // Deprecated: Use PushNameSetting.ProtoReflect.Descriptor instead.
4513
4916
  func (*PushNameSetting) Descriptor() ([]byte, []int) {
4514
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{58}
4917
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{64}
4515
4918
  }
4516
4919
 
4517
4920
  func (x *PushNameSetting) GetName() string {
@@ -4530,7 +4933,7 @@ type SecurityNotificationSetting struct {
4530
4933
 
4531
4934
  func (x *SecurityNotificationSetting) Reset() {
4532
4935
  *x = SecurityNotificationSetting{}
4533
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4936
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
4534
4937
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4535
4938
  ms.StoreMessageInfo(mi)
4536
4939
  }
@@ -4542,7 +4945,7 @@ func (x *SecurityNotificationSetting) String() string {
4542
4945
  func (*SecurityNotificationSetting) ProtoMessage() {}
4543
4946
 
4544
4947
  func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
4545
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4948
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
4546
4949
  if x != nil {
4547
4950
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4548
4951
  if ms.LoadMessageInfo() == nil {
@@ -4555,7 +4958,7 @@ func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
4555
4958
 
4556
4959
  // Deprecated: Use SecurityNotificationSetting.ProtoReflect.Descriptor instead.
4557
4960
  func (*SecurityNotificationSetting) Descriptor() ([]byte, []int) {
4558
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{59}
4961
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{65}
4559
4962
  }
4560
4963
 
4561
4964
  func (x *SecurityNotificationSetting) GetShowNotification() bool {
@@ -4574,7 +4977,7 @@ type PinAction struct {
4574
4977
 
4575
4978
  func (x *PinAction) Reset() {
4576
4979
  *x = PinAction{}
4577
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4980
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
4578
4981
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4579
4982
  ms.StoreMessageInfo(mi)
4580
4983
  }
@@ -4586,7 +4989,7 @@ func (x *PinAction) String() string {
4586
4989
  func (*PinAction) ProtoMessage() {}
4587
4990
 
4588
4991
  func (x *PinAction) ProtoReflect() protoreflect.Message {
4589
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4992
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
4590
4993
  if x != nil {
4591
4994
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4592
4995
  if ms.LoadMessageInfo() == nil {
@@ -4599,7 +5002,7 @@ func (x *PinAction) ProtoReflect() protoreflect.Message {
4599
5002
 
4600
5003
  // Deprecated: Use PinAction.ProtoReflect.Descriptor instead.
4601
5004
  func (*PinAction) Descriptor() ([]byte, []int) {
4602
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{60}
5005
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{66}
4603
5006
  }
4604
5007
 
4605
5008
  func (x *PinAction) GetPinned() bool {
@@ -4620,7 +5023,7 @@ type MuteAction struct {
4620
5023
 
4621
5024
  func (x *MuteAction) Reset() {
4622
5025
  *x = MuteAction{}
4623
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
5026
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[67]
4624
5027
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4625
5028
  ms.StoreMessageInfo(mi)
4626
5029
  }
@@ -4632,7 +5035,7 @@ func (x *MuteAction) String() string {
4632
5035
  func (*MuteAction) ProtoMessage() {}
4633
5036
 
4634
5037
  func (x *MuteAction) ProtoReflect() protoreflect.Message {
4635
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
5038
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[67]
4636
5039
  if x != nil {
4637
5040
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4638
5041
  if ms.LoadMessageInfo() == nil {
@@ -4645,7 +5048,7 @@ func (x *MuteAction) ProtoReflect() protoreflect.Message {
4645
5048
 
4646
5049
  // Deprecated: Use MuteAction.ProtoReflect.Descriptor instead.
4647
5050
  func (*MuteAction) Descriptor() ([]byte, []int) {
4648
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{61}
5051
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{67}
4649
5052
  }
4650
5053
 
4651
5054
  func (x *MuteAction) GetMuted() bool {
@@ -4683,7 +5086,7 @@ type ContactAction struct {
4683
5086
 
4684
5087
  func (x *ContactAction) Reset() {
4685
5088
  *x = ContactAction{}
4686
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
5089
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[68]
4687
5090
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4688
5091
  ms.StoreMessageInfo(mi)
4689
5092
  }
@@ -4695,7 +5098,7 @@ func (x *ContactAction) String() string {
4695
5098
  func (*ContactAction) ProtoMessage() {}
4696
5099
 
4697
5100
  func (x *ContactAction) ProtoReflect() protoreflect.Message {
4698
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
5101
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[68]
4699
5102
  if x != nil {
4700
5103
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4701
5104
  if ms.LoadMessageInfo() == nil {
@@ -4708,7 +5111,7 @@ func (x *ContactAction) ProtoReflect() protoreflect.Message {
4708
5111
 
4709
5112
  // Deprecated: Use ContactAction.ProtoReflect.Descriptor instead.
4710
5113
  func (*ContactAction) Descriptor() ([]byte, []int) {
4711
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{62}
5114
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{68}
4712
5115
  }
4713
5116
 
4714
5117
  func (x *ContactAction) GetFullName() string {
@@ -4762,7 +5165,7 @@ type StarAction struct {
4762
5165
 
4763
5166
  func (x *StarAction) Reset() {
4764
5167
  *x = StarAction{}
4765
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
5168
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[69]
4766
5169
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4767
5170
  ms.StoreMessageInfo(mi)
4768
5171
  }
@@ -4774,7 +5177,7 @@ func (x *StarAction) String() string {
4774
5177
  func (*StarAction) ProtoMessage() {}
4775
5178
 
4776
5179
  func (x *StarAction) ProtoReflect() protoreflect.Message {
4777
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
5180
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[69]
4778
5181
  if x != nil {
4779
5182
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4780
5183
  if ms.LoadMessageInfo() == nil {
@@ -4787,7 +5190,7 @@ func (x *StarAction) ProtoReflect() protoreflect.Message {
4787
5190
 
4788
5191
  // Deprecated: Use StarAction.ProtoReflect.Descriptor instead.
4789
5192
  func (*StarAction) Descriptor() ([]byte, []int) {
4790
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{63}
5193
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{69}
4791
5194
  }
4792
5195
 
4793
5196
  func (x *StarAction) GetStarred() bool {
@@ -4809,7 +5212,7 @@ type SyncActionData struct {
4809
5212
 
4810
5213
  func (x *SyncActionData) Reset() {
4811
5214
  *x = SyncActionData{}
4812
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
5215
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[70]
4813
5216
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4814
5217
  ms.StoreMessageInfo(mi)
4815
5218
  }
@@ -4821,7 +5224,7 @@ func (x *SyncActionData) String() string {
4821
5224
  func (*SyncActionData) ProtoMessage() {}
4822
5225
 
4823
5226
  func (x *SyncActionData) ProtoReflect() protoreflect.Message {
4824
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
5227
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[70]
4825
5228
  if x != nil {
4826
5229
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4827
5230
  if ms.LoadMessageInfo() == nil {
@@ -4834,7 +5237,7 @@ func (x *SyncActionData) ProtoReflect() protoreflect.Message {
4834
5237
 
4835
5238
  // Deprecated: Use SyncActionData.ProtoReflect.Descriptor instead.
4836
5239
  func (*SyncActionData) Descriptor() ([]byte, []int) {
4837
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{64}
5240
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{70}
4838
5241
  }
4839
5242
 
4840
5243
  func (x *SyncActionData) GetIndex() []byte {
@@ -4875,7 +5278,7 @@ type CallLogRecord_ParticipantInfo struct {
4875
5278
 
4876
5279
  func (x *CallLogRecord_ParticipantInfo) Reset() {
4877
5280
  *x = CallLogRecord_ParticipantInfo{}
4878
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
5281
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[71]
4879
5282
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4880
5283
  ms.StoreMessageInfo(mi)
4881
5284
  }
@@ -4887,7 +5290,7 @@ func (x *CallLogRecord_ParticipantInfo) String() string {
4887
5290
  func (*CallLogRecord_ParticipantInfo) ProtoMessage() {}
4888
5291
 
4889
5292
  func (x *CallLogRecord_ParticipantInfo) ProtoReflect() protoreflect.Message {
4890
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
5293
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[71]
4891
5294
  if x != nil {
4892
5295
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4893
5296
  if ms.LoadMessageInfo() == nil {
@@ -4926,7 +5329,7 @@ type FavoritesAction_Favorite struct {
4926
5329
 
4927
5330
  func (x *FavoritesAction_Favorite) Reset() {
4928
5331
  *x = FavoritesAction_Favorite{}
4929
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
5332
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[72]
4930
5333
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4931
5334
  ms.StoreMessageInfo(mi)
4932
5335
  }
@@ -4938,7 +5341,7 @@ func (x *FavoritesAction_Favorite) String() string {
4938
5341
  func (*FavoritesAction_Favorite) ProtoMessage() {}
4939
5342
 
4940
5343
  func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
4941
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
5344
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[72]
4942
5345
  if x != nil {
4943
5346
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4944
5347
  if ms.LoadMessageInfo() == nil {
@@ -4951,7 +5354,7 @@ func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
4951
5354
 
4952
5355
  // Deprecated: Use FavoritesAction_Favorite.ProtoReflect.Descriptor instead.
4953
5356
  func (*FavoritesAction_Favorite) Descriptor() ([]byte, []int) {
4954
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16, 0}
5357
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20, 0}
4955
5358
  }
4956
5359
 
4957
5360
  func (x *FavoritesAction_Favorite) GetID() string {
@@ -5019,7 +5422,13 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
5019
5422
  "\x06FAILED\x10\b\x12\r\n" +
5020
5423
  "\tABANDONED\x10\t\x12\v\n" +
5021
5424
  "\aONGOING\x10\n" +
5022
- "\"\xae\x01\n" +
5425
+ "\"\xd6\x01\n" +
5426
+ "\x1cMaibaAIFeaturesControlAction\x12i\n" +
5427
+ "\x0faiFeatureStatus\x18\x01 \x01(\x0e2?.WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatusR\x0faiFeatureStatus\"K\n" +
5428
+ "\x14MaibaAIFeatureStatus\x12\v\n" +
5429
+ "\aENABLED\x10\x00\x12\x18\n" +
5430
+ "\x14ENABLED_HAS_LEARNING\x10\x01\x12\f\n" +
5431
+ "\bDISABLED\x10\x02\"\xae\x01\n" +
5023
5432
  "\x10PaymentTosAction\x12R\n" +
5024
5433
  "\rpaymentNotice\x18\x01 \x02(\x0e2,.WASyncAction.PaymentTosAction.PaymentNoticeR\rpaymentNotice\x12\x1a\n" +
5025
5434
  "\baccepted\x18\x02 \x02(\bR\baccepted\"*\n" +
@@ -5134,7 +5543,7 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
5134
5543
  "\x06WEAROS\x10\b\"A\n" +
5135
5544
  "\x11RecentEmojiWeight\x12\x14\n" +
5136
5545
  "\x05emoji\x18\x01 \x01(\tR\x05emoji\x12\x16\n" +
5137
- "\x06weight\x18\x02 \x01(\x02R\x06weight\"\xf8(\n" +
5546
+ "\x06weight\x18\x02 \x01(\x02R\x06weight\"\xb5-\n" +
5138
5547
  "\x0fSyncActionValue\x12\x1c\n" +
5139
5548
  "\ttimestamp\x18\x01 \x01(\x03R\ttimestamp\x128\n" +
5140
5549
  "\n" +
@@ -5198,7 +5607,21 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
5198
5607
  " ctwaPerCustomerDataSharingAction\x18> \x01(\v2..WASyncAction.CtwaPerCustomerDataSharingActionR ctwaPerCustomerDataSharingAction\x12J\n" +
5199
5608
  "\x10paymentTosAction\x18? \x01(\v2\x1e.WASyncAction.PaymentTosActionR\x10paymentTosAction\x12\xbc\x01\n" +
5200
5609
  "6privacySettingChannelsPersonalisedRecommendationAction\x18@ \x01(\v2D.WASyncAction.PrivacySettingChannelsPersonalisedRecommendationActionR6privacySettingChannelsPersonalisedRecommendationAction\x12\x80\x01\n" +
5201
- "\"businessBroadcastAssociationAction\x18A \x01(\v20.WASyncAction.BusinessBroadcastAssociationActionR\"businessBroadcastAssociationAction\">\n" +
5610
+ "\"businessBroadcastAssociationAction\x18A \x01(\v20.WASyncAction.BusinessBroadcastAssociationActionR\"businessBroadcastAssociationAction\x12n\n" +
5611
+ "\x1cdetectedOutcomesStatusAction\x18B \x01(\v2*.WASyncAction.DetectedOutcomesStatusActionR\x1cdetectedOutcomesStatusAction\x12n\n" +
5612
+ "\x1cmaibaAiFeaturesControlAction\x18D \x01(\v2*.WASyncAction.MaibaAIFeaturesControlActionR\x1cmaibaAiFeaturesControlAction\x12k\n" +
5613
+ "\x1bbusinessBroadcastListAction\x18E \x01(\v2).WASyncAction.BusinessBroadcastListActionR\x1bbusinessBroadcastListAction\x12M\n" +
5614
+ "\x11musicUserIDAction\x18F \x01(\v2\x1f.WASyncAction.MusicUserIdActionR\x11musicUserIDAction\x12\x9e\x01\n" +
5615
+ ",statusPostOptInNotificationPreferencesAction\x18G \x01(\v2:.WASyncAction.StatusPostOptInNotificationPreferencesActionR,statusPostOptInNotificationPreferencesAction\"H\n" +
5616
+ ",StatusPostOptInNotificationPreferencesAction\x12\x18\n" +
5617
+ "\aenabled\x18\x01 \x01(\bR\aenabled\"H\n" +
5618
+ "\x18BroadcastListParticipant\x12\x16\n" +
5619
+ "\x06lidJID\x18\x01 \x02(\tR\x06lidJID\x12\x14\n" +
5620
+ "\x05pnJID\x18\x02 \x01(\tR\x05pnJID\"\x9f\x01\n" +
5621
+ "\x1bBusinessBroadcastListAction\x12\x18\n" +
5622
+ "\adeleted\x18\x01 \x01(\bR\adeleted\x12J\n" +
5623
+ "\fparticipants\x18\x02 \x03(\v2&.WASyncAction.BroadcastListParticipantR\fparticipants\x12\x1a\n" +
5624
+ "\blistName\x18\x03 \x01(\tR\blistName\">\n" +
5202
5625
  "\"BusinessBroadcastAssociationAction\x12\x18\n" +
5203
5626
  "\adeleted\x18\x01 \x01(\bR\adeleted\"t\n" +
5204
5627
  " CtwaPerCustomerDataSharingAction\x12P\n" +
@@ -5242,10 +5665,14 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
5242
5665
  "isIncoming\x18\x02 \x01(\bR\n" +
5243
5666
  "isIncoming\"1\n" +
5244
5667
  "\x17BotWelcomeRequestAction\x12\x16\n" +
5245
- "\x06isSent\x18\x01 \x01(\bR\x06isSent\"R\n" +
5668
+ "\x06isSent\x18\x01 \x01(\bR\x06isSent\"5\n" +
5669
+ "\x11MusicUserIdAction\x12 \n" +
5670
+ "\vmusicUserID\x18\x01 \x01(\tR\vmusicUserID\"R\n" +
5246
5671
  "\rCallLogAction\x12A\n" +
5247
5672
  "\rcallLogRecord\x18\x01 \x01(\v2\x1b.WASyncAction.CallLogRecordR\rcallLogRecord\";\n" +
5248
5673
  "\x1bPrivacySettingRelayAllCalls\x12\x1c\n" +
5674
+ "\tisEnabled\x18\x01 \x01(\bR\tisEnabled\"<\n" +
5675
+ "\x1cDetectedOutcomesStatusAction\x12\x1c\n" +
5249
5676
  "\tisEnabled\x18\x01 \x01(\bR\tisEnabled\"1\n" +
5250
5677
  "\x15ExternalWebBetaAction\x12\x18\n" +
5251
5678
  "\aisOptIn\x18\x01 \x01(\bR\aisOptIn\"E\n" +
@@ -5258,7 +5685,7 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
5258
5685
  "chatOpened\x18\x01 \x01(\bR\n" +
5259
5686
  "chatOpened\"<\n" +
5260
5687
  "\x14ChatAssignmentAction\x12$\n" +
5261
- "\rdeviceAgentID\x18\x01 \x01(\tR\rdeviceAgentID\"\xcd\x02\n" +
5688
+ "\rdeviceAgentID\x18\x01 \x01(\tR\rdeviceAgentID\"\x95\x03\n" +
5262
5689
  "\rStickerAction\x12\x10\n" +
5263
5690
  "\x03URL\x18\x01 \x01(\tR\x03URL\x12$\n" +
5264
5691
  "\rfileEncSHA256\x18\x02 \x01(\fR\rfileEncSHA256\x12\x1a\n" +
@@ -5277,7 +5704,9 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
5277
5704
  "isFavorite\x12\"\n" +
5278
5705
  "\fdeviceIDHint\x18\n" +
5279
5706
  " \x01(\rR\fdeviceIDHint\x12\x1a\n" +
5280
- "\bisLottie\x18\v \x01(\bR\bisLottie\"I\n" +
5707
+ "\bisLottie\x18\v \x01(\bR\bisLottie\x12\x1c\n" +
5708
+ "\timageHash\x18\f \x01(\tR\timageHash\x12(\n" +
5709
+ "\x0fisAvatarSticker\x18\r \x01(\bR\x0fisAvatarSticker\"I\n" +
5281
5710
  "\x19RemoveRecentStickerAction\x12,\n" +
5282
5711
  "\x11lastStickerSentTS\x18\x01 \x01(\x03R\x11lastStickerSentTS\"0\n" +
5283
5712
  "\x14PrimaryVersionAction\x12\x18\n" +
@@ -5375,184 +5804,198 @@ func file_waSyncAction_WASyncAction_proto_rawDescGZIP() []byte {
5375
5804
  return file_waSyncAction_WASyncAction_proto_rawDescData
5376
5805
  }
5377
5806
 
5378
- var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo, 13)
5379
- var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo, 67)
5807
+ var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo, 14)
5808
+ var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo, 73)
5380
5809
  var file_waSyncAction_WASyncAction_proto_goTypes = []any{
5381
5810
  (CallLogRecord_CallType)(0), // 0: WASyncAction.CallLogRecord.CallType
5382
5811
  (CallLogRecord_SilenceReason)(0), // 1: WASyncAction.CallLogRecord.SilenceReason
5383
5812
  (CallLogRecord_CallResult)(0), // 2: WASyncAction.CallLogRecord.CallResult
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
5813
+ (MaibaAIFeaturesControlAction_MaibaAIFeatureStatus)(0), // 3: WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatus
5814
+ (PaymentTosAction_PaymentNotice)(0), // 4: WASyncAction.PaymentTosAction.PaymentNotice
5815
+ (NotificationActivitySettingAction_NotificationActivitySetting)(0), // 5: WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
5816
+ (WaffleAccountLinkStateAction_AccountLinkState)(0), // 6: WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
5817
+ (MerchantPaymentPartnerAction_Status)(0), // 7: WASyncAction.MerchantPaymentPartnerAction.Status
5818
+ (NoteEditAction_NoteType)(0), // 8: WASyncAction.NoteEditAction.NoteType
5819
+ (StatusPrivacyAction_StatusDistributionMode)(0), // 9: WASyncAction.StatusPrivacyAction.StatusDistributionMode
5820
+ (MarketingMessageAction_MarketingMessagePrototypeType)(0), // 10: WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
5821
+ (UsernameChatStartModeAction_ChatStartMode)(0), // 11: WASyncAction.UsernameChatStartModeAction.ChatStartMode
5822
+ (LabelEditAction_ListType)(0), // 12: WASyncAction.LabelEditAction.ListType
5823
+ (PatchDebugData_Platform)(0), // 13: WASyncAction.PatchDebugData.Platform
5824
+ (*CallLogRecord)(nil), // 14: WASyncAction.CallLogRecord
5825
+ (*MaibaAIFeaturesControlAction)(nil), // 15: WASyncAction.MaibaAIFeaturesControlAction
5826
+ (*PaymentTosAction)(nil), // 16: WASyncAction.PaymentTosAction
5827
+ (*NotificationActivitySettingAction)(nil), // 17: WASyncAction.NotificationActivitySettingAction
5828
+ (*WaffleAccountLinkStateAction)(nil), // 18: WASyncAction.WaffleAccountLinkStateAction
5829
+ (*MerchantPaymentPartnerAction)(nil), // 19: WASyncAction.MerchantPaymentPartnerAction
5830
+ (*NoteEditAction)(nil), // 20: WASyncAction.NoteEditAction
5831
+ (*StatusPrivacyAction)(nil), // 21: WASyncAction.StatusPrivacyAction
5832
+ (*MarketingMessageAction)(nil), // 22: WASyncAction.MarketingMessageAction
5833
+ (*UsernameChatStartModeAction)(nil), // 23: WASyncAction.UsernameChatStartModeAction
5834
+ (*LabelEditAction)(nil), // 24: WASyncAction.LabelEditAction
5835
+ (*PatchDebugData)(nil), // 25: WASyncAction.PatchDebugData
5836
+ (*RecentEmojiWeight)(nil), // 26: WASyncAction.RecentEmojiWeight
5837
+ (*SyncActionValue)(nil), // 27: WASyncAction.SyncActionValue
5838
+ (*StatusPostOptInNotificationPreferencesAction)(nil), // 28: WASyncAction.StatusPostOptInNotificationPreferencesAction
5839
+ (*BroadcastListParticipant)(nil), // 29: WASyncAction.BroadcastListParticipant
5840
+ (*BusinessBroadcastListAction)(nil), // 30: WASyncAction.BusinessBroadcastListAction
5841
+ (*BusinessBroadcastAssociationAction)(nil), // 31: WASyncAction.BusinessBroadcastAssociationAction
5842
+ (*CtwaPerCustomerDataSharingAction)(nil), // 32: WASyncAction.CtwaPerCustomerDataSharingAction
5843
+ (*LidContactAction)(nil), // 33: WASyncAction.LidContactAction
5844
+ (*FavoritesAction)(nil), // 34: WASyncAction.FavoritesAction
5845
+ (*PrivacySettingChannelsPersonalisedRecommendationAction)(nil), // 35: WASyncAction.PrivacySettingChannelsPersonalisedRecommendationAction
5846
+ (*PrivacySettingDisableLinkPreviewsAction)(nil), // 36: WASyncAction.PrivacySettingDisableLinkPreviewsAction
5847
+ (*WamoUserIdentifierAction)(nil), // 37: WASyncAction.WamoUserIdentifierAction
5848
+ (*LockChatAction)(nil), // 38: WASyncAction.LockChatAction
5849
+ (*CustomPaymentMethodsAction)(nil), // 39: WASyncAction.CustomPaymentMethodsAction
5850
+ (*CustomPaymentMethod)(nil), // 40: WASyncAction.CustomPaymentMethod
5851
+ (*CustomPaymentMethodMetadata)(nil), // 41: WASyncAction.CustomPaymentMethodMetadata
5852
+ (*PaymentInfoAction)(nil), // 42: WASyncAction.PaymentInfoAction
5853
+ (*LabelReorderingAction)(nil), // 43: WASyncAction.LabelReorderingAction
5854
+ (*DeleteIndividualCallLogAction)(nil), // 44: WASyncAction.DeleteIndividualCallLogAction
5855
+ (*BotWelcomeRequestAction)(nil), // 45: WASyncAction.BotWelcomeRequestAction
5856
+ (*MusicUserIdAction)(nil), // 46: WASyncAction.MusicUserIdAction
5857
+ (*CallLogAction)(nil), // 47: WASyncAction.CallLogAction
5858
+ (*PrivacySettingRelayAllCalls)(nil), // 48: WASyncAction.PrivacySettingRelayAllCalls
5859
+ (*DetectedOutcomesStatusAction)(nil), // 49: WASyncAction.DetectedOutcomesStatusAction
5860
+ (*ExternalWebBetaAction)(nil), // 50: WASyncAction.ExternalWebBetaAction
5861
+ (*MarketingMessageBroadcastAction)(nil), // 51: WASyncAction.MarketingMessageBroadcastAction
5862
+ (*PnForLidChatAction)(nil), // 52: WASyncAction.PnForLidChatAction
5863
+ (*ChatAssignmentOpenedStatusAction)(nil), // 53: WASyncAction.ChatAssignmentOpenedStatusAction
5864
+ (*ChatAssignmentAction)(nil), // 54: WASyncAction.ChatAssignmentAction
5865
+ (*StickerAction)(nil), // 55: WASyncAction.StickerAction
5866
+ (*RemoveRecentStickerAction)(nil), // 56: WASyncAction.RemoveRecentStickerAction
5867
+ (*PrimaryVersionAction)(nil), // 57: WASyncAction.PrimaryVersionAction
5868
+ (*NuxAction)(nil), // 58: WASyncAction.NuxAction
5869
+ (*TimeFormatAction)(nil), // 59: WASyncAction.TimeFormatAction
5870
+ (*UserStatusMuteAction)(nil), // 60: WASyncAction.UserStatusMuteAction
5871
+ (*SubscriptionAction)(nil), // 61: WASyncAction.SubscriptionAction
5872
+ (*AgentAction)(nil), // 62: WASyncAction.AgentAction
5873
+ (*AndroidUnsupportedActions)(nil), // 63: WASyncAction.AndroidUnsupportedActions
5874
+ (*PrimaryFeature)(nil), // 64: WASyncAction.PrimaryFeature
5875
+ (*KeyExpiration)(nil), // 65: WASyncAction.KeyExpiration
5876
+ (*SyncActionMessage)(nil), // 66: WASyncAction.SyncActionMessage
5877
+ (*SyncActionMessageRange)(nil), // 67: WASyncAction.SyncActionMessageRange
5878
+ (*UnarchiveChatsSetting)(nil), // 68: WASyncAction.UnarchiveChatsSetting
5879
+ (*DeleteChatAction)(nil), // 69: WASyncAction.DeleteChatAction
5880
+ (*ClearChatAction)(nil), // 70: WASyncAction.ClearChatAction
5881
+ (*MarkChatAsReadAction)(nil), // 71: WASyncAction.MarkChatAsReadAction
5882
+ (*DeleteMessageForMeAction)(nil), // 72: WASyncAction.DeleteMessageForMeAction
5883
+ (*ArchiveChatAction)(nil), // 73: WASyncAction.ArchiveChatAction
5884
+ (*RecentEmojiWeightsAction)(nil), // 74: WASyncAction.RecentEmojiWeightsAction
5885
+ (*LabelAssociationAction)(nil), // 75: WASyncAction.LabelAssociationAction
5886
+ (*QuickReplyAction)(nil), // 76: WASyncAction.QuickReplyAction
5887
+ (*LocaleSetting)(nil), // 77: WASyncAction.LocaleSetting
5888
+ (*PushNameSetting)(nil), // 78: WASyncAction.PushNameSetting
5889
+ (*SecurityNotificationSetting)(nil), // 79: WASyncAction.SecurityNotificationSetting
5890
+ (*PinAction)(nil), // 80: WASyncAction.PinAction
5891
+ (*MuteAction)(nil), // 81: WASyncAction.MuteAction
5892
+ (*ContactAction)(nil), // 82: WASyncAction.ContactAction
5893
+ (*StarAction)(nil), // 83: WASyncAction.StarAction
5894
+ (*SyncActionData)(nil), // 84: WASyncAction.SyncActionData
5895
+ (*CallLogRecord_ParticipantInfo)(nil), // 85: WASyncAction.CallLogRecord.ParticipantInfo
5896
+ (*FavoritesAction_Favorite)(nil), // 86: WASyncAction.FavoritesAction.Favorite
5897
+ (*waChatLockSettings.ChatLockSettings)(nil), // 87: WAProtobufsChatLockSettings.ChatLockSettings
5898
+ (*waDeviceCapabilities.DeviceCapabilities)(nil), // 88: WAProtobufsDeviceCapabilities.DeviceCapabilities
5899
+ (*waCommon.MessageKey)(nil), // 89: WACommon.MessageKey
5464
5900
  }
5465
5901
  var file_waSyncAction_WASyncAction_proto_depIdxs = []int32{
5466
5902
  2, // 0: WASyncAction.CallLogRecord.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
5467
5903
  1, // 1: WASyncAction.CallLogRecord.silenceReason:type_name -> WASyncAction.CallLogRecord.SilenceReason
5468
- 78, // 2: WASyncAction.CallLogRecord.participants:type_name -> WASyncAction.CallLogRecord.ParticipantInfo
5904
+ 85, // 2: WASyncAction.CallLogRecord.participants:type_name -> WASyncAction.CallLogRecord.ParticipantInfo
5469
5905
  0, // 3: WASyncAction.CallLogRecord.callType:type_name -> WASyncAction.CallLogRecord.CallType
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
5906
+ 3, // 4: WASyncAction.MaibaAIFeaturesControlAction.aiFeatureStatus:type_name -> WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatus
5907
+ 4, // 5: WASyncAction.PaymentTosAction.paymentNotice:type_name -> WASyncAction.PaymentTosAction.PaymentNotice
5908
+ 5, // 6: WASyncAction.NotificationActivitySettingAction.notificationActivitySetting:type_name -> WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
5909
+ 6, // 7: WASyncAction.WaffleAccountLinkStateAction.linkState:type_name -> WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
5910
+ 7, // 8: WASyncAction.MerchantPaymentPartnerAction.status:type_name -> WASyncAction.MerchantPaymentPartnerAction.Status
5911
+ 8, // 9: WASyncAction.NoteEditAction.type:type_name -> WASyncAction.NoteEditAction.NoteType
5912
+ 9, // 10: WASyncAction.StatusPrivacyAction.mode:type_name -> WASyncAction.StatusPrivacyAction.StatusDistributionMode
5913
+ 10, // 11: WASyncAction.MarketingMessageAction.type:type_name -> WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
5914
+ 11, // 12: WASyncAction.UsernameChatStartModeAction.chatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction.ChatStartMode
5915
+ 12, // 13: WASyncAction.LabelEditAction.type:type_name -> WASyncAction.LabelEditAction.ListType
5916
+ 13, // 14: WASyncAction.PatchDebugData.senderPlatform:type_name -> WASyncAction.PatchDebugData.Platform
5917
+ 83, // 15: WASyncAction.SyncActionValue.starAction:type_name -> WASyncAction.StarAction
5918
+ 82, // 16: WASyncAction.SyncActionValue.contactAction:type_name -> WASyncAction.ContactAction
5919
+ 81, // 17: WASyncAction.SyncActionValue.muteAction:type_name -> WASyncAction.MuteAction
5920
+ 80, // 18: WASyncAction.SyncActionValue.pinAction:type_name -> WASyncAction.PinAction
5921
+ 79, // 19: WASyncAction.SyncActionValue.securityNotificationSetting:type_name -> WASyncAction.SecurityNotificationSetting
5922
+ 78, // 20: WASyncAction.SyncActionValue.pushNameSetting:type_name -> WASyncAction.PushNameSetting
5923
+ 76, // 21: WASyncAction.SyncActionValue.quickReplyAction:type_name -> WASyncAction.QuickReplyAction
5924
+ 74, // 22: WASyncAction.SyncActionValue.recentEmojiWeightsAction:type_name -> WASyncAction.RecentEmojiWeightsAction
5925
+ 24, // 23: WASyncAction.SyncActionValue.labelEditAction:type_name -> WASyncAction.LabelEditAction
5926
+ 75, // 24: WASyncAction.SyncActionValue.labelAssociationAction:type_name -> WASyncAction.LabelAssociationAction
5927
+ 77, // 25: WASyncAction.SyncActionValue.localeSetting:type_name -> WASyncAction.LocaleSetting
5928
+ 73, // 26: WASyncAction.SyncActionValue.archiveChatAction:type_name -> WASyncAction.ArchiveChatAction
5929
+ 72, // 27: WASyncAction.SyncActionValue.deleteMessageForMeAction:type_name -> WASyncAction.DeleteMessageForMeAction
5930
+ 65, // 28: WASyncAction.SyncActionValue.keyExpiration:type_name -> WASyncAction.KeyExpiration
5931
+ 71, // 29: WASyncAction.SyncActionValue.markChatAsReadAction:type_name -> WASyncAction.MarkChatAsReadAction
5932
+ 70, // 30: WASyncAction.SyncActionValue.clearChatAction:type_name -> WASyncAction.ClearChatAction
5933
+ 69, // 31: WASyncAction.SyncActionValue.deleteChatAction:type_name -> WASyncAction.DeleteChatAction
5934
+ 68, // 32: WASyncAction.SyncActionValue.unarchiveChatsSetting:type_name -> WASyncAction.UnarchiveChatsSetting
5935
+ 64, // 33: WASyncAction.SyncActionValue.primaryFeature:type_name -> WASyncAction.PrimaryFeature
5936
+ 63, // 34: WASyncAction.SyncActionValue.androidUnsupportedActions:type_name -> WASyncAction.AndroidUnsupportedActions
5937
+ 62, // 35: WASyncAction.SyncActionValue.agentAction:type_name -> WASyncAction.AgentAction
5938
+ 61, // 36: WASyncAction.SyncActionValue.subscriptionAction:type_name -> WASyncAction.SubscriptionAction
5939
+ 60, // 37: WASyncAction.SyncActionValue.userStatusMuteAction:type_name -> WASyncAction.UserStatusMuteAction
5940
+ 59, // 38: WASyncAction.SyncActionValue.timeFormatAction:type_name -> WASyncAction.TimeFormatAction
5941
+ 58, // 39: WASyncAction.SyncActionValue.nuxAction:type_name -> WASyncAction.NuxAction
5942
+ 57, // 40: WASyncAction.SyncActionValue.primaryVersionAction:type_name -> WASyncAction.PrimaryVersionAction
5943
+ 55, // 41: WASyncAction.SyncActionValue.stickerAction:type_name -> WASyncAction.StickerAction
5944
+ 56, // 42: WASyncAction.SyncActionValue.removeRecentStickerAction:type_name -> WASyncAction.RemoveRecentStickerAction
5945
+ 54, // 43: WASyncAction.SyncActionValue.chatAssignment:type_name -> WASyncAction.ChatAssignmentAction
5946
+ 53, // 44: WASyncAction.SyncActionValue.chatAssignmentOpenedStatus:type_name -> WASyncAction.ChatAssignmentOpenedStatusAction
5947
+ 52, // 45: WASyncAction.SyncActionValue.pnForLidChatAction:type_name -> WASyncAction.PnForLidChatAction
5948
+ 22, // 46: WASyncAction.SyncActionValue.marketingMessageAction:type_name -> WASyncAction.MarketingMessageAction
5949
+ 51, // 47: WASyncAction.SyncActionValue.marketingMessageBroadcastAction:type_name -> WASyncAction.MarketingMessageBroadcastAction
5950
+ 50, // 48: WASyncAction.SyncActionValue.externalWebBetaAction:type_name -> WASyncAction.ExternalWebBetaAction
5951
+ 48, // 49: WASyncAction.SyncActionValue.privacySettingRelayAllCalls:type_name -> WASyncAction.PrivacySettingRelayAllCalls
5952
+ 47, // 50: WASyncAction.SyncActionValue.callLogAction:type_name -> WASyncAction.CallLogAction
5953
+ 21, // 51: WASyncAction.SyncActionValue.statusPrivacy:type_name -> WASyncAction.StatusPrivacyAction
5954
+ 45, // 52: WASyncAction.SyncActionValue.botWelcomeRequestAction:type_name -> WASyncAction.BotWelcomeRequestAction
5955
+ 44, // 53: WASyncAction.SyncActionValue.deleteIndividualCallLog:type_name -> WASyncAction.DeleteIndividualCallLogAction
5956
+ 43, // 54: WASyncAction.SyncActionValue.labelReorderingAction:type_name -> WASyncAction.LabelReorderingAction
5957
+ 42, // 55: WASyncAction.SyncActionValue.paymentInfoAction:type_name -> WASyncAction.PaymentInfoAction
5958
+ 39, // 56: WASyncAction.SyncActionValue.customPaymentMethodsAction:type_name -> WASyncAction.CustomPaymentMethodsAction
5959
+ 38, // 57: WASyncAction.SyncActionValue.lockChatAction:type_name -> WASyncAction.LockChatAction
5960
+ 87, // 58: WASyncAction.SyncActionValue.chatLockSettings:type_name -> WAProtobufsChatLockSettings.ChatLockSettings
5961
+ 37, // 59: WASyncAction.SyncActionValue.wamoUserIdentifierAction:type_name -> WASyncAction.WamoUserIdentifierAction
5962
+ 36, // 60: WASyncAction.SyncActionValue.privacySettingDisableLinkPreviewsAction:type_name -> WASyncAction.PrivacySettingDisableLinkPreviewsAction
5963
+ 88, // 61: WASyncAction.SyncActionValue.deviceCapabilities:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities
5964
+ 20, // 62: WASyncAction.SyncActionValue.noteEditAction:type_name -> WASyncAction.NoteEditAction
5965
+ 34, // 63: WASyncAction.SyncActionValue.favoritesAction:type_name -> WASyncAction.FavoritesAction
5966
+ 19, // 64: WASyncAction.SyncActionValue.merchantPaymentPartnerAction:type_name -> WASyncAction.MerchantPaymentPartnerAction
5967
+ 18, // 65: WASyncAction.SyncActionValue.waffleAccountLinkStateAction:type_name -> WASyncAction.WaffleAccountLinkStateAction
5968
+ 23, // 66: WASyncAction.SyncActionValue.usernameChatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction
5969
+ 17, // 67: WASyncAction.SyncActionValue.notificationActivitySettingAction:type_name -> WASyncAction.NotificationActivitySettingAction
5970
+ 33, // 68: WASyncAction.SyncActionValue.lidContactAction:type_name -> WASyncAction.LidContactAction
5971
+ 32, // 69: WASyncAction.SyncActionValue.ctwaPerCustomerDataSharingAction:type_name -> WASyncAction.CtwaPerCustomerDataSharingAction
5972
+ 16, // 70: WASyncAction.SyncActionValue.paymentTosAction:type_name -> WASyncAction.PaymentTosAction
5973
+ 35, // 71: WASyncAction.SyncActionValue.privacySettingChannelsPersonalisedRecommendationAction:type_name -> WASyncAction.PrivacySettingChannelsPersonalisedRecommendationAction
5974
+ 31, // 72: WASyncAction.SyncActionValue.businessBroadcastAssociationAction:type_name -> WASyncAction.BusinessBroadcastAssociationAction
5975
+ 49, // 73: WASyncAction.SyncActionValue.detectedOutcomesStatusAction:type_name -> WASyncAction.DetectedOutcomesStatusAction
5976
+ 15, // 74: WASyncAction.SyncActionValue.maibaAiFeaturesControlAction:type_name -> WASyncAction.MaibaAIFeaturesControlAction
5977
+ 30, // 75: WASyncAction.SyncActionValue.businessBroadcastListAction:type_name -> WASyncAction.BusinessBroadcastListAction
5978
+ 46, // 76: WASyncAction.SyncActionValue.musicUserIDAction:type_name -> WASyncAction.MusicUserIdAction
5979
+ 28, // 77: WASyncAction.SyncActionValue.statusPostOptInNotificationPreferencesAction:type_name -> WASyncAction.StatusPostOptInNotificationPreferencesAction
5980
+ 29, // 78: WASyncAction.BusinessBroadcastListAction.participants:type_name -> WASyncAction.BroadcastListParticipant
5981
+ 86, // 79: WASyncAction.FavoritesAction.favorites:type_name -> WASyncAction.FavoritesAction.Favorite
5982
+ 40, // 80: WASyncAction.CustomPaymentMethodsAction.customPaymentMethods:type_name -> WASyncAction.CustomPaymentMethod
5983
+ 41, // 81: WASyncAction.CustomPaymentMethod.metadata:type_name -> WASyncAction.CustomPaymentMethodMetadata
5984
+ 14, // 82: WASyncAction.CallLogAction.callLogRecord:type_name -> WASyncAction.CallLogRecord
5985
+ 89, // 83: WASyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
5986
+ 66, // 84: WASyncAction.SyncActionMessageRange.messages:type_name -> WASyncAction.SyncActionMessage
5987
+ 67, // 85: WASyncAction.DeleteChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5988
+ 67, // 86: WASyncAction.ClearChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5989
+ 67, // 87: WASyncAction.MarkChatAsReadAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5990
+ 67, // 88: WASyncAction.ArchiveChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5991
+ 26, // 89: WASyncAction.RecentEmojiWeightsAction.weights:type_name -> WASyncAction.RecentEmojiWeight
5992
+ 27, // 90: WASyncAction.SyncActionData.value:type_name -> WASyncAction.SyncActionValue
5993
+ 2, // 91: WASyncAction.CallLogRecord.ParticipantInfo.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
5994
+ 92, // [92:92] is the sub-list for method output_type
5995
+ 92, // [92:92] is the sub-list for method input_type
5996
+ 92, // [92:92] is the sub-list for extension type_name
5997
+ 92, // [92:92] is the sub-list for extension extendee
5998
+ 0, // [0:92] is the sub-list for field type_name
5556
5999
  }
5557
6000
 
5558
6001
  func init() { file_waSyncAction_WASyncAction_proto_init() }
@@ -5565,8 +6008,8 @@ func file_waSyncAction_WASyncAction_proto_init() {
5565
6008
  File: protoimpl.DescBuilder{
5566
6009
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
5567
6010
  RawDescriptor: unsafe.Slice(unsafe.StringData(file_waSyncAction_WASyncAction_proto_rawDesc), len(file_waSyncAction_WASyncAction_proto_rawDesc)),
5568
- NumEnums: 13,
5569
- NumMessages: 67,
6011
+ NumEnums: 14,
6012
+ NumMessages: 73,
5570
6013
  NumExtensions: 0,
5571
6014
  NumServices: 0,
5572
6015
  },