slidge-whatsapp 0.2.6__cp312-cp312-manylinux_2_36_aarch64.whl → 0.3.0b0__cp312-cp312-manylinux_2_36_aarch64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (258) hide show
  1. slidge_whatsapp/contact.py +13 -3
  2. slidge_whatsapp/event.go +115 -39
  3. slidge_whatsapp/gateway.go +7 -63
  4. slidge_whatsapp/gateway.py +2 -3
  5. slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.h +169 -152
  6. slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.so +0 -0
  7. slidge_whatsapp/generated/build.py +134 -120
  8. slidge_whatsapp/generated/whatsapp.c +1511 -1239
  9. slidge_whatsapp/generated/whatsapp.go +1263 -1152
  10. slidge_whatsapp/generated/whatsapp.py +1171 -1046
  11. slidge_whatsapp/generated/whatsapp_go.h +169 -152
  12. slidge_whatsapp/go.mod +18 -15
  13. slidge_whatsapp/go.sum +38 -32
  14. slidge_whatsapp/group.py +34 -30
  15. slidge_whatsapp/media/media.go +6 -2
  16. slidge_whatsapp/session.go +33 -16
  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/json.go +1 -6
  84. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/networkerror.go +2 -1
  85. slidge_whatsapp/vendor/go.mau.fi/util/exstrings/stringutil.go +104 -0
  86. slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +19 -3
  87. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.pre-commit-config.yaml +3 -3
  88. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +1 -1
  89. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/hash.go +1 -1
  90. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +5 -1
  91. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/argo-wire-type-store.argo +63 -0
  92. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/argo.go +62 -0
  93. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/name-to-queryids.json +306 -0
  94. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +40 -7
  95. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/encoder.go +1 -1
  96. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +2 -1
  97. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +79 -45
  98. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +13 -6
  99. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +19 -12
  100. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +26 -6
  101. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +3 -0
  102. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +99 -27
  103. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +54 -26
  104. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +1 -0
  105. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +208 -57
  106. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +2 -14
  107. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/newsletter.go +83 -7
  108. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +17 -8
  109. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +2 -2
  110. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +15 -6
  111. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/extra.go +7 -0
  112. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.pb.go +983 -0
  113. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.proto +85 -0
  114. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/extra.go +3 -0
  115. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.pb.go +197 -0
  116. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.proto +13 -0
  117. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.pb.go +279 -0
  118. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.proto +21 -0
  119. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.pb.go +137 -0
  120. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.proto +10 -0
  121. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.pb.go +313 -0
  122. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.proto +27 -0
  123. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.pb.go +1299 -0
  124. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto +112 -0
  125. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.pb.go +514 -0
  126. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.proto +47 -0
  127. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.pb.go +123 -0
  128. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.proto +7 -0
  129. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/extra.go +3 -0
  130. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.pb.go +720 -0
  131. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.proto +59 -0
  132. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/extra.go +3 -0
  133. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.pb.go +365 -0
  134. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.proto +33 -0
  135. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.pb.go +1238 -0
  136. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.proto +105 -0
  137. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +16 -4
  138. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.proto +3 -0
  139. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.pb.go +5156 -0
  140. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.proto +516 -0
  141. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.pb.go +46 -10
  142. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.proto +4 -0
  143. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +8975 -11209
  144. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +193 -421
  145. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +52 -23
  146. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +3 -0
  147. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.pb.go +198 -0
  148. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.proto +14 -0
  149. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/extra.go +7 -6
  150. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +952 -0
  151. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +88 -0
  152. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +1143 -463
  153. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +60 -0
  154. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +60 -38
  155. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +3 -0
  156. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +11 -3
  157. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +2 -0
  158. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +20 -7
  159. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/reportingfields.json +1 -0
  160. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/reportingtoken.go +176 -0
  161. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +10 -2
  162. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +38 -21
  163. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +1 -0
  164. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +1 -1
  165. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +3 -2
  166. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/container.go +9 -6
  167. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +25 -5
  168. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +4 -2
  169. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/10-chat-db-lid-migration-ts.sql +2 -0
  170. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +5 -1
  171. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +1 -0
  172. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +13 -2
  173. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +2 -1
  174. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +1 -0
  175. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +2 -0
  176. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +14 -8
  177. slidge_whatsapp/vendor/golang.org/x/crypto/curve25519/curve25519.go +1 -1
  178. slidge_whatsapp/vendor/golang.org/x/net/http2/config.go +44 -2
  179. slidge_whatsapp/vendor/golang.org/x/net/http2/frame.go +8 -8
  180. slidge_whatsapp/vendor/golang.org/x/net/http2/gotrack.go +14 -3
  181. slidge_whatsapp/vendor/golang.org/x/net/http2/http2.go +7 -29
  182. slidge_whatsapp/vendor/golang.org/x/net/http2/server.go +53 -71
  183. slidge_whatsapp/vendor/golang.org/x/net/http2/transport.go +20 -74
  184. slidge_whatsapp/vendor/golang.org/x/sys/unix/affinity_linux.go +1 -3
  185. slidge_whatsapp/vendor/golang.org/x/sys/unix/mkerrors.sh +3 -0
  186. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin.go +1 -55
  187. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_solaris.go +1 -1
  188. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux.go +47 -16
  189. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_386.go +3 -0
  190. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go +3 -0
  191. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go +3 -0
  192. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go +3 -0
  193. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go +3 -0
  194. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go +3 -0
  195. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go +3 -0
  196. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go +3 -0
  197. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go +3 -0
  198. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go +3 -0
  199. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go +3 -0
  200. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go +3 -0
  201. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go +3 -0
  202. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go +3 -0
  203. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go +3 -0
  204. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go +4 -4
  205. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go +1 -0
  206. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go +1 -0
  207. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go +1 -0
  208. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go +1 -0
  209. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go +1 -0
  210. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go +1 -0
  211. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go +1 -0
  212. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go +1 -0
  213. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go +1 -0
  214. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go +1 -0
  215. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go +1 -0
  216. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go +1 -0
  217. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go +1 -0
  218. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go +1 -0
  219. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go +1 -0
  220. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux.go +168 -12
  221. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_386.go +17 -1
  222. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go +16 -0
  223. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go +18 -2
  224. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go +16 -0
  225. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go +16 -0
  226. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go +17 -1
  227. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go +16 -0
  228. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go +16 -0
  229. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go +17 -1
  230. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go +18 -2
  231. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go +16 -0
  232. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go +16 -0
  233. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go +16 -0
  234. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go +16 -0
  235. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go +16 -0
  236. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +6 -0
  237. slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +483 -483
  238. slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/protowire/wire.go +25 -1
  239. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb +0 -0
  240. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/editions.go +10 -5
  241. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/presence.go +33 -0
  242. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/api_gen.go +6 -0
  243. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go +68 -22
  244. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_message_opaque.go +2 -1
  245. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_opaque.go +8 -37
  246. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/presence.go +0 -3
  247. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +1 -1
  248. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go +8 -0
  249. slidge_whatsapp/vendor/modules.txt +57 -23
  250. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0b0.dist-info}/METADATA +2 -2
  251. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0b0.dist-info}/RECORD +254 -174
  252. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi_amd64.go +0 -7
  253. slidge_whatsapp/vendor/golang.org/x/net/http2/config_go124.go +0 -61
  254. slidge_whatsapp/vendor/golang.org/x/net/http2/config_pre_go124.go +0 -16
  255. slidge_whatsapp/vendor/golang.org/x/net/http2/timer.go +0 -20
  256. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0b0.dist-info}/LICENSE +0 -0
  257. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0b0.dist-info}/WHEEL +0 -0
  258. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0b0.dist-info}/entry_points.txt +0 -0
@@ -230,6 +230,118 @@ 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
+
292
+ type PaymentTosAction_PaymentNotice int32
293
+
294
+ const (
295
+ PaymentTosAction_BR_PAY_PRIVACY_POLICY PaymentTosAction_PaymentNotice = 0
296
+ )
297
+
298
+ // Enum value maps for PaymentTosAction_PaymentNotice.
299
+ var (
300
+ PaymentTosAction_PaymentNotice_name = map[int32]string{
301
+ 0: "BR_PAY_PRIVACY_POLICY",
302
+ }
303
+ PaymentTosAction_PaymentNotice_value = map[string]int32{
304
+ "BR_PAY_PRIVACY_POLICY": 0,
305
+ }
306
+ )
307
+
308
+ func (x PaymentTosAction_PaymentNotice) Enum() *PaymentTosAction_PaymentNotice {
309
+ p := new(PaymentTosAction_PaymentNotice)
310
+ *p = x
311
+ return p
312
+ }
313
+
314
+ func (x PaymentTosAction_PaymentNotice) String() string {
315
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
316
+ }
317
+
318
+ func (PaymentTosAction_PaymentNotice) Descriptor() protoreflect.EnumDescriptor {
319
+ return file_waSyncAction_WASyncAction_proto_enumTypes[4].Descriptor()
320
+ }
321
+
322
+ func (PaymentTosAction_PaymentNotice) Type() protoreflect.EnumType {
323
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[4]
324
+ }
325
+
326
+ func (x PaymentTosAction_PaymentNotice) Number() protoreflect.EnumNumber {
327
+ return protoreflect.EnumNumber(x)
328
+ }
329
+
330
+ // Deprecated: Do not use.
331
+ func (x *PaymentTosAction_PaymentNotice) UnmarshalJSON(b []byte) error {
332
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
333
+ if err != nil {
334
+ return err
335
+ }
336
+ *x = PaymentTosAction_PaymentNotice(num)
337
+ return nil
338
+ }
339
+
340
+ // Deprecated: Use PaymentTosAction_PaymentNotice.Descriptor instead.
341
+ func (PaymentTosAction_PaymentNotice) EnumDescriptor() ([]byte, []int) {
342
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2, 0}
343
+ }
344
+
233
345
  type NotificationActivitySettingAction_NotificationActivitySetting int32
234
346
 
235
347
  const (
@@ -266,11 +378,11 @@ func (x NotificationActivitySettingAction_NotificationActivitySetting) String()
266
378
  }
267
379
 
268
380
  func (NotificationActivitySettingAction_NotificationActivitySetting) Descriptor() protoreflect.EnumDescriptor {
269
- return file_waSyncAction_WASyncAction_proto_enumTypes[3].Descriptor()
381
+ return file_waSyncAction_WASyncAction_proto_enumTypes[5].Descriptor()
270
382
  }
271
383
 
272
384
  func (NotificationActivitySettingAction_NotificationActivitySetting) Type() protoreflect.EnumType {
273
- return &file_waSyncAction_WASyncAction_proto_enumTypes[3]
385
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[5]
274
386
  }
275
387
 
276
388
  func (x NotificationActivitySettingAction_NotificationActivitySetting) Number() protoreflect.EnumNumber {
@@ -289,7 +401,7 @@ func (x *NotificationActivitySettingAction_NotificationActivitySetting) Unmarsha
289
401
 
290
402
  // Deprecated: Use NotificationActivitySettingAction_NotificationActivitySetting.Descriptor instead.
291
403
  func (NotificationActivitySettingAction_NotificationActivitySetting) EnumDescriptor() ([]byte, []int) {
292
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1, 0}
404
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3, 0}
293
405
  }
294
406
 
295
407
  type WaffleAccountLinkStateAction_AccountLinkState int32
@@ -319,11 +431,11 @@ func (x WaffleAccountLinkStateAction_AccountLinkState) String() string {
319
431
  }
320
432
 
321
433
  func (WaffleAccountLinkStateAction_AccountLinkState) Descriptor() protoreflect.EnumDescriptor {
322
- return file_waSyncAction_WASyncAction_proto_enumTypes[4].Descriptor()
434
+ return file_waSyncAction_WASyncAction_proto_enumTypes[6].Descriptor()
323
435
  }
324
436
 
325
437
  func (WaffleAccountLinkStateAction_AccountLinkState) Type() protoreflect.EnumType {
326
- return &file_waSyncAction_WASyncAction_proto_enumTypes[4]
438
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[6]
327
439
  }
328
440
 
329
441
  func (x WaffleAccountLinkStateAction_AccountLinkState) Number() protoreflect.EnumNumber {
@@ -342,7 +454,7 @@ func (x *WaffleAccountLinkStateAction_AccountLinkState) UnmarshalJSON(b []byte)
342
454
 
343
455
  // Deprecated: Use WaffleAccountLinkStateAction_AccountLinkState.Descriptor instead.
344
456
  func (WaffleAccountLinkStateAction_AccountLinkState) EnumDescriptor() ([]byte, []int) {
345
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2, 0}
457
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4, 0}
346
458
  }
347
459
 
348
460
  type MerchantPaymentPartnerAction_Status int32
@@ -375,11 +487,11 @@ func (x MerchantPaymentPartnerAction_Status) String() string {
375
487
  }
376
488
 
377
489
  func (MerchantPaymentPartnerAction_Status) Descriptor() protoreflect.EnumDescriptor {
378
- return file_waSyncAction_WASyncAction_proto_enumTypes[5].Descriptor()
490
+ return file_waSyncAction_WASyncAction_proto_enumTypes[7].Descriptor()
379
491
  }
380
492
 
381
493
  func (MerchantPaymentPartnerAction_Status) Type() protoreflect.EnumType {
382
- return &file_waSyncAction_WASyncAction_proto_enumTypes[5]
494
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[7]
383
495
  }
384
496
 
385
497
  func (x MerchantPaymentPartnerAction_Status) Number() protoreflect.EnumNumber {
@@ -398,7 +510,7 @@ func (x *MerchantPaymentPartnerAction_Status) UnmarshalJSON(b []byte) error {
398
510
 
399
511
  // Deprecated: Use MerchantPaymentPartnerAction_Status.Descriptor instead.
400
512
  func (MerchantPaymentPartnerAction_Status) EnumDescriptor() ([]byte, []int) {
401
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3, 0}
513
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5, 0}
402
514
  }
403
515
 
404
516
  type NoteEditAction_NoteType int32
@@ -431,11 +543,11 @@ func (x NoteEditAction_NoteType) String() string {
431
543
  }
432
544
 
433
545
  func (NoteEditAction_NoteType) Descriptor() protoreflect.EnumDescriptor {
434
- return file_waSyncAction_WASyncAction_proto_enumTypes[6].Descriptor()
546
+ return file_waSyncAction_WASyncAction_proto_enumTypes[8].Descriptor()
435
547
  }
436
548
 
437
549
  func (NoteEditAction_NoteType) Type() protoreflect.EnumType {
438
- return &file_waSyncAction_WASyncAction_proto_enumTypes[6]
550
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[8]
439
551
  }
440
552
 
441
553
  func (x NoteEditAction_NoteType) Number() protoreflect.EnumNumber {
@@ -454,7 +566,7 @@ func (x *NoteEditAction_NoteType) UnmarshalJSON(b []byte) error {
454
566
 
455
567
  // Deprecated: Use NoteEditAction_NoteType.Descriptor instead.
456
568
  func (NoteEditAction_NoteType) EnumDescriptor() ([]byte, []int) {
457
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4, 0}
569
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6, 0}
458
570
  }
459
571
 
460
572
  type StatusPrivacyAction_StatusDistributionMode int32
@@ -490,11 +602,11 @@ func (x StatusPrivacyAction_StatusDistributionMode) String() string {
490
602
  }
491
603
 
492
604
  func (StatusPrivacyAction_StatusDistributionMode) Descriptor() protoreflect.EnumDescriptor {
493
- return file_waSyncAction_WASyncAction_proto_enumTypes[7].Descriptor()
605
+ return file_waSyncAction_WASyncAction_proto_enumTypes[9].Descriptor()
494
606
  }
495
607
 
496
608
  func (StatusPrivacyAction_StatusDistributionMode) Type() protoreflect.EnumType {
497
- return &file_waSyncAction_WASyncAction_proto_enumTypes[7]
609
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[9]
498
610
  }
499
611
 
500
612
  func (x StatusPrivacyAction_StatusDistributionMode) Number() protoreflect.EnumNumber {
@@ -513,7 +625,7 @@ func (x *StatusPrivacyAction_StatusDistributionMode) UnmarshalJSON(b []byte) err
513
625
 
514
626
  // Deprecated: Use StatusPrivacyAction_StatusDistributionMode.Descriptor instead.
515
627
  func (StatusPrivacyAction_StatusDistributionMode) EnumDescriptor() ([]byte, []int) {
516
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5, 0}
628
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7, 0}
517
629
  }
518
630
 
519
631
  type MarketingMessageAction_MarketingMessagePrototypeType int32
@@ -543,11 +655,11 @@ func (x MarketingMessageAction_MarketingMessagePrototypeType) String() string {
543
655
  }
544
656
 
545
657
  func (MarketingMessageAction_MarketingMessagePrototypeType) Descriptor() protoreflect.EnumDescriptor {
546
- return file_waSyncAction_WASyncAction_proto_enumTypes[8].Descriptor()
658
+ return file_waSyncAction_WASyncAction_proto_enumTypes[10].Descriptor()
547
659
  }
548
660
 
549
661
  func (MarketingMessageAction_MarketingMessagePrototypeType) Type() protoreflect.EnumType {
550
- return &file_waSyncAction_WASyncAction_proto_enumTypes[8]
662
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[10]
551
663
  }
552
664
 
553
665
  func (x MarketingMessageAction_MarketingMessagePrototypeType) Number() protoreflect.EnumNumber {
@@ -566,7 +678,7 @@ func (x *MarketingMessageAction_MarketingMessagePrototypeType) UnmarshalJSON(b [
566
678
 
567
679
  // Deprecated: Use MarketingMessageAction_MarketingMessagePrototypeType.Descriptor instead.
568
680
  func (MarketingMessageAction_MarketingMessagePrototypeType) EnumDescriptor() ([]byte, []int) {
569
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6, 0}
681
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8, 0}
570
682
  }
571
683
 
572
684
  type UsernameChatStartModeAction_ChatStartMode int32
@@ -599,11 +711,11 @@ func (x UsernameChatStartModeAction_ChatStartMode) String() string {
599
711
  }
600
712
 
601
713
  func (UsernameChatStartModeAction_ChatStartMode) Descriptor() protoreflect.EnumDescriptor {
602
- return file_waSyncAction_WASyncAction_proto_enumTypes[9].Descriptor()
714
+ return file_waSyncAction_WASyncAction_proto_enumTypes[11].Descriptor()
603
715
  }
604
716
 
605
717
  func (UsernameChatStartModeAction_ChatStartMode) Type() protoreflect.EnumType {
606
- return &file_waSyncAction_WASyncAction_proto_enumTypes[9]
718
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[11]
607
719
  }
608
720
 
609
721
  func (x UsernameChatStartModeAction_ChatStartMode) Number() protoreflect.EnumNumber {
@@ -622,7 +734,7 @@ func (x *UsernameChatStartModeAction_ChatStartMode) UnmarshalJSON(b []byte) erro
622
734
 
623
735
  // Deprecated: Use UsernameChatStartModeAction_ChatStartMode.Descriptor instead.
624
736
  func (UsernameChatStartModeAction_ChatStartMode) EnumDescriptor() ([]byte, []int) {
625
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7, 0}
737
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9, 0}
626
738
  }
627
739
 
628
740
  type LabelEditAction_ListType int32
@@ -673,11 +785,11 @@ func (x LabelEditAction_ListType) String() string {
673
785
  }
674
786
 
675
787
  func (LabelEditAction_ListType) Descriptor() protoreflect.EnumDescriptor {
676
- return file_waSyncAction_WASyncAction_proto_enumTypes[10].Descriptor()
788
+ return file_waSyncAction_WASyncAction_proto_enumTypes[12].Descriptor()
677
789
  }
678
790
 
679
791
  func (LabelEditAction_ListType) Type() protoreflect.EnumType {
680
- return &file_waSyncAction_WASyncAction_proto_enumTypes[10]
792
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[12]
681
793
  }
682
794
 
683
795
  func (x LabelEditAction_ListType) Number() protoreflect.EnumNumber {
@@ -696,7 +808,7 @@ func (x *LabelEditAction_ListType) UnmarshalJSON(b []byte) error {
696
808
 
697
809
  // Deprecated: Use LabelEditAction_ListType.Descriptor instead.
698
810
  func (LabelEditAction_ListType) EnumDescriptor() ([]byte, []int) {
699
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8, 0}
811
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10, 0}
700
812
  }
701
813
 
702
814
  type PatchDebugData_Platform int32
@@ -750,11 +862,11 @@ func (x PatchDebugData_Platform) String() string {
750
862
  }
751
863
 
752
864
  func (PatchDebugData_Platform) Descriptor() protoreflect.EnumDescriptor {
753
- return file_waSyncAction_WASyncAction_proto_enumTypes[11].Descriptor()
865
+ return file_waSyncAction_WASyncAction_proto_enumTypes[13].Descriptor()
754
866
  }
755
867
 
756
868
  func (PatchDebugData_Platform) Type() protoreflect.EnumType {
757
- return &file_waSyncAction_WASyncAction_proto_enumTypes[11]
869
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[13]
758
870
  }
759
871
 
760
872
  func (x PatchDebugData_Platform) Number() protoreflect.EnumNumber {
@@ -773,7 +885,7 @@ func (x *PatchDebugData_Platform) UnmarshalJSON(b []byte) error {
773
885
 
774
886
  // Deprecated: Use PatchDebugData_Platform.Descriptor instead.
775
887
  func (PatchDebugData_Platform) EnumDescriptor() ([]byte, []int) {
776
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9, 0}
888
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11, 0}
777
889
  }
778
890
 
779
891
  type CallLogRecord struct {
@@ -932,6 +1044,102 @@ func (x *CallLogRecord) GetCallType() CallLogRecord_CallType {
932
1044
  return CallLogRecord_REGULAR
933
1045
  }
934
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
+
1091
+ type PaymentTosAction struct {
1092
+ state protoimpl.MessageState `protogen:"open.v1"`
1093
+ PaymentNotice *PaymentTosAction_PaymentNotice `protobuf:"varint,1,req,name=paymentNotice,enum=WASyncAction.PaymentTosAction_PaymentNotice" json:"paymentNotice,omitempty"`
1094
+ Accepted *bool `protobuf:"varint,2,req,name=accepted" json:"accepted,omitempty"`
1095
+ unknownFields protoimpl.UnknownFields
1096
+ sizeCache protoimpl.SizeCache
1097
+ }
1098
+
1099
+ func (x *PaymentTosAction) Reset() {
1100
+ *x = PaymentTosAction{}
1101
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1102
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1103
+ ms.StoreMessageInfo(mi)
1104
+ }
1105
+
1106
+ func (x *PaymentTosAction) String() string {
1107
+ return protoimpl.X.MessageStringOf(x)
1108
+ }
1109
+
1110
+ func (*PaymentTosAction) ProtoMessage() {}
1111
+
1112
+ func (x *PaymentTosAction) ProtoReflect() protoreflect.Message {
1113
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1114
+ if x != nil {
1115
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1116
+ if ms.LoadMessageInfo() == nil {
1117
+ ms.StoreMessageInfo(mi)
1118
+ }
1119
+ return ms
1120
+ }
1121
+ return mi.MessageOf(x)
1122
+ }
1123
+
1124
+ // Deprecated: Use PaymentTosAction.ProtoReflect.Descriptor instead.
1125
+ func (*PaymentTosAction) Descriptor() ([]byte, []int) {
1126
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2}
1127
+ }
1128
+
1129
+ func (x *PaymentTosAction) GetPaymentNotice() PaymentTosAction_PaymentNotice {
1130
+ if x != nil && x.PaymentNotice != nil {
1131
+ return *x.PaymentNotice
1132
+ }
1133
+ return PaymentTosAction_BR_PAY_PRIVACY_POLICY
1134
+ }
1135
+
1136
+ func (x *PaymentTosAction) GetAccepted() bool {
1137
+ if x != nil && x.Accepted != nil {
1138
+ return *x.Accepted
1139
+ }
1140
+ return false
1141
+ }
1142
+
935
1143
  type NotificationActivitySettingAction struct {
936
1144
  state protoimpl.MessageState `protogen:"open.v1"`
937
1145
  NotificationActivitySetting *NotificationActivitySettingAction_NotificationActivitySetting `protobuf:"varint,1,opt,name=notificationActivitySetting,enum=WASyncAction.NotificationActivitySettingAction_NotificationActivitySetting" json:"notificationActivitySetting,omitempty"`
@@ -941,7 +1149,7 @@ type NotificationActivitySettingAction struct {
941
1149
 
942
1150
  func (x *NotificationActivitySettingAction) Reset() {
943
1151
  *x = NotificationActivitySettingAction{}
944
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
1152
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
945
1153
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
946
1154
  ms.StoreMessageInfo(mi)
947
1155
  }
@@ -953,7 +1161,7 @@ func (x *NotificationActivitySettingAction) String() string {
953
1161
  func (*NotificationActivitySettingAction) ProtoMessage() {}
954
1162
 
955
1163
  func (x *NotificationActivitySettingAction) ProtoReflect() protoreflect.Message {
956
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
1164
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
957
1165
  if x != nil {
958
1166
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
959
1167
  if ms.LoadMessageInfo() == nil {
@@ -966,7 +1174,7 @@ func (x *NotificationActivitySettingAction) ProtoReflect() protoreflect.Message
966
1174
 
967
1175
  // Deprecated: Use NotificationActivitySettingAction.ProtoReflect.Descriptor instead.
968
1176
  func (*NotificationActivitySettingAction) Descriptor() ([]byte, []int) {
969
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1}
1177
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3}
970
1178
  }
971
1179
 
972
1180
  func (x *NotificationActivitySettingAction) GetNotificationActivitySetting() NotificationActivitySettingAction_NotificationActivitySetting {
@@ -985,7 +1193,7 @@ type WaffleAccountLinkStateAction struct {
985
1193
 
986
1194
  func (x *WaffleAccountLinkStateAction) Reset() {
987
1195
  *x = WaffleAccountLinkStateAction{}
988
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1196
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
989
1197
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
990
1198
  ms.StoreMessageInfo(mi)
991
1199
  }
@@ -997,7 +1205,7 @@ func (x *WaffleAccountLinkStateAction) String() string {
997
1205
  func (*WaffleAccountLinkStateAction) ProtoMessage() {}
998
1206
 
999
1207
  func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
1000
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1208
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1001
1209
  if x != nil {
1002
1210
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1003
1211
  if ms.LoadMessageInfo() == nil {
@@ -1010,7 +1218,7 @@ func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
1010
1218
 
1011
1219
  // Deprecated: Use WaffleAccountLinkStateAction.ProtoReflect.Descriptor instead.
1012
1220
  func (*WaffleAccountLinkStateAction) Descriptor() ([]byte, []int) {
1013
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2}
1221
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4}
1014
1222
  }
1015
1223
 
1016
1224
  func (x *WaffleAccountLinkStateAction) GetLinkState() WaffleAccountLinkStateAction_AccountLinkState {
@@ -1032,7 +1240,7 @@ type MerchantPaymentPartnerAction struct {
1032
1240
 
1033
1241
  func (x *MerchantPaymentPartnerAction) Reset() {
1034
1242
  *x = MerchantPaymentPartnerAction{}
1035
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
1243
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1036
1244
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1037
1245
  ms.StoreMessageInfo(mi)
1038
1246
  }
@@ -1044,7 +1252,7 @@ func (x *MerchantPaymentPartnerAction) String() string {
1044
1252
  func (*MerchantPaymentPartnerAction) ProtoMessage() {}
1045
1253
 
1046
1254
  func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
1047
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
1255
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1048
1256
  if x != nil {
1049
1257
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1050
1258
  if ms.LoadMessageInfo() == nil {
@@ -1057,7 +1265,7 @@ func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
1057
1265
 
1058
1266
  // Deprecated: Use MerchantPaymentPartnerAction.ProtoReflect.Descriptor instead.
1059
1267
  func (*MerchantPaymentPartnerAction) Descriptor() ([]byte, []int) {
1060
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3}
1268
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5}
1061
1269
  }
1062
1270
 
1063
1271
  func (x *MerchantPaymentPartnerAction) GetStatus() MerchantPaymentPartnerAction_Status {
@@ -1101,7 +1309,7 @@ type NoteEditAction struct {
1101
1309
 
1102
1310
  func (x *NoteEditAction) Reset() {
1103
1311
  *x = NoteEditAction{}
1104
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1312
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1105
1313
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1106
1314
  ms.StoreMessageInfo(mi)
1107
1315
  }
@@ -1113,7 +1321,7 @@ func (x *NoteEditAction) String() string {
1113
1321
  func (*NoteEditAction) ProtoMessage() {}
1114
1322
 
1115
1323
  func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
1116
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1324
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1117
1325
  if x != nil {
1118
1326
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1119
1327
  if ms.LoadMessageInfo() == nil {
@@ -1126,7 +1334,7 @@ func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
1126
1334
 
1127
1335
  // Deprecated: Use NoteEditAction.ProtoReflect.Descriptor instead.
1128
1336
  func (*NoteEditAction) Descriptor() ([]byte, []int) {
1129
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4}
1337
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6}
1130
1338
  }
1131
1339
 
1132
1340
  func (x *NoteEditAction) GetType() NoteEditAction_NoteType {
@@ -1174,7 +1382,7 @@ type StatusPrivacyAction struct {
1174
1382
 
1175
1383
  func (x *StatusPrivacyAction) Reset() {
1176
1384
  *x = StatusPrivacyAction{}
1177
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1385
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1178
1386
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1179
1387
  ms.StoreMessageInfo(mi)
1180
1388
  }
@@ -1186,7 +1394,7 @@ func (x *StatusPrivacyAction) String() string {
1186
1394
  func (*StatusPrivacyAction) ProtoMessage() {}
1187
1395
 
1188
1396
  func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
1189
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1397
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1190
1398
  if x != nil {
1191
1399
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1192
1400
  if ms.LoadMessageInfo() == nil {
@@ -1199,7 +1407,7 @@ func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
1199
1407
 
1200
1408
  // Deprecated: Use StatusPrivacyAction.ProtoReflect.Descriptor instead.
1201
1409
  func (*StatusPrivacyAction) Descriptor() ([]byte, []int) {
1202
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5}
1410
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7}
1203
1411
  }
1204
1412
 
1205
1413
  func (x *StatusPrivacyAction) GetMode() StatusPrivacyAction_StatusDistributionMode {
@@ -1231,7 +1439,7 @@ type MarketingMessageAction struct {
1231
1439
 
1232
1440
  func (x *MarketingMessageAction) Reset() {
1233
1441
  *x = MarketingMessageAction{}
1234
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1442
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1235
1443
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1236
1444
  ms.StoreMessageInfo(mi)
1237
1445
  }
@@ -1243,7 +1451,7 @@ func (x *MarketingMessageAction) String() string {
1243
1451
  func (*MarketingMessageAction) ProtoMessage() {}
1244
1452
 
1245
1453
  func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
1246
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1454
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1247
1455
  if x != nil {
1248
1456
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1249
1457
  if ms.LoadMessageInfo() == nil {
@@ -1256,7 +1464,7 @@ func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
1256
1464
 
1257
1465
  // Deprecated: Use MarketingMessageAction.ProtoReflect.Descriptor instead.
1258
1466
  func (*MarketingMessageAction) Descriptor() ([]byte, []int) {
1259
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6}
1467
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8}
1260
1468
  }
1261
1469
 
1262
1470
  func (x *MarketingMessageAction) GetName() string {
@@ -1317,7 +1525,7 @@ type UsernameChatStartModeAction struct {
1317
1525
 
1318
1526
  func (x *UsernameChatStartModeAction) Reset() {
1319
1527
  *x = UsernameChatStartModeAction{}
1320
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1528
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1321
1529
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1322
1530
  ms.StoreMessageInfo(mi)
1323
1531
  }
@@ -1329,7 +1537,7 @@ func (x *UsernameChatStartModeAction) String() string {
1329
1537
  func (*UsernameChatStartModeAction) ProtoMessage() {}
1330
1538
 
1331
1539
  func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
1332
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1540
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1333
1541
  if x != nil {
1334
1542
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1335
1543
  if ms.LoadMessageInfo() == nil {
@@ -1342,7 +1550,7 @@ func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
1342
1550
 
1343
1551
  // Deprecated: Use UsernameChatStartModeAction.ProtoReflect.Descriptor instead.
1344
1552
  func (*UsernameChatStartModeAction) Descriptor() ([]byte, []int) {
1345
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7}
1553
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9}
1346
1554
  }
1347
1555
 
1348
1556
  func (x *UsernameChatStartModeAction) GetChatStartMode() UsernameChatStartModeAction_ChatStartMode {
@@ -1368,7 +1576,7 @@ type LabelEditAction struct {
1368
1576
 
1369
1577
  func (x *LabelEditAction) Reset() {
1370
1578
  *x = LabelEditAction{}
1371
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1579
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1372
1580
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1373
1581
  ms.StoreMessageInfo(mi)
1374
1582
  }
@@ -1380,7 +1588,7 @@ func (x *LabelEditAction) String() string {
1380
1588
  func (*LabelEditAction) ProtoMessage() {}
1381
1589
 
1382
1590
  func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
1383
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1591
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1384
1592
  if x != nil {
1385
1593
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1386
1594
  if ms.LoadMessageInfo() == nil {
@@ -1393,7 +1601,7 @@ func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
1393
1601
 
1394
1602
  // Deprecated: Use LabelEditAction.ProtoReflect.Descriptor instead.
1395
1603
  func (*LabelEditAction) Descriptor() ([]byte, []int) {
1396
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8}
1604
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10}
1397
1605
  }
1398
1606
 
1399
1607
  func (x *LabelEditAction) GetName() string {
@@ -1471,7 +1679,7 @@ type PatchDebugData struct {
1471
1679
 
1472
1680
  func (x *PatchDebugData) Reset() {
1473
1681
  *x = PatchDebugData{}
1474
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1682
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1475
1683
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1476
1684
  ms.StoreMessageInfo(mi)
1477
1685
  }
@@ -1483,7 +1691,7 @@ func (x *PatchDebugData) String() string {
1483
1691
  func (*PatchDebugData) ProtoMessage() {}
1484
1692
 
1485
1693
  func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
1486
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1694
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1487
1695
  if x != nil {
1488
1696
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1489
1697
  if ms.LoadMessageInfo() == nil {
@@ -1496,7 +1704,7 @@ func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
1496
1704
 
1497
1705
  // Deprecated: Use PatchDebugData.ProtoReflect.Descriptor instead.
1498
1706
  func (*PatchDebugData) Descriptor() ([]byte, []int) {
1499
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9}
1707
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11}
1500
1708
  }
1501
1709
 
1502
1710
  func (x *PatchDebugData) GetCurrentLthash() []byte {
@@ -1586,7 +1794,7 @@ type RecentEmojiWeight struct {
1586
1794
 
1587
1795
  func (x *RecentEmojiWeight) Reset() {
1588
1796
  *x = RecentEmojiWeight{}
1589
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1797
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
1590
1798
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1591
1799
  ms.StoreMessageInfo(mi)
1592
1800
  }
@@ -1598,7 +1806,7 @@ func (x *RecentEmojiWeight) String() string {
1598
1806
  func (*RecentEmojiWeight) ProtoMessage() {}
1599
1807
 
1600
1808
  func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
1601
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1809
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
1602
1810
  if x != nil {
1603
1811
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1604
1812
  if ms.LoadMessageInfo() == nil {
@@ -1611,7 +1819,7 @@ func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
1611
1819
 
1612
1820
  // Deprecated: Use RecentEmojiWeight.ProtoReflect.Descriptor instead.
1613
1821
  func (*RecentEmojiWeight) Descriptor() ([]byte, []int) {
1614
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10}
1822
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12}
1615
1823
  }
1616
1824
 
1617
1825
  func (x *RecentEmojiWeight) GetEmoji() string {
@@ -1629,70 +1837,78 @@ func (x *RecentEmojiWeight) GetWeight() float32 {
1629
1837
  }
1630
1838
 
1631
1839
  type SyncActionValue struct {
1632
- state protoimpl.MessageState `protogen:"open.v1"`
1633
- Timestamp *int64 `protobuf:"varint,1,opt,name=timestamp" json:"timestamp,omitempty"`
1634
- StarAction *StarAction `protobuf:"bytes,2,opt,name=starAction" json:"starAction,omitempty"`
1635
- ContactAction *ContactAction `protobuf:"bytes,3,opt,name=contactAction" json:"contactAction,omitempty"`
1636
- MuteAction *MuteAction `protobuf:"bytes,4,opt,name=muteAction" json:"muteAction,omitempty"`
1637
- PinAction *PinAction `protobuf:"bytes,5,opt,name=pinAction" json:"pinAction,omitempty"`
1638
- SecurityNotificationSetting *SecurityNotificationSetting `protobuf:"bytes,6,opt,name=securityNotificationSetting" json:"securityNotificationSetting,omitempty"`
1639
- PushNameSetting *PushNameSetting `protobuf:"bytes,7,opt,name=pushNameSetting" json:"pushNameSetting,omitempty"`
1640
- QuickReplyAction *QuickReplyAction `protobuf:"bytes,8,opt,name=quickReplyAction" json:"quickReplyAction,omitempty"`
1641
- RecentEmojiWeightsAction *RecentEmojiWeightsAction `protobuf:"bytes,11,opt,name=recentEmojiWeightsAction" json:"recentEmojiWeightsAction,omitempty"`
1642
- LabelEditAction *LabelEditAction `protobuf:"bytes,14,opt,name=labelEditAction" json:"labelEditAction,omitempty"`
1643
- LabelAssociationAction *LabelAssociationAction `protobuf:"bytes,15,opt,name=labelAssociationAction" json:"labelAssociationAction,omitempty"`
1644
- LocaleSetting *LocaleSetting `protobuf:"bytes,16,opt,name=localeSetting" json:"localeSetting,omitempty"`
1645
- ArchiveChatAction *ArchiveChatAction `protobuf:"bytes,17,opt,name=archiveChatAction" json:"archiveChatAction,omitempty"`
1646
- DeleteMessageForMeAction *DeleteMessageForMeAction `protobuf:"bytes,18,opt,name=deleteMessageForMeAction" json:"deleteMessageForMeAction,omitempty"`
1647
- KeyExpiration *KeyExpiration `protobuf:"bytes,19,opt,name=keyExpiration" json:"keyExpiration,omitempty"`
1648
- MarkChatAsReadAction *MarkChatAsReadAction `protobuf:"bytes,20,opt,name=markChatAsReadAction" json:"markChatAsReadAction,omitempty"`
1649
- ClearChatAction *ClearChatAction `protobuf:"bytes,21,opt,name=clearChatAction" json:"clearChatAction,omitempty"`
1650
- DeleteChatAction *DeleteChatAction `protobuf:"bytes,22,opt,name=deleteChatAction" json:"deleteChatAction,omitempty"`
1651
- UnarchiveChatsSetting *UnarchiveChatsSetting `protobuf:"bytes,23,opt,name=unarchiveChatsSetting" json:"unarchiveChatsSetting,omitempty"`
1652
- PrimaryFeature *PrimaryFeature `protobuf:"bytes,24,opt,name=primaryFeature" json:"primaryFeature,omitempty"`
1653
- AndroidUnsupportedActions *AndroidUnsupportedActions `protobuf:"bytes,26,opt,name=androidUnsupportedActions" json:"androidUnsupportedActions,omitempty"`
1654
- AgentAction *AgentAction `protobuf:"bytes,27,opt,name=agentAction" json:"agentAction,omitempty"`
1655
- SubscriptionAction *SubscriptionAction `protobuf:"bytes,28,opt,name=subscriptionAction" json:"subscriptionAction,omitempty"`
1656
- UserStatusMuteAction *UserStatusMuteAction `protobuf:"bytes,29,opt,name=userStatusMuteAction" json:"userStatusMuteAction,omitempty"`
1657
- TimeFormatAction *TimeFormatAction `protobuf:"bytes,30,opt,name=timeFormatAction" json:"timeFormatAction,omitempty"`
1658
- NuxAction *NuxAction `protobuf:"bytes,31,opt,name=nuxAction" json:"nuxAction,omitempty"`
1659
- PrimaryVersionAction *PrimaryVersionAction `protobuf:"bytes,32,opt,name=primaryVersionAction" json:"primaryVersionAction,omitempty"`
1660
- StickerAction *StickerAction `protobuf:"bytes,33,opt,name=stickerAction" json:"stickerAction,omitempty"`
1661
- RemoveRecentStickerAction *RemoveRecentStickerAction `protobuf:"bytes,34,opt,name=removeRecentStickerAction" json:"removeRecentStickerAction,omitempty"`
1662
- ChatAssignment *ChatAssignmentAction `protobuf:"bytes,35,opt,name=chatAssignment" json:"chatAssignment,omitempty"`
1663
- ChatAssignmentOpenedStatus *ChatAssignmentOpenedStatusAction `protobuf:"bytes,36,opt,name=chatAssignmentOpenedStatus" json:"chatAssignmentOpenedStatus,omitempty"`
1664
- PnForLidChatAction *PnForLidChatAction `protobuf:"bytes,37,opt,name=pnForLidChatAction" json:"pnForLidChatAction,omitempty"`
1665
- MarketingMessageAction *MarketingMessageAction `protobuf:"bytes,38,opt,name=marketingMessageAction" json:"marketingMessageAction,omitempty"`
1666
- MarketingMessageBroadcastAction *MarketingMessageBroadcastAction `protobuf:"bytes,39,opt,name=marketingMessageBroadcastAction" json:"marketingMessageBroadcastAction,omitempty"`
1667
- ExternalWebBetaAction *ExternalWebBetaAction `protobuf:"bytes,40,opt,name=externalWebBetaAction" json:"externalWebBetaAction,omitempty"`
1668
- PrivacySettingRelayAllCalls *PrivacySettingRelayAllCalls `protobuf:"bytes,41,opt,name=privacySettingRelayAllCalls" json:"privacySettingRelayAllCalls,omitempty"`
1669
- CallLogAction *CallLogAction `protobuf:"bytes,42,opt,name=callLogAction" json:"callLogAction,omitempty"`
1670
- StatusPrivacy *StatusPrivacyAction `protobuf:"bytes,44,opt,name=statusPrivacy" json:"statusPrivacy,omitempty"`
1671
- BotWelcomeRequestAction *BotWelcomeRequestAction `protobuf:"bytes,45,opt,name=botWelcomeRequestAction" json:"botWelcomeRequestAction,omitempty"`
1672
- DeleteIndividualCallLog *DeleteIndividualCallLogAction `protobuf:"bytes,46,opt,name=deleteIndividualCallLog" json:"deleteIndividualCallLog,omitempty"`
1673
- LabelReorderingAction *LabelReorderingAction `protobuf:"bytes,47,opt,name=labelReorderingAction" json:"labelReorderingAction,omitempty"`
1674
- PaymentInfoAction *PaymentInfoAction `protobuf:"bytes,48,opt,name=paymentInfoAction" json:"paymentInfoAction,omitempty"`
1675
- CustomPaymentMethodsAction *CustomPaymentMethodsAction `protobuf:"bytes,49,opt,name=customPaymentMethodsAction" json:"customPaymentMethodsAction,omitempty"`
1676
- LockChatAction *LockChatAction `protobuf:"bytes,50,opt,name=lockChatAction" json:"lockChatAction,omitempty"`
1677
- ChatLockSettings *waChatLockSettings.ChatLockSettings `protobuf:"bytes,51,opt,name=chatLockSettings" json:"chatLockSettings,omitempty"`
1678
- WamoUserIdentifierAction *WamoUserIdentifierAction `protobuf:"bytes,52,opt,name=wamoUserIdentifierAction" json:"wamoUserIdentifierAction,omitempty"`
1679
- PrivacySettingDisableLinkPreviewsAction *PrivacySettingDisableLinkPreviewsAction `protobuf:"bytes,53,opt,name=privacySettingDisableLinkPreviewsAction" json:"privacySettingDisableLinkPreviewsAction,omitempty"`
1680
- DeviceCapabilities *waDeviceCapabilities.DeviceCapabilities `protobuf:"bytes,54,opt,name=deviceCapabilities" json:"deviceCapabilities,omitempty"`
1681
- NoteEditAction *NoteEditAction `protobuf:"bytes,55,opt,name=noteEditAction" json:"noteEditAction,omitempty"`
1682
- FavoritesAction *FavoritesAction `protobuf:"bytes,56,opt,name=favoritesAction" json:"favoritesAction,omitempty"`
1683
- MerchantPaymentPartnerAction *MerchantPaymentPartnerAction `protobuf:"bytes,57,opt,name=merchantPaymentPartnerAction" json:"merchantPaymentPartnerAction,omitempty"`
1684
- WaffleAccountLinkStateAction *WaffleAccountLinkStateAction `protobuf:"bytes,58,opt,name=waffleAccountLinkStateAction" json:"waffleAccountLinkStateAction,omitempty"`
1685
- UsernameChatStartMode *UsernameChatStartModeAction `protobuf:"bytes,59,opt,name=usernameChatStartMode" json:"usernameChatStartMode,omitempty"`
1686
- NotificationActivitySettingAction *NotificationActivitySettingAction `protobuf:"bytes,60,opt,name=notificationActivitySettingAction" json:"notificationActivitySettingAction,omitempty"`
1687
- LidContactAction *LidContactAction `protobuf:"bytes,61,opt,name=lidContactAction" json:"lidContactAction,omitempty"`
1688
- CtwaPerCustomerDataSharingAction *CtwaPerCustomerDataSharingAction `protobuf:"bytes,62,opt,name=ctwaPerCustomerDataSharingAction" json:"ctwaPerCustomerDataSharingAction,omitempty"`
1689
- unknownFields protoimpl.UnknownFields
1690
- sizeCache protoimpl.SizeCache
1840
+ state protoimpl.MessageState `protogen:"open.v1"`
1841
+ Timestamp *int64 `protobuf:"varint,1,opt,name=timestamp" json:"timestamp,omitempty"`
1842
+ StarAction *StarAction `protobuf:"bytes,2,opt,name=starAction" json:"starAction,omitempty"`
1843
+ ContactAction *ContactAction `protobuf:"bytes,3,opt,name=contactAction" json:"contactAction,omitempty"`
1844
+ MuteAction *MuteAction `protobuf:"bytes,4,opt,name=muteAction" json:"muteAction,omitempty"`
1845
+ PinAction *PinAction `protobuf:"bytes,5,opt,name=pinAction" json:"pinAction,omitempty"`
1846
+ SecurityNotificationSetting *SecurityNotificationSetting `protobuf:"bytes,6,opt,name=securityNotificationSetting" json:"securityNotificationSetting,omitempty"`
1847
+ PushNameSetting *PushNameSetting `protobuf:"bytes,7,opt,name=pushNameSetting" json:"pushNameSetting,omitempty"`
1848
+ QuickReplyAction *QuickReplyAction `protobuf:"bytes,8,opt,name=quickReplyAction" json:"quickReplyAction,omitempty"`
1849
+ RecentEmojiWeightsAction *RecentEmojiWeightsAction `protobuf:"bytes,11,opt,name=recentEmojiWeightsAction" json:"recentEmojiWeightsAction,omitempty"`
1850
+ LabelEditAction *LabelEditAction `protobuf:"bytes,14,opt,name=labelEditAction" json:"labelEditAction,omitempty"`
1851
+ LabelAssociationAction *LabelAssociationAction `protobuf:"bytes,15,opt,name=labelAssociationAction" json:"labelAssociationAction,omitempty"`
1852
+ LocaleSetting *LocaleSetting `protobuf:"bytes,16,opt,name=localeSetting" json:"localeSetting,omitempty"`
1853
+ ArchiveChatAction *ArchiveChatAction `protobuf:"bytes,17,opt,name=archiveChatAction" json:"archiveChatAction,omitempty"`
1854
+ DeleteMessageForMeAction *DeleteMessageForMeAction `protobuf:"bytes,18,opt,name=deleteMessageForMeAction" json:"deleteMessageForMeAction,omitempty"`
1855
+ KeyExpiration *KeyExpiration `protobuf:"bytes,19,opt,name=keyExpiration" json:"keyExpiration,omitempty"`
1856
+ MarkChatAsReadAction *MarkChatAsReadAction `protobuf:"bytes,20,opt,name=markChatAsReadAction" json:"markChatAsReadAction,omitempty"`
1857
+ ClearChatAction *ClearChatAction `protobuf:"bytes,21,opt,name=clearChatAction" json:"clearChatAction,omitempty"`
1858
+ DeleteChatAction *DeleteChatAction `protobuf:"bytes,22,opt,name=deleteChatAction" json:"deleteChatAction,omitempty"`
1859
+ UnarchiveChatsSetting *UnarchiveChatsSetting `protobuf:"bytes,23,opt,name=unarchiveChatsSetting" json:"unarchiveChatsSetting,omitempty"`
1860
+ PrimaryFeature *PrimaryFeature `protobuf:"bytes,24,opt,name=primaryFeature" json:"primaryFeature,omitempty"`
1861
+ AndroidUnsupportedActions *AndroidUnsupportedActions `protobuf:"bytes,26,opt,name=androidUnsupportedActions" json:"androidUnsupportedActions,omitempty"`
1862
+ AgentAction *AgentAction `protobuf:"bytes,27,opt,name=agentAction" json:"agentAction,omitempty"`
1863
+ SubscriptionAction *SubscriptionAction `protobuf:"bytes,28,opt,name=subscriptionAction" json:"subscriptionAction,omitempty"`
1864
+ UserStatusMuteAction *UserStatusMuteAction `protobuf:"bytes,29,opt,name=userStatusMuteAction" json:"userStatusMuteAction,omitempty"`
1865
+ TimeFormatAction *TimeFormatAction `protobuf:"bytes,30,opt,name=timeFormatAction" json:"timeFormatAction,omitempty"`
1866
+ NuxAction *NuxAction `protobuf:"bytes,31,opt,name=nuxAction" json:"nuxAction,omitempty"`
1867
+ PrimaryVersionAction *PrimaryVersionAction `protobuf:"bytes,32,opt,name=primaryVersionAction" json:"primaryVersionAction,omitempty"`
1868
+ StickerAction *StickerAction `protobuf:"bytes,33,opt,name=stickerAction" json:"stickerAction,omitempty"`
1869
+ RemoveRecentStickerAction *RemoveRecentStickerAction `protobuf:"bytes,34,opt,name=removeRecentStickerAction" json:"removeRecentStickerAction,omitempty"`
1870
+ ChatAssignment *ChatAssignmentAction `protobuf:"bytes,35,opt,name=chatAssignment" json:"chatAssignment,omitempty"`
1871
+ ChatAssignmentOpenedStatus *ChatAssignmentOpenedStatusAction `protobuf:"bytes,36,opt,name=chatAssignmentOpenedStatus" json:"chatAssignmentOpenedStatus,omitempty"`
1872
+ PnForLidChatAction *PnForLidChatAction `protobuf:"bytes,37,opt,name=pnForLidChatAction" json:"pnForLidChatAction,omitempty"`
1873
+ MarketingMessageAction *MarketingMessageAction `protobuf:"bytes,38,opt,name=marketingMessageAction" json:"marketingMessageAction,omitempty"`
1874
+ MarketingMessageBroadcastAction *MarketingMessageBroadcastAction `protobuf:"bytes,39,opt,name=marketingMessageBroadcastAction" json:"marketingMessageBroadcastAction,omitempty"`
1875
+ ExternalWebBetaAction *ExternalWebBetaAction `protobuf:"bytes,40,opt,name=externalWebBetaAction" json:"externalWebBetaAction,omitempty"`
1876
+ PrivacySettingRelayAllCalls *PrivacySettingRelayAllCalls `protobuf:"bytes,41,opt,name=privacySettingRelayAllCalls" json:"privacySettingRelayAllCalls,omitempty"`
1877
+ CallLogAction *CallLogAction `protobuf:"bytes,42,opt,name=callLogAction" json:"callLogAction,omitempty"`
1878
+ StatusPrivacy *StatusPrivacyAction `protobuf:"bytes,44,opt,name=statusPrivacy" json:"statusPrivacy,omitempty"`
1879
+ BotWelcomeRequestAction *BotWelcomeRequestAction `protobuf:"bytes,45,opt,name=botWelcomeRequestAction" json:"botWelcomeRequestAction,omitempty"`
1880
+ DeleteIndividualCallLog *DeleteIndividualCallLogAction `protobuf:"bytes,46,opt,name=deleteIndividualCallLog" json:"deleteIndividualCallLog,omitempty"`
1881
+ LabelReorderingAction *LabelReorderingAction `protobuf:"bytes,47,opt,name=labelReorderingAction" json:"labelReorderingAction,omitempty"`
1882
+ PaymentInfoAction *PaymentInfoAction `protobuf:"bytes,48,opt,name=paymentInfoAction" json:"paymentInfoAction,omitempty"`
1883
+ CustomPaymentMethodsAction *CustomPaymentMethodsAction `protobuf:"bytes,49,opt,name=customPaymentMethodsAction" json:"customPaymentMethodsAction,omitempty"`
1884
+ LockChatAction *LockChatAction `protobuf:"bytes,50,opt,name=lockChatAction" json:"lockChatAction,omitempty"`
1885
+ ChatLockSettings *waChatLockSettings.ChatLockSettings `protobuf:"bytes,51,opt,name=chatLockSettings" json:"chatLockSettings,omitempty"`
1886
+ WamoUserIdentifierAction *WamoUserIdentifierAction `protobuf:"bytes,52,opt,name=wamoUserIdentifierAction" json:"wamoUserIdentifierAction,omitempty"`
1887
+ PrivacySettingDisableLinkPreviewsAction *PrivacySettingDisableLinkPreviewsAction `protobuf:"bytes,53,opt,name=privacySettingDisableLinkPreviewsAction" json:"privacySettingDisableLinkPreviewsAction,omitempty"`
1888
+ DeviceCapabilities *waDeviceCapabilities.DeviceCapabilities `protobuf:"bytes,54,opt,name=deviceCapabilities" json:"deviceCapabilities,omitempty"`
1889
+ NoteEditAction *NoteEditAction `protobuf:"bytes,55,opt,name=noteEditAction" json:"noteEditAction,omitempty"`
1890
+ FavoritesAction *FavoritesAction `protobuf:"bytes,56,opt,name=favoritesAction" json:"favoritesAction,omitempty"`
1891
+ MerchantPaymentPartnerAction *MerchantPaymentPartnerAction `protobuf:"bytes,57,opt,name=merchantPaymentPartnerAction" json:"merchantPaymentPartnerAction,omitempty"`
1892
+ WaffleAccountLinkStateAction *WaffleAccountLinkStateAction `protobuf:"bytes,58,opt,name=waffleAccountLinkStateAction" json:"waffleAccountLinkStateAction,omitempty"`
1893
+ UsernameChatStartMode *UsernameChatStartModeAction `protobuf:"bytes,59,opt,name=usernameChatStartMode" json:"usernameChatStartMode,omitempty"`
1894
+ NotificationActivitySettingAction *NotificationActivitySettingAction `protobuf:"bytes,60,opt,name=notificationActivitySettingAction" json:"notificationActivitySettingAction,omitempty"`
1895
+ LidContactAction *LidContactAction `protobuf:"bytes,61,opt,name=lidContactAction" json:"lidContactAction,omitempty"`
1896
+ CtwaPerCustomerDataSharingAction *CtwaPerCustomerDataSharingAction `protobuf:"bytes,62,opt,name=ctwaPerCustomerDataSharingAction" json:"ctwaPerCustomerDataSharingAction,omitempty"`
1897
+ PaymentTosAction *PaymentTosAction `protobuf:"bytes,63,opt,name=paymentTosAction" json:"paymentTosAction,omitempty"`
1898
+ PrivacySettingChannelsPersonalisedRecommendationAction *PrivacySettingChannelsPersonalisedRecommendationAction `protobuf:"bytes,64,opt,name=privacySettingChannelsPersonalisedRecommendationAction" json:"privacySettingChannelsPersonalisedRecommendationAction,omitempty"`
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"`
1905
+ unknownFields protoimpl.UnknownFields
1906
+ sizeCache protoimpl.SizeCache
1691
1907
  }
1692
1908
 
1693
1909
  func (x *SyncActionValue) Reset() {
1694
1910
  *x = SyncActionValue{}
1695
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1911
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
1696
1912
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1697
1913
  ms.StoreMessageInfo(mi)
1698
1914
  }
@@ -1704,7 +1920,7 @@ func (x *SyncActionValue) String() string {
1704
1920
  func (*SyncActionValue) ProtoMessage() {}
1705
1921
 
1706
1922
  func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
1707
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1923
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
1708
1924
  if x != nil {
1709
1925
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1710
1926
  if ms.LoadMessageInfo() == nil {
@@ -1717,7 +1933,7 @@ func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
1717
1933
 
1718
1934
  // Deprecated: Use SyncActionValue.ProtoReflect.Descriptor instead.
1719
1935
  func (*SyncActionValue) Descriptor() ([]byte, []int) {
1720
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11}
1936
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13}
1721
1937
  }
1722
1938
 
1723
1939
  func (x *SyncActionValue) GetTimestamp() int64 {
@@ -2112,16 +2328,272 @@ func (x *SyncActionValue) GetCtwaPerCustomerDataSharingAction() *CtwaPerCustomer
2112
2328
  return nil
2113
2329
  }
2114
2330
 
2115
- type CtwaPerCustomerDataSharingAction struct {
2116
- state protoimpl.MessageState `protogen:"open.v1"`
2117
- IsCtwaPerCustomerDataSharingEnabled *bool `protobuf:"varint,1,opt,name=isCtwaPerCustomerDataSharingEnabled" json:"isCtwaPerCustomerDataSharingEnabled,omitempty"`
2118
- unknownFields protoimpl.UnknownFields
2331
+ func (x *SyncActionValue) GetPaymentTosAction() *PaymentTosAction {
2332
+ if x != nil {
2333
+ return x.PaymentTosAction
2334
+ }
2335
+ return nil
2336
+ }
2337
+
2338
+ func (x *SyncActionValue) GetPrivacySettingChannelsPersonalisedRecommendationAction() *PrivacySettingChannelsPersonalisedRecommendationAction {
2339
+ if x != nil {
2340
+ return x.PrivacySettingChannelsPersonalisedRecommendationAction
2341
+ }
2342
+ return nil
2343
+ }
2344
+
2345
+ func (x *SyncActionValue) GetBusinessBroadcastAssociationAction() *BusinessBroadcastAssociationAction {
2346
+ if x != nil {
2347
+ return x.BusinessBroadcastAssociationAction
2348
+ }
2349
+ return nil
2350
+ }
2351
+
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 {
2388
+ state protoimpl.MessageState `protogen:"open.v1"`
2389
+ Enabled *bool `protobuf:"varint,1,opt,name=enabled" json:"enabled,omitempty"`
2390
+ unknownFields protoimpl.UnknownFields
2391
+ sizeCache protoimpl.SizeCache
2392
+ }
2393
+
2394
+ func (x *StatusPostOptInNotificationPreferencesAction) Reset() {
2395
+ *x = StatusPostOptInNotificationPreferencesAction{}
2396
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2397
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2398
+ ms.StoreMessageInfo(mi)
2399
+ }
2400
+
2401
+ func (x *StatusPostOptInNotificationPreferencesAction) String() string {
2402
+ return protoimpl.X.MessageStringOf(x)
2403
+ }
2404
+
2405
+ func (*StatusPostOptInNotificationPreferencesAction) ProtoMessage() {}
2406
+
2407
+ func (x *StatusPostOptInNotificationPreferencesAction) ProtoReflect() protoreflect.Message {
2408
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2409
+ if x != nil {
2410
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2411
+ if ms.LoadMessageInfo() == nil {
2412
+ ms.StoreMessageInfo(mi)
2413
+ }
2414
+ return ms
2415
+ }
2416
+ return mi.MessageOf(x)
2417
+ }
2418
+
2419
+ // Deprecated: Use StatusPostOptInNotificationPreferencesAction.ProtoReflect.Descriptor instead.
2420
+ func (*StatusPostOptInNotificationPreferencesAction) Descriptor() ([]byte, []int) {
2421
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14}
2422
+ }
2423
+
2424
+ func (x *StatusPostOptInNotificationPreferencesAction) GetEnabled() bool {
2425
+ if x != nil && x.Enabled != nil {
2426
+ return *x.Enabled
2427
+ }
2428
+ return false
2429
+ }
2430
+
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
2437
+ }
2438
+
2439
+ func (x *BroadcastListParticipant) Reset() {
2440
+ *x = BroadcastListParticipant{}
2441
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2442
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2443
+ ms.StoreMessageInfo(mi)
2444
+ }
2445
+
2446
+ func (x *BroadcastListParticipant) String() string {
2447
+ return protoimpl.X.MessageStringOf(x)
2448
+ }
2449
+
2450
+ func (*BroadcastListParticipant) ProtoMessage() {}
2451
+
2452
+ func (x *BroadcastListParticipant) ProtoReflect() protoreflect.Message {
2453
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2454
+ if x != nil {
2455
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2456
+ if ms.LoadMessageInfo() == nil {
2457
+ ms.StoreMessageInfo(mi)
2458
+ }
2459
+ return ms
2460
+ }
2461
+ return mi.MessageOf(x)
2462
+ }
2463
+
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
2119
2591
  sizeCache protoimpl.SizeCache
2120
2592
  }
2121
2593
 
2122
2594
  func (x *CtwaPerCustomerDataSharingAction) Reset() {
2123
2595
  *x = CtwaPerCustomerDataSharingAction{}
2124
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
2596
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2125
2597
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2126
2598
  ms.StoreMessageInfo(mi)
2127
2599
  }
@@ -2133,7 +2605,7 @@ func (x *CtwaPerCustomerDataSharingAction) String() string {
2133
2605
  func (*CtwaPerCustomerDataSharingAction) ProtoMessage() {}
2134
2606
 
2135
2607
  func (x *CtwaPerCustomerDataSharingAction) ProtoReflect() protoreflect.Message {
2136
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
2608
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2137
2609
  if x != nil {
2138
2610
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2139
2611
  if ms.LoadMessageInfo() == nil {
@@ -2146,7 +2618,7 @@ func (x *CtwaPerCustomerDataSharingAction) ProtoReflect() protoreflect.Message {
2146
2618
 
2147
2619
  // Deprecated: Use CtwaPerCustomerDataSharingAction.ProtoReflect.Descriptor instead.
2148
2620
  func (*CtwaPerCustomerDataSharingAction) Descriptor() ([]byte, []int) {
2149
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12}
2621
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{18}
2150
2622
  }
2151
2623
 
2152
2624
  func (x *CtwaPerCustomerDataSharingAction) GetIsCtwaPerCustomerDataSharingEnabled() bool {
@@ -2168,7 +2640,7 @@ type LidContactAction struct {
2168
2640
 
2169
2641
  func (x *LidContactAction) Reset() {
2170
2642
  *x = LidContactAction{}
2171
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
2643
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2172
2644
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2173
2645
  ms.StoreMessageInfo(mi)
2174
2646
  }
@@ -2180,7 +2652,7 @@ func (x *LidContactAction) String() string {
2180
2652
  func (*LidContactAction) ProtoMessage() {}
2181
2653
 
2182
2654
  func (x *LidContactAction) ProtoReflect() protoreflect.Message {
2183
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
2655
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2184
2656
  if x != nil {
2185
2657
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2186
2658
  if ms.LoadMessageInfo() == nil {
@@ -2193,7 +2665,7 @@ func (x *LidContactAction) ProtoReflect() protoreflect.Message {
2193
2665
 
2194
2666
  // Deprecated: Use LidContactAction.ProtoReflect.Descriptor instead.
2195
2667
  func (*LidContactAction) Descriptor() ([]byte, []int) {
2196
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13}
2668
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{19}
2197
2669
  }
2198
2670
 
2199
2671
  func (x *LidContactAction) GetFullName() string {
@@ -2233,7 +2705,7 @@ type FavoritesAction struct {
2233
2705
 
2234
2706
  func (x *FavoritesAction) Reset() {
2235
2707
  *x = FavoritesAction{}
2236
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2708
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2237
2709
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2238
2710
  ms.StoreMessageInfo(mi)
2239
2711
  }
@@ -2245,7 +2717,7 @@ func (x *FavoritesAction) String() string {
2245
2717
  func (*FavoritesAction) ProtoMessage() {}
2246
2718
 
2247
2719
  func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
2248
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2720
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2249
2721
  if x != nil {
2250
2722
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2251
2723
  if ms.LoadMessageInfo() == nil {
@@ -2258,7 +2730,7 @@ func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
2258
2730
 
2259
2731
  // Deprecated: Use FavoritesAction.ProtoReflect.Descriptor instead.
2260
2732
  func (*FavoritesAction) Descriptor() ([]byte, []int) {
2261
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14}
2733
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20}
2262
2734
  }
2263
2735
 
2264
2736
  func (x *FavoritesAction) GetFavorites() []*FavoritesAction_Favorite {
@@ -2268,6 +2740,50 @@ func (x *FavoritesAction) GetFavorites() []*FavoritesAction_Favorite {
2268
2740
  return nil
2269
2741
  }
2270
2742
 
2743
+ type PrivacySettingChannelsPersonalisedRecommendationAction struct {
2744
+ state protoimpl.MessageState `protogen:"open.v1"`
2745
+ IsUserOptedOut *bool `protobuf:"varint,1,opt,name=isUserOptedOut" json:"isUserOptedOut,omitempty"`
2746
+ unknownFields protoimpl.UnknownFields
2747
+ sizeCache protoimpl.SizeCache
2748
+ }
2749
+
2750
+ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) Reset() {
2751
+ *x = PrivacySettingChannelsPersonalisedRecommendationAction{}
2752
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2753
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2754
+ ms.StoreMessageInfo(mi)
2755
+ }
2756
+
2757
+ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) String() string {
2758
+ return protoimpl.X.MessageStringOf(x)
2759
+ }
2760
+
2761
+ func (*PrivacySettingChannelsPersonalisedRecommendationAction) ProtoMessage() {}
2762
+
2763
+ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) ProtoReflect() protoreflect.Message {
2764
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2765
+ if x != nil {
2766
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2767
+ if ms.LoadMessageInfo() == nil {
2768
+ ms.StoreMessageInfo(mi)
2769
+ }
2770
+ return ms
2771
+ }
2772
+ return mi.MessageOf(x)
2773
+ }
2774
+
2775
+ // Deprecated: Use PrivacySettingChannelsPersonalisedRecommendationAction.ProtoReflect.Descriptor instead.
2776
+ func (*PrivacySettingChannelsPersonalisedRecommendationAction) Descriptor() ([]byte, []int) {
2777
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{21}
2778
+ }
2779
+
2780
+ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) GetIsUserOptedOut() bool {
2781
+ if x != nil && x.IsUserOptedOut != nil {
2782
+ return *x.IsUserOptedOut
2783
+ }
2784
+ return false
2785
+ }
2786
+
2271
2787
  type PrivacySettingDisableLinkPreviewsAction struct {
2272
2788
  state protoimpl.MessageState `protogen:"open.v1"`
2273
2789
  IsPreviewsDisabled *bool `protobuf:"varint,1,opt,name=isPreviewsDisabled" json:"isPreviewsDisabled,omitempty"`
@@ -2277,7 +2793,7 @@ type PrivacySettingDisableLinkPreviewsAction struct {
2277
2793
 
2278
2794
  func (x *PrivacySettingDisableLinkPreviewsAction) Reset() {
2279
2795
  *x = PrivacySettingDisableLinkPreviewsAction{}
2280
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2796
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2281
2797
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2282
2798
  ms.StoreMessageInfo(mi)
2283
2799
  }
@@ -2289,7 +2805,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) String() string {
2289
2805
  func (*PrivacySettingDisableLinkPreviewsAction) ProtoMessage() {}
2290
2806
 
2291
2807
  func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Message {
2292
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2808
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2293
2809
  if x != nil {
2294
2810
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2295
2811
  if ms.LoadMessageInfo() == nil {
@@ -2302,7 +2818,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Me
2302
2818
 
2303
2819
  // Deprecated: Use PrivacySettingDisableLinkPreviewsAction.ProtoReflect.Descriptor instead.
2304
2820
  func (*PrivacySettingDisableLinkPreviewsAction) Descriptor() ([]byte, []int) {
2305
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{15}
2821
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22}
2306
2822
  }
2307
2823
 
2308
2824
  func (x *PrivacySettingDisableLinkPreviewsAction) GetIsPreviewsDisabled() bool {
@@ -2321,7 +2837,7 @@ type WamoUserIdentifierAction struct {
2321
2837
 
2322
2838
  func (x *WamoUserIdentifierAction) Reset() {
2323
2839
  *x = WamoUserIdentifierAction{}
2324
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2840
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
2325
2841
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2326
2842
  ms.StoreMessageInfo(mi)
2327
2843
  }
@@ -2333,7 +2849,7 @@ func (x *WamoUserIdentifierAction) String() string {
2333
2849
  func (*WamoUserIdentifierAction) ProtoMessage() {}
2334
2850
 
2335
2851
  func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
2336
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2852
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
2337
2853
  if x != nil {
2338
2854
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2339
2855
  if ms.LoadMessageInfo() == nil {
@@ -2346,7 +2862,7 @@ func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
2346
2862
 
2347
2863
  // Deprecated: Use WamoUserIdentifierAction.ProtoReflect.Descriptor instead.
2348
2864
  func (*WamoUserIdentifierAction) Descriptor() ([]byte, []int) {
2349
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16}
2865
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{23}
2350
2866
  }
2351
2867
 
2352
2868
  func (x *WamoUserIdentifierAction) GetIdentifier() string {
@@ -2365,7 +2881,7 @@ type LockChatAction struct {
2365
2881
 
2366
2882
  func (x *LockChatAction) Reset() {
2367
2883
  *x = LockChatAction{}
2368
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2884
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
2369
2885
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2370
2886
  ms.StoreMessageInfo(mi)
2371
2887
  }
@@ -2377,7 +2893,7 @@ func (x *LockChatAction) String() string {
2377
2893
  func (*LockChatAction) ProtoMessage() {}
2378
2894
 
2379
2895
  func (x *LockChatAction) ProtoReflect() protoreflect.Message {
2380
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2896
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
2381
2897
  if x != nil {
2382
2898
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2383
2899
  if ms.LoadMessageInfo() == nil {
@@ -2390,7 +2906,7 @@ func (x *LockChatAction) ProtoReflect() protoreflect.Message {
2390
2906
 
2391
2907
  // Deprecated: Use LockChatAction.ProtoReflect.Descriptor instead.
2392
2908
  func (*LockChatAction) Descriptor() ([]byte, []int) {
2393
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{17}
2909
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{24}
2394
2910
  }
2395
2911
 
2396
2912
  func (x *LockChatAction) GetLocked() bool {
@@ -2409,7 +2925,7 @@ type CustomPaymentMethodsAction struct {
2409
2925
 
2410
2926
  func (x *CustomPaymentMethodsAction) Reset() {
2411
2927
  *x = CustomPaymentMethodsAction{}
2412
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2928
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
2413
2929
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2414
2930
  ms.StoreMessageInfo(mi)
2415
2931
  }
@@ -2421,7 +2937,7 @@ func (x *CustomPaymentMethodsAction) String() string {
2421
2937
  func (*CustomPaymentMethodsAction) ProtoMessage() {}
2422
2938
 
2423
2939
  func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
2424
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2940
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
2425
2941
  if x != nil {
2426
2942
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2427
2943
  if ms.LoadMessageInfo() == nil {
@@ -2434,7 +2950,7 @@ func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
2434
2950
 
2435
2951
  // Deprecated: Use CustomPaymentMethodsAction.ProtoReflect.Descriptor instead.
2436
2952
  func (*CustomPaymentMethodsAction) Descriptor() ([]byte, []int) {
2437
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{18}
2953
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{25}
2438
2954
  }
2439
2955
 
2440
2956
  func (x *CustomPaymentMethodsAction) GetCustomPaymentMethods() []*CustomPaymentMethod {
@@ -2456,7 +2972,7 @@ type CustomPaymentMethod struct {
2456
2972
 
2457
2973
  func (x *CustomPaymentMethod) Reset() {
2458
2974
  *x = CustomPaymentMethod{}
2459
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2975
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
2460
2976
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2461
2977
  ms.StoreMessageInfo(mi)
2462
2978
  }
@@ -2468,7 +2984,7 @@ func (x *CustomPaymentMethod) String() string {
2468
2984
  func (*CustomPaymentMethod) ProtoMessage() {}
2469
2985
 
2470
2986
  func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
2471
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2987
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
2472
2988
  if x != nil {
2473
2989
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2474
2990
  if ms.LoadMessageInfo() == nil {
@@ -2481,7 +2997,7 @@ func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
2481
2997
 
2482
2998
  // Deprecated: Use CustomPaymentMethod.ProtoReflect.Descriptor instead.
2483
2999
  func (*CustomPaymentMethod) Descriptor() ([]byte, []int) {
2484
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{19}
3000
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{26}
2485
3001
  }
2486
3002
 
2487
3003
  func (x *CustomPaymentMethod) GetCredentialID() string {
@@ -2522,7 +3038,7 @@ type CustomPaymentMethodMetadata struct {
2522
3038
 
2523
3039
  func (x *CustomPaymentMethodMetadata) Reset() {
2524
3040
  *x = CustomPaymentMethodMetadata{}
2525
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
3041
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
2526
3042
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2527
3043
  ms.StoreMessageInfo(mi)
2528
3044
  }
@@ -2534,7 +3050,7 @@ func (x *CustomPaymentMethodMetadata) String() string {
2534
3050
  func (*CustomPaymentMethodMetadata) ProtoMessage() {}
2535
3051
 
2536
3052
  func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
2537
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
3053
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
2538
3054
  if x != nil {
2539
3055
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2540
3056
  if ms.LoadMessageInfo() == nil {
@@ -2547,7 +3063,7 @@ func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
2547
3063
 
2548
3064
  // Deprecated: Use CustomPaymentMethodMetadata.ProtoReflect.Descriptor instead.
2549
3065
  func (*CustomPaymentMethodMetadata) Descriptor() ([]byte, []int) {
2550
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20}
3066
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{27}
2551
3067
  }
2552
3068
 
2553
3069
  func (x *CustomPaymentMethodMetadata) GetKey() string {
@@ -2573,7 +3089,7 @@ type PaymentInfoAction struct {
2573
3089
 
2574
3090
  func (x *PaymentInfoAction) Reset() {
2575
3091
  *x = PaymentInfoAction{}
2576
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
3092
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
2577
3093
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2578
3094
  ms.StoreMessageInfo(mi)
2579
3095
  }
@@ -2585,7 +3101,7 @@ func (x *PaymentInfoAction) String() string {
2585
3101
  func (*PaymentInfoAction) ProtoMessage() {}
2586
3102
 
2587
3103
  func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
2588
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
3104
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
2589
3105
  if x != nil {
2590
3106
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2591
3107
  if ms.LoadMessageInfo() == nil {
@@ -2598,7 +3114,7 @@ func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
2598
3114
 
2599
3115
  // Deprecated: Use PaymentInfoAction.ProtoReflect.Descriptor instead.
2600
3116
  func (*PaymentInfoAction) Descriptor() ([]byte, []int) {
2601
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{21}
3117
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{28}
2602
3118
  }
2603
3119
 
2604
3120
  func (x *PaymentInfoAction) GetCpi() string {
@@ -2617,7 +3133,7 @@ type LabelReorderingAction struct {
2617
3133
 
2618
3134
  func (x *LabelReorderingAction) Reset() {
2619
3135
  *x = LabelReorderingAction{}
2620
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
3136
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
2621
3137
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2622
3138
  ms.StoreMessageInfo(mi)
2623
3139
  }
@@ -2629,7 +3145,7 @@ func (x *LabelReorderingAction) String() string {
2629
3145
  func (*LabelReorderingAction) ProtoMessage() {}
2630
3146
 
2631
3147
  func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
2632
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
3148
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
2633
3149
  if x != nil {
2634
3150
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2635
3151
  if ms.LoadMessageInfo() == nil {
@@ -2642,7 +3158,7 @@ func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
2642
3158
 
2643
3159
  // Deprecated: Use LabelReorderingAction.ProtoReflect.Descriptor instead.
2644
3160
  func (*LabelReorderingAction) Descriptor() ([]byte, []int) {
2645
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22}
3161
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{29}
2646
3162
  }
2647
3163
 
2648
3164
  func (x *LabelReorderingAction) GetSortedLabelIDs() []int32 {
@@ -2662,7 +3178,7 @@ type DeleteIndividualCallLogAction struct {
2662
3178
 
2663
3179
  func (x *DeleteIndividualCallLogAction) Reset() {
2664
3180
  *x = DeleteIndividualCallLogAction{}
2665
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
3181
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
2666
3182
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2667
3183
  ms.StoreMessageInfo(mi)
2668
3184
  }
@@ -2674,7 +3190,7 @@ func (x *DeleteIndividualCallLogAction) String() string {
2674
3190
  func (*DeleteIndividualCallLogAction) ProtoMessage() {}
2675
3191
 
2676
3192
  func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
2677
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
3193
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
2678
3194
  if x != nil {
2679
3195
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2680
3196
  if ms.LoadMessageInfo() == nil {
@@ -2687,7 +3203,7 @@ func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
2687
3203
 
2688
3204
  // Deprecated: Use DeleteIndividualCallLogAction.ProtoReflect.Descriptor instead.
2689
3205
  func (*DeleteIndividualCallLogAction) Descriptor() ([]byte, []int) {
2690
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{23}
3206
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{30}
2691
3207
  }
2692
3208
 
2693
3209
  func (x *DeleteIndividualCallLogAction) GetPeerJID() string {
@@ -2713,7 +3229,7 @@ type BotWelcomeRequestAction struct {
2713
3229
 
2714
3230
  func (x *BotWelcomeRequestAction) Reset() {
2715
3231
  *x = BotWelcomeRequestAction{}
2716
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
3232
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
2717
3233
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2718
3234
  ms.StoreMessageInfo(mi)
2719
3235
  }
@@ -2725,7 +3241,7 @@ func (x *BotWelcomeRequestAction) String() string {
2725
3241
  func (*BotWelcomeRequestAction) ProtoMessage() {}
2726
3242
 
2727
3243
  func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
2728
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
3244
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
2729
3245
  if x != nil {
2730
3246
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2731
3247
  if ms.LoadMessageInfo() == nil {
@@ -2738,14 +3254,58 @@ func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
2738
3254
 
2739
3255
  // Deprecated: Use BotWelcomeRequestAction.ProtoReflect.Descriptor instead.
2740
3256
  func (*BotWelcomeRequestAction) Descriptor() ([]byte, []int) {
2741
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{24}
3257
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{31}
2742
3258
  }
2743
3259
 
2744
3260
  func (x *BotWelcomeRequestAction) GetIsSent() bool {
2745
3261
  if x != nil && x.IsSent != nil {
2746
3262
  return *x.IsSent
2747
3263
  }
2748
- return false
3264
+ return false
3265
+ }
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 ""
2749
3309
  }
2750
3310
 
2751
3311
  type CallLogAction struct {
@@ -2757,7 +3317,7 @@ type CallLogAction struct {
2757
3317
 
2758
3318
  func (x *CallLogAction) Reset() {
2759
3319
  *x = CallLogAction{}
2760
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
3320
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
2761
3321
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2762
3322
  ms.StoreMessageInfo(mi)
2763
3323
  }
@@ -2769,7 +3329,7 @@ func (x *CallLogAction) String() string {
2769
3329
  func (*CallLogAction) ProtoMessage() {}
2770
3330
 
2771
3331
  func (x *CallLogAction) ProtoReflect() protoreflect.Message {
2772
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
3332
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
2773
3333
  if x != nil {
2774
3334
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2775
3335
  if ms.LoadMessageInfo() == nil {
@@ -2782,7 +3342,7 @@ func (x *CallLogAction) ProtoReflect() protoreflect.Message {
2782
3342
 
2783
3343
  // Deprecated: Use CallLogAction.ProtoReflect.Descriptor instead.
2784
3344
  func (*CallLogAction) Descriptor() ([]byte, []int) {
2785
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{25}
3345
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{33}
2786
3346
  }
2787
3347
 
2788
3348
  func (x *CallLogAction) GetCallLogRecord() *CallLogRecord {
@@ -2801,7 +3361,7 @@ type PrivacySettingRelayAllCalls struct {
2801
3361
 
2802
3362
  func (x *PrivacySettingRelayAllCalls) Reset() {
2803
3363
  *x = PrivacySettingRelayAllCalls{}
2804
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
3364
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
2805
3365
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2806
3366
  ms.StoreMessageInfo(mi)
2807
3367
  }
@@ -2813,7 +3373,7 @@ func (x *PrivacySettingRelayAllCalls) String() string {
2813
3373
  func (*PrivacySettingRelayAllCalls) ProtoMessage() {}
2814
3374
 
2815
3375
  func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
2816
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
3376
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
2817
3377
  if x != nil {
2818
3378
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2819
3379
  if ms.LoadMessageInfo() == nil {
@@ -2826,7 +3386,7 @@ func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
2826
3386
 
2827
3387
  // Deprecated: Use PrivacySettingRelayAllCalls.ProtoReflect.Descriptor instead.
2828
3388
  func (*PrivacySettingRelayAllCalls) Descriptor() ([]byte, []int) {
2829
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{26}
3389
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{34}
2830
3390
  }
2831
3391
 
2832
3392
  func (x *PrivacySettingRelayAllCalls) GetIsEnabled() bool {
@@ -2836,6 +3396,50 @@ func (x *PrivacySettingRelayAllCalls) GetIsEnabled() bool {
2836
3396
  return false
2837
3397
  }
2838
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
+
2839
3443
  type ExternalWebBetaAction struct {
2840
3444
  state protoimpl.MessageState `protogen:"open.v1"`
2841
3445
  IsOptIn *bool `protobuf:"varint,1,opt,name=isOptIn" json:"isOptIn,omitempty"`
@@ -2845,7 +3449,7 @@ type ExternalWebBetaAction struct {
2845
3449
 
2846
3450
  func (x *ExternalWebBetaAction) Reset() {
2847
3451
  *x = ExternalWebBetaAction{}
2848
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
3452
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
2849
3453
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2850
3454
  ms.StoreMessageInfo(mi)
2851
3455
  }
@@ -2857,7 +3461,7 @@ func (x *ExternalWebBetaAction) String() string {
2857
3461
  func (*ExternalWebBetaAction) ProtoMessage() {}
2858
3462
 
2859
3463
  func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
2860
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
3464
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
2861
3465
  if x != nil {
2862
3466
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2863
3467
  if ms.LoadMessageInfo() == nil {
@@ -2870,7 +3474,7 @@ func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
2870
3474
 
2871
3475
  // Deprecated: Use ExternalWebBetaAction.ProtoReflect.Descriptor instead.
2872
3476
  func (*ExternalWebBetaAction) Descriptor() ([]byte, []int) {
2873
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{27}
3477
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{36}
2874
3478
  }
2875
3479
 
2876
3480
  func (x *ExternalWebBetaAction) GetIsOptIn() bool {
@@ -2889,7 +3493,7 @@ type MarketingMessageBroadcastAction struct {
2889
3493
 
2890
3494
  func (x *MarketingMessageBroadcastAction) Reset() {
2891
3495
  *x = MarketingMessageBroadcastAction{}
2892
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
3496
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
2893
3497
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2894
3498
  ms.StoreMessageInfo(mi)
2895
3499
  }
@@ -2901,7 +3505,7 @@ func (x *MarketingMessageBroadcastAction) String() string {
2901
3505
  func (*MarketingMessageBroadcastAction) ProtoMessage() {}
2902
3506
 
2903
3507
  func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
2904
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
3508
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
2905
3509
  if x != nil {
2906
3510
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2907
3511
  if ms.LoadMessageInfo() == nil {
@@ -2914,7 +3518,7 @@ func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
2914
3518
 
2915
3519
  // Deprecated: Use MarketingMessageBroadcastAction.ProtoReflect.Descriptor instead.
2916
3520
  func (*MarketingMessageBroadcastAction) Descriptor() ([]byte, []int) {
2917
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{28}
3521
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{37}
2918
3522
  }
2919
3523
 
2920
3524
  func (x *MarketingMessageBroadcastAction) GetRepliedCount() int32 {
@@ -2933,7 +3537,7 @@ type PnForLidChatAction struct {
2933
3537
 
2934
3538
  func (x *PnForLidChatAction) Reset() {
2935
3539
  *x = PnForLidChatAction{}
2936
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
3540
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
2937
3541
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2938
3542
  ms.StoreMessageInfo(mi)
2939
3543
  }
@@ -2945,7 +3549,7 @@ func (x *PnForLidChatAction) String() string {
2945
3549
  func (*PnForLidChatAction) ProtoMessage() {}
2946
3550
 
2947
3551
  func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
2948
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
3552
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
2949
3553
  if x != nil {
2950
3554
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2951
3555
  if ms.LoadMessageInfo() == nil {
@@ -2958,7 +3562,7 @@ func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
2958
3562
 
2959
3563
  // Deprecated: Use PnForLidChatAction.ProtoReflect.Descriptor instead.
2960
3564
  func (*PnForLidChatAction) Descriptor() ([]byte, []int) {
2961
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{29}
3565
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{38}
2962
3566
  }
2963
3567
 
2964
3568
  func (x *PnForLidChatAction) GetPnJID() string {
@@ -2977,7 +3581,7 @@ type ChatAssignmentOpenedStatusAction struct {
2977
3581
 
2978
3582
  func (x *ChatAssignmentOpenedStatusAction) Reset() {
2979
3583
  *x = ChatAssignmentOpenedStatusAction{}
2980
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
3584
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
2981
3585
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2982
3586
  ms.StoreMessageInfo(mi)
2983
3587
  }
@@ -2989,7 +3593,7 @@ func (x *ChatAssignmentOpenedStatusAction) String() string {
2989
3593
  func (*ChatAssignmentOpenedStatusAction) ProtoMessage() {}
2990
3594
 
2991
3595
  func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
2992
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
3596
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
2993
3597
  if x != nil {
2994
3598
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2995
3599
  if ms.LoadMessageInfo() == nil {
@@ -3002,7 +3606,7 @@ func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
3002
3606
 
3003
3607
  // Deprecated: Use ChatAssignmentOpenedStatusAction.ProtoReflect.Descriptor instead.
3004
3608
  func (*ChatAssignmentOpenedStatusAction) Descriptor() ([]byte, []int) {
3005
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{30}
3609
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{39}
3006
3610
  }
3007
3611
 
3008
3612
  func (x *ChatAssignmentOpenedStatusAction) GetChatOpened() bool {
@@ -3021,7 +3625,7 @@ type ChatAssignmentAction struct {
3021
3625
 
3022
3626
  func (x *ChatAssignmentAction) Reset() {
3023
3627
  *x = ChatAssignmentAction{}
3024
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
3628
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3025
3629
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3026
3630
  ms.StoreMessageInfo(mi)
3027
3631
  }
@@ -3033,7 +3637,7 @@ func (x *ChatAssignmentAction) String() string {
3033
3637
  func (*ChatAssignmentAction) ProtoMessage() {}
3034
3638
 
3035
3639
  func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
3036
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
3640
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3037
3641
  if x != nil {
3038
3642
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3039
3643
  if ms.LoadMessageInfo() == nil {
@@ -3046,7 +3650,7 @@ func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
3046
3650
 
3047
3651
  // Deprecated: Use ChatAssignmentAction.ProtoReflect.Descriptor instead.
3048
3652
  func (*ChatAssignmentAction) Descriptor() ([]byte, []int) {
3049
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{31}
3653
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{40}
3050
3654
  }
3051
3655
 
3052
3656
  func (x *ChatAssignmentAction) GetDeviceAgentID() string {
@@ -3057,25 +3661,27 @@ func (x *ChatAssignmentAction) GetDeviceAgentID() string {
3057
3661
  }
3058
3662
 
3059
3663
  type StickerAction struct {
3060
- state protoimpl.MessageState `protogen:"open.v1"`
3061
- URL *string `protobuf:"bytes,1,opt,name=URL" json:"URL,omitempty"`
3062
- FileEncSHA256 []byte `protobuf:"bytes,2,opt,name=fileEncSHA256" json:"fileEncSHA256,omitempty"`
3063
- MediaKey []byte `protobuf:"bytes,3,opt,name=mediaKey" json:"mediaKey,omitempty"`
3064
- Mimetype *string `protobuf:"bytes,4,opt,name=mimetype" json:"mimetype,omitempty"`
3065
- Height *uint32 `protobuf:"varint,5,opt,name=height" json:"height,omitempty"`
3066
- Width *uint32 `protobuf:"varint,6,opt,name=width" json:"width,omitempty"`
3067
- DirectPath *string `protobuf:"bytes,7,opt,name=directPath" json:"directPath,omitempty"`
3068
- FileLength *uint64 `protobuf:"varint,8,opt,name=fileLength" json:"fileLength,omitempty"`
3069
- IsFavorite *bool `protobuf:"varint,9,opt,name=isFavorite" json:"isFavorite,omitempty"`
3070
- DeviceIDHint *uint32 `protobuf:"varint,10,opt,name=deviceIDHint" json:"deviceIDHint,omitempty"`
3071
- IsLottie *bool `protobuf:"varint,11,opt,name=isLottie" json:"isLottie,omitempty"`
3072
- unknownFields protoimpl.UnknownFields
3073
- 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
3074
3680
  }
3075
3681
 
3076
3682
  func (x *StickerAction) Reset() {
3077
3683
  *x = StickerAction{}
3078
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
3684
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3079
3685
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3080
3686
  ms.StoreMessageInfo(mi)
3081
3687
  }
@@ -3087,7 +3693,7 @@ func (x *StickerAction) String() string {
3087
3693
  func (*StickerAction) ProtoMessage() {}
3088
3694
 
3089
3695
  func (x *StickerAction) ProtoReflect() protoreflect.Message {
3090
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
3696
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3091
3697
  if x != nil {
3092
3698
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3093
3699
  if ms.LoadMessageInfo() == nil {
@@ -3100,7 +3706,7 @@ func (x *StickerAction) ProtoReflect() protoreflect.Message {
3100
3706
 
3101
3707
  // Deprecated: Use StickerAction.ProtoReflect.Descriptor instead.
3102
3708
  func (*StickerAction) Descriptor() ([]byte, []int) {
3103
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{32}
3709
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{41}
3104
3710
  }
3105
3711
 
3106
3712
  func (x *StickerAction) GetURL() string {
@@ -3180,6 +3786,20 @@ func (x *StickerAction) GetIsLottie() bool {
3180
3786
  return false
3181
3787
  }
3182
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
+
3183
3803
  type RemoveRecentStickerAction struct {
3184
3804
  state protoimpl.MessageState `protogen:"open.v1"`
3185
3805
  LastStickerSentTS *int64 `protobuf:"varint,1,opt,name=lastStickerSentTS" json:"lastStickerSentTS,omitempty"`
@@ -3189,7 +3809,7 @@ type RemoveRecentStickerAction struct {
3189
3809
 
3190
3810
  func (x *RemoveRecentStickerAction) Reset() {
3191
3811
  *x = RemoveRecentStickerAction{}
3192
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
3812
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
3193
3813
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3194
3814
  ms.StoreMessageInfo(mi)
3195
3815
  }
@@ -3201,7 +3821,7 @@ func (x *RemoveRecentStickerAction) String() string {
3201
3821
  func (*RemoveRecentStickerAction) ProtoMessage() {}
3202
3822
 
3203
3823
  func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
3204
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
3824
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
3205
3825
  if x != nil {
3206
3826
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3207
3827
  if ms.LoadMessageInfo() == nil {
@@ -3214,7 +3834,7 @@ func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
3214
3834
 
3215
3835
  // Deprecated: Use RemoveRecentStickerAction.ProtoReflect.Descriptor instead.
3216
3836
  func (*RemoveRecentStickerAction) Descriptor() ([]byte, []int) {
3217
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{33}
3837
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{42}
3218
3838
  }
3219
3839
 
3220
3840
  func (x *RemoveRecentStickerAction) GetLastStickerSentTS() int64 {
@@ -3233,7 +3853,7 @@ type PrimaryVersionAction struct {
3233
3853
 
3234
3854
  func (x *PrimaryVersionAction) Reset() {
3235
3855
  *x = PrimaryVersionAction{}
3236
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
3856
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
3237
3857
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3238
3858
  ms.StoreMessageInfo(mi)
3239
3859
  }
@@ -3245,7 +3865,7 @@ func (x *PrimaryVersionAction) String() string {
3245
3865
  func (*PrimaryVersionAction) ProtoMessage() {}
3246
3866
 
3247
3867
  func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
3248
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
3868
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
3249
3869
  if x != nil {
3250
3870
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3251
3871
  if ms.LoadMessageInfo() == nil {
@@ -3258,7 +3878,7 @@ func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
3258
3878
 
3259
3879
  // Deprecated: Use PrimaryVersionAction.ProtoReflect.Descriptor instead.
3260
3880
  func (*PrimaryVersionAction) Descriptor() ([]byte, []int) {
3261
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{34}
3881
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{43}
3262
3882
  }
3263
3883
 
3264
3884
  func (x *PrimaryVersionAction) GetVersion() string {
@@ -3277,7 +3897,7 @@ type NuxAction struct {
3277
3897
 
3278
3898
  func (x *NuxAction) Reset() {
3279
3899
  *x = NuxAction{}
3280
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3900
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
3281
3901
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3282
3902
  ms.StoreMessageInfo(mi)
3283
3903
  }
@@ -3289,7 +3909,7 @@ func (x *NuxAction) String() string {
3289
3909
  func (*NuxAction) ProtoMessage() {}
3290
3910
 
3291
3911
  func (x *NuxAction) ProtoReflect() protoreflect.Message {
3292
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3912
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
3293
3913
  if x != nil {
3294
3914
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3295
3915
  if ms.LoadMessageInfo() == nil {
@@ -3302,7 +3922,7 @@ func (x *NuxAction) ProtoReflect() protoreflect.Message {
3302
3922
 
3303
3923
  // Deprecated: Use NuxAction.ProtoReflect.Descriptor instead.
3304
3924
  func (*NuxAction) Descriptor() ([]byte, []int) {
3305
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{35}
3925
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{44}
3306
3926
  }
3307
3927
 
3308
3928
  func (x *NuxAction) GetAcknowledged() bool {
@@ -3321,7 +3941,7 @@ type TimeFormatAction struct {
3321
3941
 
3322
3942
  func (x *TimeFormatAction) Reset() {
3323
3943
  *x = TimeFormatAction{}
3324
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3944
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
3325
3945
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3326
3946
  ms.StoreMessageInfo(mi)
3327
3947
  }
@@ -3333,7 +3953,7 @@ func (x *TimeFormatAction) String() string {
3333
3953
  func (*TimeFormatAction) ProtoMessage() {}
3334
3954
 
3335
3955
  func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
3336
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3956
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
3337
3957
  if x != nil {
3338
3958
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3339
3959
  if ms.LoadMessageInfo() == nil {
@@ -3346,7 +3966,7 @@ func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
3346
3966
 
3347
3967
  // Deprecated: Use TimeFormatAction.ProtoReflect.Descriptor instead.
3348
3968
  func (*TimeFormatAction) Descriptor() ([]byte, []int) {
3349
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{36}
3969
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{45}
3350
3970
  }
3351
3971
 
3352
3972
  func (x *TimeFormatAction) GetIsTwentyFourHourFormatEnabled() bool {
@@ -3365,7 +3985,7 @@ type UserStatusMuteAction struct {
3365
3985
 
3366
3986
  func (x *UserStatusMuteAction) Reset() {
3367
3987
  *x = UserStatusMuteAction{}
3368
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3988
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
3369
3989
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3370
3990
  ms.StoreMessageInfo(mi)
3371
3991
  }
@@ -3377,7 +3997,7 @@ func (x *UserStatusMuteAction) String() string {
3377
3997
  func (*UserStatusMuteAction) ProtoMessage() {}
3378
3998
 
3379
3999
  func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
3380
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
4000
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
3381
4001
  if x != nil {
3382
4002
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3383
4003
  if ms.LoadMessageInfo() == nil {
@@ -3390,7 +4010,7 @@ func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
3390
4010
 
3391
4011
  // Deprecated: Use UserStatusMuteAction.ProtoReflect.Descriptor instead.
3392
4012
  func (*UserStatusMuteAction) Descriptor() ([]byte, []int) {
3393
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{37}
4013
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{46}
3394
4014
  }
3395
4015
 
3396
4016
  func (x *UserStatusMuteAction) GetMuted() bool {
@@ -3411,7 +4031,7 @@ type SubscriptionAction struct {
3411
4031
 
3412
4032
  func (x *SubscriptionAction) Reset() {
3413
4033
  *x = SubscriptionAction{}
3414
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
4034
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
3415
4035
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3416
4036
  ms.StoreMessageInfo(mi)
3417
4037
  }
@@ -3423,7 +4043,7 @@ func (x *SubscriptionAction) String() string {
3423
4043
  func (*SubscriptionAction) ProtoMessage() {}
3424
4044
 
3425
4045
  func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
3426
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
4046
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
3427
4047
  if x != nil {
3428
4048
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3429
4049
  if ms.LoadMessageInfo() == nil {
@@ -3436,7 +4056,7 @@ func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
3436
4056
 
3437
4057
  // Deprecated: Use SubscriptionAction.ProtoReflect.Descriptor instead.
3438
4058
  func (*SubscriptionAction) Descriptor() ([]byte, []int) {
3439
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{38}
4059
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{47}
3440
4060
  }
3441
4061
 
3442
4062
  func (x *SubscriptionAction) GetIsDeactivated() bool {
@@ -3471,7 +4091,7 @@ type AgentAction struct {
3471
4091
 
3472
4092
  func (x *AgentAction) Reset() {
3473
4093
  *x = AgentAction{}
3474
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
4094
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
3475
4095
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3476
4096
  ms.StoreMessageInfo(mi)
3477
4097
  }
@@ -3483,7 +4103,7 @@ func (x *AgentAction) String() string {
3483
4103
  func (*AgentAction) ProtoMessage() {}
3484
4104
 
3485
4105
  func (x *AgentAction) ProtoReflect() protoreflect.Message {
3486
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
4106
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
3487
4107
  if x != nil {
3488
4108
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3489
4109
  if ms.LoadMessageInfo() == nil {
@@ -3496,7 +4116,7 @@ func (x *AgentAction) ProtoReflect() protoreflect.Message {
3496
4116
 
3497
4117
  // Deprecated: Use AgentAction.ProtoReflect.Descriptor instead.
3498
4118
  func (*AgentAction) Descriptor() ([]byte, []int) {
3499
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{39}
4119
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{48}
3500
4120
  }
3501
4121
 
3502
4122
  func (x *AgentAction) GetName() string {
@@ -3529,7 +4149,7 @@ type AndroidUnsupportedActions struct {
3529
4149
 
3530
4150
  func (x *AndroidUnsupportedActions) Reset() {
3531
4151
  *x = AndroidUnsupportedActions{}
3532
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
4152
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
3533
4153
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3534
4154
  ms.StoreMessageInfo(mi)
3535
4155
  }
@@ -3541,7 +4161,7 @@ func (x *AndroidUnsupportedActions) String() string {
3541
4161
  func (*AndroidUnsupportedActions) ProtoMessage() {}
3542
4162
 
3543
4163
  func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
3544
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
4164
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
3545
4165
  if x != nil {
3546
4166
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3547
4167
  if ms.LoadMessageInfo() == nil {
@@ -3554,7 +4174,7 @@ func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
3554
4174
 
3555
4175
  // Deprecated: Use AndroidUnsupportedActions.ProtoReflect.Descriptor instead.
3556
4176
  func (*AndroidUnsupportedActions) Descriptor() ([]byte, []int) {
3557
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{40}
4177
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{49}
3558
4178
  }
3559
4179
 
3560
4180
  func (x *AndroidUnsupportedActions) GetAllowed() bool {
@@ -3573,7 +4193,7 @@ type PrimaryFeature struct {
3573
4193
 
3574
4194
  func (x *PrimaryFeature) Reset() {
3575
4195
  *x = PrimaryFeature{}
3576
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
4196
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
3577
4197
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3578
4198
  ms.StoreMessageInfo(mi)
3579
4199
  }
@@ -3585,7 +4205,7 @@ func (x *PrimaryFeature) String() string {
3585
4205
  func (*PrimaryFeature) ProtoMessage() {}
3586
4206
 
3587
4207
  func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
3588
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
4208
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
3589
4209
  if x != nil {
3590
4210
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3591
4211
  if ms.LoadMessageInfo() == nil {
@@ -3598,7 +4218,7 @@ func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
3598
4218
 
3599
4219
  // Deprecated: Use PrimaryFeature.ProtoReflect.Descriptor instead.
3600
4220
  func (*PrimaryFeature) Descriptor() ([]byte, []int) {
3601
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{41}
4221
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{50}
3602
4222
  }
3603
4223
 
3604
4224
  func (x *PrimaryFeature) GetFlags() []string {
@@ -3617,7 +4237,7 @@ type KeyExpiration struct {
3617
4237
 
3618
4238
  func (x *KeyExpiration) Reset() {
3619
4239
  *x = KeyExpiration{}
3620
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
4240
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
3621
4241
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3622
4242
  ms.StoreMessageInfo(mi)
3623
4243
  }
@@ -3629,7 +4249,7 @@ func (x *KeyExpiration) String() string {
3629
4249
  func (*KeyExpiration) ProtoMessage() {}
3630
4250
 
3631
4251
  func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
3632
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
4252
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
3633
4253
  if x != nil {
3634
4254
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3635
4255
  if ms.LoadMessageInfo() == nil {
@@ -3642,7 +4262,7 @@ func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
3642
4262
 
3643
4263
  // Deprecated: Use KeyExpiration.ProtoReflect.Descriptor instead.
3644
4264
  func (*KeyExpiration) Descriptor() ([]byte, []int) {
3645
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{42}
4265
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{51}
3646
4266
  }
3647
4267
 
3648
4268
  func (x *KeyExpiration) GetExpiredKeyEpoch() int32 {
@@ -3662,7 +4282,7 @@ type SyncActionMessage struct {
3662
4282
 
3663
4283
  func (x *SyncActionMessage) Reset() {
3664
4284
  *x = SyncActionMessage{}
3665
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
4285
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
3666
4286
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3667
4287
  ms.StoreMessageInfo(mi)
3668
4288
  }
@@ -3674,7 +4294,7 @@ func (x *SyncActionMessage) String() string {
3674
4294
  func (*SyncActionMessage) ProtoMessage() {}
3675
4295
 
3676
4296
  func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
3677
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
4297
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
3678
4298
  if x != nil {
3679
4299
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3680
4300
  if ms.LoadMessageInfo() == nil {
@@ -3687,7 +4307,7 @@ func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
3687
4307
 
3688
4308
  // Deprecated: Use SyncActionMessage.ProtoReflect.Descriptor instead.
3689
4309
  func (*SyncActionMessage) Descriptor() ([]byte, []int) {
3690
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{43}
4310
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{52}
3691
4311
  }
3692
4312
 
3693
4313
  func (x *SyncActionMessage) GetKey() *waCommon.MessageKey {
@@ -3715,7 +4335,7 @@ type SyncActionMessageRange struct {
3715
4335
 
3716
4336
  func (x *SyncActionMessageRange) Reset() {
3717
4337
  *x = SyncActionMessageRange{}
3718
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
4338
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
3719
4339
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3720
4340
  ms.StoreMessageInfo(mi)
3721
4341
  }
@@ -3727,7 +4347,7 @@ func (x *SyncActionMessageRange) String() string {
3727
4347
  func (*SyncActionMessageRange) ProtoMessage() {}
3728
4348
 
3729
4349
  func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
3730
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
4350
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
3731
4351
  if x != nil {
3732
4352
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3733
4353
  if ms.LoadMessageInfo() == nil {
@@ -3740,7 +4360,7 @@ func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
3740
4360
 
3741
4361
  // Deprecated: Use SyncActionMessageRange.ProtoReflect.Descriptor instead.
3742
4362
  func (*SyncActionMessageRange) Descriptor() ([]byte, []int) {
3743
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{44}
4363
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{53}
3744
4364
  }
3745
4365
 
3746
4366
  func (x *SyncActionMessageRange) GetLastMessageTimestamp() int64 {
@@ -3773,7 +4393,7 @@ type UnarchiveChatsSetting struct {
3773
4393
 
3774
4394
  func (x *UnarchiveChatsSetting) Reset() {
3775
4395
  *x = UnarchiveChatsSetting{}
3776
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
4396
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
3777
4397
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3778
4398
  ms.StoreMessageInfo(mi)
3779
4399
  }
@@ -3785,7 +4405,7 @@ func (x *UnarchiveChatsSetting) String() string {
3785
4405
  func (*UnarchiveChatsSetting) ProtoMessage() {}
3786
4406
 
3787
4407
  func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
3788
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
4408
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
3789
4409
  if x != nil {
3790
4410
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3791
4411
  if ms.LoadMessageInfo() == nil {
@@ -3798,7 +4418,7 @@ func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
3798
4418
 
3799
4419
  // Deprecated: Use UnarchiveChatsSetting.ProtoReflect.Descriptor instead.
3800
4420
  func (*UnarchiveChatsSetting) Descriptor() ([]byte, []int) {
3801
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{45}
4421
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{54}
3802
4422
  }
3803
4423
 
3804
4424
  func (x *UnarchiveChatsSetting) GetUnarchiveChats() bool {
@@ -3817,7 +4437,7 @@ type DeleteChatAction struct {
3817
4437
 
3818
4438
  func (x *DeleteChatAction) Reset() {
3819
4439
  *x = DeleteChatAction{}
3820
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
4440
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
3821
4441
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3822
4442
  ms.StoreMessageInfo(mi)
3823
4443
  }
@@ -3829,7 +4449,7 @@ func (x *DeleteChatAction) String() string {
3829
4449
  func (*DeleteChatAction) ProtoMessage() {}
3830
4450
 
3831
4451
  func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
3832
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
4452
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
3833
4453
  if x != nil {
3834
4454
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3835
4455
  if ms.LoadMessageInfo() == nil {
@@ -3842,7 +4462,7 @@ func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
3842
4462
 
3843
4463
  // Deprecated: Use DeleteChatAction.ProtoReflect.Descriptor instead.
3844
4464
  func (*DeleteChatAction) Descriptor() ([]byte, []int) {
3845
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{46}
4465
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{55}
3846
4466
  }
3847
4467
 
3848
4468
  func (x *DeleteChatAction) GetMessageRange() *SyncActionMessageRange {
@@ -3861,7 +4481,7 @@ type ClearChatAction struct {
3861
4481
 
3862
4482
  func (x *ClearChatAction) Reset() {
3863
4483
  *x = ClearChatAction{}
3864
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
4484
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
3865
4485
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3866
4486
  ms.StoreMessageInfo(mi)
3867
4487
  }
@@ -3873,7 +4493,7 @@ func (x *ClearChatAction) String() string {
3873
4493
  func (*ClearChatAction) ProtoMessage() {}
3874
4494
 
3875
4495
  func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
3876
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
4496
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
3877
4497
  if x != nil {
3878
4498
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3879
4499
  if ms.LoadMessageInfo() == nil {
@@ -3886,7 +4506,7 @@ func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
3886
4506
 
3887
4507
  // Deprecated: Use ClearChatAction.ProtoReflect.Descriptor instead.
3888
4508
  func (*ClearChatAction) Descriptor() ([]byte, []int) {
3889
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{47}
4509
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{56}
3890
4510
  }
3891
4511
 
3892
4512
  func (x *ClearChatAction) GetMessageRange() *SyncActionMessageRange {
@@ -3906,7 +4526,7 @@ type MarkChatAsReadAction struct {
3906
4526
 
3907
4527
  func (x *MarkChatAsReadAction) Reset() {
3908
4528
  *x = MarkChatAsReadAction{}
3909
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
4529
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
3910
4530
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3911
4531
  ms.StoreMessageInfo(mi)
3912
4532
  }
@@ -3918,7 +4538,7 @@ func (x *MarkChatAsReadAction) String() string {
3918
4538
  func (*MarkChatAsReadAction) ProtoMessage() {}
3919
4539
 
3920
4540
  func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
3921
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
4541
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
3922
4542
  if x != nil {
3923
4543
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3924
4544
  if ms.LoadMessageInfo() == nil {
@@ -3931,7 +4551,7 @@ func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
3931
4551
 
3932
4552
  // Deprecated: Use MarkChatAsReadAction.ProtoReflect.Descriptor instead.
3933
4553
  func (*MarkChatAsReadAction) Descriptor() ([]byte, []int) {
3934
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{48}
4554
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{57}
3935
4555
  }
3936
4556
 
3937
4557
  func (x *MarkChatAsReadAction) GetRead() bool {
@@ -3958,7 +4578,7 @@ type DeleteMessageForMeAction struct {
3958
4578
 
3959
4579
  func (x *DeleteMessageForMeAction) Reset() {
3960
4580
  *x = DeleteMessageForMeAction{}
3961
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
4581
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
3962
4582
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3963
4583
  ms.StoreMessageInfo(mi)
3964
4584
  }
@@ -3970,7 +4590,7 @@ func (x *DeleteMessageForMeAction) String() string {
3970
4590
  func (*DeleteMessageForMeAction) ProtoMessage() {}
3971
4591
 
3972
4592
  func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
3973
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
4593
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
3974
4594
  if x != nil {
3975
4595
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3976
4596
  if ms.LoadMessageInfo() == nil {
@@ -3983,7 +4603,7 @@ func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
3983
4603
 
3984
4604
  // Deprecated: Use DeleteMessageForMeAction.ProtoReflect.Descriptor instead.
3985
4605
  func (*DeleteMessageForMeAction) Descriptor() ([]byte, []int) {
3986
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{49}
4606
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{58}
3987
4607
  }
3988
4608
 
3989
4609
  func (x *DeleteMessageForMeAction) GetDeleteMedia() bool {
@@ -4010,7 +4630,7 @@ type ArchiveChatAction struct {
4010
4630
 
4011
4631
  func (x *ArchiveChatAction) Reset() {
4012
4632
  *x = ArchiveChatAction{}
4013
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
4633
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4014
4634
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4015
4635
  ms.StoreMessageInfo(mi)
4016
4636
  }
@@ -4022,7 +4642,7 @@ func (x *ArchiveChatAction) String() string {
4022
4642
  func (*ArchiveChatAction) ProtoMessage() {}
4023
4643
 
4024
4644
  func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
4025
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
4645
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4026
4646
  if x != nil {
4027
4647
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4028
4648
  if ms.LoadMessageInfo() == nil {
@@ -4035,7 +4655,7 @@ func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
4035
4655
 
4036
4656
  // Deprecated: Use ArchiveChatAction.ProtoReflect.Descriptor instead.
4037
4657
  func (*ArchiveChatAction) Descriptor() ([]byte, []int) {
4038
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{50}
4658
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{59}
4039
4659
  }
4040
4660
 
4041
4661
  func (x *ArchiveChatAction) GetArchived() bool {
@@ -4061,7 +4681,7 @@ type RecentEmojiWeightsAction struct {
4061
4681
 
4062
4682
  func (x *RecentEmojiWeightsAction) Reset() {
4063
4683
  *x = RecentEmojiWeightsAction{}
4064
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
4684
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4065
4685
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4066
4686
  ms.StoreMessageInfo(mi)
4067
4687
  }
@@ -4073,7 +4693,7 @@ func (x *RecentEmojiWeightsAction) String() string {
4073
4693
  func (*RecentEmojiWeightsAction) ProtoMessage() {}
4074
4694
 
4075
4695
  func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
4076
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
4696
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4077
4697
  if x != nil {
4078
4698
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4079
4699
  if ms.LoadMessageInfo() == nil {
@@ -4086,7 +4706,7 @@ func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
4086
4706
 
4087
4707
  // Deprecated: Use RecentEmojiWeightsAction.ProtoReflect.Descriptor instead.
4088
4708
  func (*RecentEmojiWeightsAction) Descriptor() ([]byte, []int) {
4089
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{51}
4709
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{60}
4090
4710
  }
4091
4711
 
4092
4712
  func (x *RecentEmojiWeightsAction) GetWeights() []*RecentEmojiWeight {
@@ -4105,7 +4725,7 @@ type LabelAssociationAction struct {
4105
4725
 
4106
4726
  func (x *LabelAssociationAction) Reset() {
4107
4727
  *x = LabelAssociationAction{}
4108
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
4728
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
4109
4729
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4110
4730
  ms.StoreMessageInfo(mi)
4111
4731
  }
@@ -4117,7 +4737,7 @@ func (x *LabelAssociationAction) String() string {
4117
4737
  func (*LabelAssociationAction) ProtoMessage() {}
4118
4738
 
4119
4739
  func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
4120
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
4740
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
4121
4741
  if x != nil {
4122
4742
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4123
4743
  if ms.LoadMessageInfo() == nil {
@@ -4130,7 +4750,7 @@ func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
4130
4750
 
4131
4751
  // Deprecated: Use LabelAssociationAction.ProtoReflect.Descriptor instead.
4132
4752
  func (*LabelAssociationAction) Descriptor() ([]byte, []int) {
4133
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{52}
4753
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{61}
4134
4754
  }
4135
4755
 
4136
4756
  func (x *LabelAssociationAction) GetLabeled() bool {
@@ -4153,7 +4773,7 @@ type QuickReplyAction struct {
4153
4773
 
4154
4774
  func (x *QuickReplyAction) Reset() {
4155
4775
  *x = QuickReplyAction{}
4156
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
4776
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
4157
4777
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4158
4778
  ms.StoreMessageInfo(mi)
4159
4779
  }
@@ -4165,7 +4785,7 @@ func (x *QuickReplyAction) String() string {
4165
4785
  func (*QuickReplyAction) ProtoMessage() {}
4166
4786
 
4167
4787
  func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
4168
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
4788
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
4169
4789
  if x != nil {
4170
4790
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4171
4791
  if ms.LoadMessageInfo() == nil {
@@ -4178,7 +4798,7 @@ func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
4178
4798
 
4179
4799
  // Deprecated: Use QuickReplyAction.ProtoReflect.Descriptor instead.
4180
4800
  func (*QuickReplyAction) Descriptor() ([]byte, []int) {
4181
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{53}
4801
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{62}
4182
4802
  }
4183
4803
 
4184
4804
  func (x *QuickReplyAction) GetShortcut() string {
@@ -4225,7 +4845,7 @@ type LocaleSetting struct {
4225
4845
 
4226
4846
  func (x *LocaleSetting) Reset() {
4227
4847
  *x = LocaleSetting{}
4228
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
4848
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
4229
4849
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4230
4850
  ms.StoreMessageInfo(mi)
4231
4851
  }
@@ -4237,7 +4857,7 @@ func (x *LocaleSetting) String() string {
4237
4857
  func (*LocaleSetting) ProtoMessage() {}
4238
4858
 
4239
4859
  func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
4240
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
4860
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
4241
4861
  if x != nil {
4242
4862
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4243
4863
  if ms.LoadMessageInfo() == nil {
@@ -4250,7 +4870,7 @@ func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
4250
4870
 
4251
4871
  // Deprecated: Use LocaleSetting.ProtoReflect.Descriptor instead.
4252
4872
  func (*LocaleSetting) Descriptor() ([]byte, []int) {
4253
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{54}
4873
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{63}
4254
4874
  }
4255
4875
 
4256
4876
  func (x *LocaleSetting) GetLocale() string {
@@ -4269,7 +4889,7 @@ type PushNameSetting struct {
4269
4889
 
4270
4890
  func (x *PushNameSetting) Reset() {
4271
4891
  *x = PushNameSetting{}
4272
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4892
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
4273
4893
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4274
4894
  ms.StoreMessageInfo(mi)
4275
4895
  }
@@ -4281,7 +4901,7 @@ func (x *PushNameSetting) String() string {
4281
4901
  func (*PushNameSetting) ProtoMessage() {}
4282
4902
 
4283
4903
  func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
4284
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4904
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
4285
4905
  if x != nil {
4286
4906
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4287
4907
  if ms.LoadMessageInfo() == nil {
@@ -4294,7 +4914,7 @@ func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
4294
4914
 
4295
4915
  // Deprecated: Use PushNameSetting.ProtoReflect.Descriptor instead.
4296
4916
  func (*PushNameSetting) Descriptor() ([]byte, []int) {
4297
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{55}
4917
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{64}
4298
4918
  }
4299
4919
 
4300
4920
  func (x *PushNameSetting) GetName() string {
@@ -4313,7 +4933,7 @@ type SecurityNotificationSetting struct {
4313
4933
 
4314
4934
  func (x *SecurityNotificationSetting) Reset() {
4315
4935
  *x = SecurityNotificationSetting{}
4316
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4936
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
4317
4937
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4318
4938
  ms.StoreMessageInfo(mi)
4319
4939
  }
@@ -4325,7 +4945,7 @@ func (x *SecurityNotificationSetting) String() string {
4325
4945
  func (*SecurityNotificationSetting) ProtoMessage() {}
4326
4946
 
4327
4947
  func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
4328
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4948
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
4329
4949
  if x != nil {
4330
4950
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4331
4951
  if ms.LoadMessageInfo() == nil {
@@ -4338,7 +4958,7 @@ func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
4338
4958
 
4339
4959
  // Deprecated: Use SecurityNotificationSetting.ProtoReflect.Descriptor instead.
4340
4960
  func (*SecurityNotificationSetting) Descriptor() ([]byte, []int) {
4341
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{56}
4961
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{65}
4342
4962
  }
4343
4963
 
4344
4964
  func (x *SecurityNotificationSetting) GetShowNotification() bool {
@@ -4357,7 +4977,7 @@ type PinAction struct {
4357
4977
 
4358
4978
  func (x *PinAction) Reset() {
4359
4979
  *x = PinAction{}
4360
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4980
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
4361
4981
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4362
4982
  ms.StoreMessageInfo(mi)
4363
4983
  }
@@ -4369,7 +4989,7 @@ func (x *PinAction) String() string {
4369
4989
  func (*PinAction) ProtoMessage() {}
4370
4990
 
4371
4991
  func (x *PinAction) ProtoReflect() protoreflect.Message {
4372
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4992
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
4373
4993
  if x != nil {
4374
4994
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4375
4995
  if ms.LoadMessageInfo() == nil {
@@ -4382,7 +5002,7 @@ func (x *PinAction) ProtoReflect() protoreflect.Message {
4382
5002
 
4383
5003
  // Deprecated: Use PinAction.ProtoReflect.Descriptor instead.
4384
5004
  func (*PinAction) Descriptor() ([]byte, []int) {
4385
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{57}
5005
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{66}
4386
5006
  }
4387
5007
 
4388
5008
  func (x *PinAction) GetPinned() bool {
@@ -4403,7 +5023,7 @@ type MuteAction struct {
4403
5023
 
4404
5024
  func (x *MuteAction) Reset() {
4405
5025
  *x = MuteAction{}
4406
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
5026
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[67]
4407
5027
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4408
5028
  ms.StoreMessageInfo(mi)
4409
5029
  }
@@ -4415,7 +5035,7 @@ func (x *MuteAction) String() string {
4415
5035
  func (*MuteAction) ProtoMessage() {}
4416
5036
 
4417
5037
  func (x *MuteAction) ProtoReflect() protoreflect.Message {
4418
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
5038
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[67]
4419
5039
  if x != nil {
4420
5040
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4421
5041
  if ms.LoadMessageInfo() == nil {
@@ -4428,7 +5048,7 @@ func (x *MuteAction) ProtoReflect() protoreflect.Message {
4428
5048
 
4429
5049
  // Deprecated: Use MuteAction.ProtoReflect.Descriptor instead.
4430
5050
  func (*MuteAction) Descriptor() ([]byte, []int) {
4431
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{58}
5051
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{67}
4432
5052
  }
4433
5053
 
4434
5054
  func (x *MuteAction) GetMuted() bool {
@@ -4466,7 +5086,7 @@ type ContactAction struct {
4466
5086
 
4467
5087
  func (x *ContactAction) Reset() {
4468
5088
  *x = ContactAction{}
4469
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
5089
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[68]
4470
5090
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4471
5091
  ms.StoreMessageInfo(mi)
4472
5092
  }
@@ -4478,7 +5098,7 @@ func (x *ContactAction) String() string {
4478
5098
  func (*ContactAction) ProtoMessage() {}
4479
5099
 
4480
5100
  func (x *ContactAction) ProtoReflect() protoreflect.Message {
4481
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
5101
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[68]
4482
5102
  if x != nil {
4483
5103
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4484
5104
  if ms.LoadMessageInfo() == nil {
@@ -4491,7 +5111,7 @@ func (x *ContactAction) ProtoReflect() protoreflect.Message {
4491
5111
 
4492
5112
  // Deprecated: Use ContactAction.ProtoReflect.Descriptor instead.
4493
5113
  func (*ContactAction) Descriptor() ([]byte, []int) {
4494
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{59}
5114
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{68}
4495
5115
  }
4496
5116
 
4497
5117
  func (x *ContactAction) GetFullName() string {
@@ -4545,7 +5165,7 @@ type StarAction struct {
4545
5165
 
4546
5166
  func (x *StarAction) Reset() {
4547
5167
  *x = StarAction{}
4548
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
5168
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[69]
4549
5169
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4550
5170
  ms.StoreMessageInfo(mi)
4551
5171
  }
@@ -4557,7 +5177,7 @@ func (x *StarAction) String() string {
4557
5177
  func (*StarAction) ProtoMessage() {}
4558
5178
 
4559
5179
  func (x *StarAction) ProtoReflect() protoreflect.Message {
4560
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
5180
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[69]
4561
5181
  if x != nil {
4562
5182
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4563
5183
  if ms.LoadMessageInfo() == nil {
@@ -4570,7 +5190,7 @@ func (x *StarAction) ProtoReflect() protoreflect.Message {
4570
5190
 
4571
5191
  // Deprecated: Use StarAction.ProtoReflect.Descriptor instead.
4572
5192
  func (*StarAction) Descriptor() ([]byte, []int) {
4573
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{60}
5193
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{69}
4574
5194
  }
4575
5195
 
4576
5196
  func (x *StarAction) GetStarred() bool {
@@ -4592,7 +5212,7 @@ type SyncActionData struct {
4592
5212
 
4593
5213
  func (x *SyncActionData) Reset() {
4594
5214
  *x = SyncActionData{}
4595
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
5215
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[70]
4596
5216
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4597
5217
  ms.StoreMessageInfo(mi)
4598
5218
  }
@@ -4604,7 +5224,7 @@ func (x *SyncActionData) String() string {
4604
5224
  func (*SyncActionData) ProtoMessage() {}
4605
5225
 
4606
5226
  func (x *SyncActionData) ProtoReflect() protoreflect.Message {
4607
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
5227
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[70]
4608
5228
  if x != nil {
4609
5229
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4610
5230
  if ms.LoadMessageInfo() == nil {
@@ -4617,7 +5237,7 @@ func (x *SyncActionData) ProtoReflect() protoreflect.Message {
4617
5237
 
4618
5238
  // Deprecated: Use SyncActionData.ProtoReflect.Descriptor instead.
4619
5239
  func (*SyncActionData) Descriptor() ([]byte, []int) {
4620
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{61}
5240
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{70}
4621
5241
  }
4622
5242
 
4623
5243
  func (x *SyncActionData) GetIndex() []byte {
@@ -4658,7 +5278,7 @@ type CallLogRecord_ParticipantInfo struct {
4658
5278
 
4659
5279
  func (x *CallLogRecord_ParticipantInfo) Reset() {
4660
5280
  *x = CallLogRecord_ParticipantInfo{}
4661
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
5281
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[71]
4662
5282
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4663
5283
  ms.StoreMessageInfo(mi)
4664
5284
  }
@@ -4670,7 +5290,7 @@ func (x *CallLogRecord_ParticipantInfo) String() string {
4670
5290
  func (*CallLogRecord_ParticipantInfo) ProtoMessage() {}
4671
5291
 
4672
5292
  func (x *CallLogRecord_ParticipantInfo) ProtoReflect() protoreflect.Message {
4673
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
5293
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[71]
4674
5294
  if x != nil {
4675
5295
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4676
5296
  if ms.LoadMessageInfo() == nil {
@@ -4709,7 +5329,7 @@ type FavoritesAction_Favorite struct {
4709
5329
 
4710
5330
  func (x *FavoritesAction_Favorite) Reset() {
4711
5331
  *x = FavoritesAction_Favorite{}
4712
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
5332
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[72]
4713
5333
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4714
5334
  ms.StoreMessageInfo(mi)
4715
5335
  }
@@ -4721,7 +5341,7 @@ func (x *FavoritesAction_Favorite) String() string {
4721
5341
  func (*FavoritesAction_Favorite) ProtoMessage() {}
4722
5342
 
4723
5343
  func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
4724
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
5344
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[72]
4725
5345
  if x != nil {
4726
5346
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4727
5347
  if ms.LoadMessageInfo() == nil {
@@ -4734,7 +5354,7 @@ func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
4734
5354
 
4735
5355
  // Deprecated: Use FavoritesAction_Favorite.ProtoReflect.Descriptor instead.
4736
5356
  func (*FavoritesAction_Favorite) Descriptor() ([]byte, []int) {
4737
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14, 0}
5357
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20, 0}
4738
5358
  }
4739
5359
 
4740
5360
  func (x *FavoritesAction_Favorite) GetID() string {
@@ -4802,7 +5422,18 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
4802
5422
  "\x06FAILED\x10\b\x12\r\n" +
4803
5423
  "\tABANDONED\x10\t\x12\v\n" +
4804
5424
  "\aONGOING\x10\n" +
4805
- "\"\xa6\x02\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" +
5432
+ "\x10PaymentTosAction\x12R\n" +
5433
+ "\rpaymentNotice\x18\x01 \x02(\x0e2,.WASyncAction.PaymentTosAction.PaymentNoticeR\rpaymentNotice\x12\x1a\n" +
5434
+ "\baccepted\x18\x02 \x02(\bR\baccepted\"*\n" +
5435
+ "\rPaymentNotice\x12\x19\n" +
5436
+ "\x15BR_PAY_PRIVACY_POLICY\x10\x00\"\xa6\x02\n" +
4806
5437
  "!NotificationActivitySettingAction\x12\x8d\x01\n" +
4807
5438
  "\x1bnotificationActivitySetting\x18\x01 \x01(\x0e2K.WASyncAction.NotificationActivitySettingAction.NotificationActivitySettingR\x1bnotificationActivitySetting\"q\n" +
4808
5439
  "\x1bNotificationActivitySetting\x12\x18\n" +
@@ -4912,7 +5543,7 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
4912
5543
  "\x06WEAROS\x10\b\"A\n" +
4913
5544
  "\x11RecentEmojiWeight\x12\x14\n" +
4914
5545
  "\x05emoji\x18\x01 \x01(\tR\x05emoji\x12\x16\n" +
4915
- "\x06weight\x18\x02 \x01(\x02R\x06weight\"\xea%\n" +
5546
+ "\x06weight\x18\x02 \x01(\x02R\x06weight\"\xb5-\n" +
4916
5547
  "\x0fSyncActionValue\x12\x1c\n" +
4917
5548
  "\ttimestamp\x18\x01 \x01(\x03R\ttimestamp\x128\n" +
4918
5549
  "\n" +
@@ -4973,7 +5604,26 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
4973
5604
  "\x15usernameChatStartMode\x18; \x01(\v2).WASyncAction.UsernameChatStartModeActionR\x15usernameChatStartMode\x12}\n" +
4974
5605
  "!notificationActivitySettingAction\x18< \x01(\v2/.WASyncAction.NotificationActivitySettingActionR!notificationActivitySettingAction\x12J\n" +
4975
5606
  "\x10lidContactAction\x18= \x01(\v2\x1e.WASyncAction.LidContactActionR\x10lidContactAction\x12z\n" +
4976
- " ctwaPerCustomerDataSharingAction\x18> \x01(\v2..WASyncAction.CtwaPerCustomerDataSharingActionR ctwaPerCustomerDataSharingAction\"t\n" +
5607
+ " ctwaPerCustomerDataSharingAction\x18> \x01(\v2..WASyncAction.CtwaPerCustomerDataSharingActionR ctwaPerCustomerDataSharingAction\x12J\n" +
5608
+ "\x10paymentTosAction\x18? \x01(\v2\x1e.WASyncAction.PaymentTosActionR\x10paymentTosAction\x12\xbc\x01\n" +
5609
+ "6privacySettingChannelsPersonalisedRecommendationAction\x18@ \x01(\v2D.WASyncAction.PrivacySettingChannelsPersonalisedRecommendationActionR6privacySettingChannelsPersonalisedRecommendationAction\x12\x80\x01\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" +
5625
+ "\"BusinessBroadcastAssociationAction\x12\x18\n" +
5626
+ "\adeleted\x18\x01 \x01(\bR\adeleted\"t\n" +
4977
5627
  " CtwaPerCustomerDataSharingAction\x12P\n" +
4978
5628
  "#isCtwaPerCustomerDataSharingEnabled\x18\x01 \x01(\bR#isCtwaPerCustomerDataSharingEnabled\"\xa4\x01\n" +
4979
5629
  "\x10LidContactAction\x12\x1a\n" +
@@ -4984,7 +5634,9 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
4984
5634
  "\x0fFavoritesAction\x12D\n" +
4985
5635
  "\tfavorites\x18\x01 \x03(\v2&.WASyncAction.FavoritesAction.FavoriteR\tfavorites\x1a\x1a\n" +
4986
5636
  "\bFavorite\x12\x0e\n" +
4987
- "\x02ID\x18\x01 \x01(\tR\x02ID\"Y\n" +
5637
+ "\x02ID\x18\x01 \x01(\tR\x02ID\"`\n" +
5638
+ "6PrivacySettingChannelsPersonalisedRecommendationAction\x12&\n" +
5639
+ "\x0eisUserOptedOut\x18\x01 \x01(\bR\x0eisUserOptedOut\"Y\n" +
4988
5640
  "'PrivacySettingDisableLinkPreviewsAction\x12.\n" +
4989
5641
  "\x12isPreviewsDisabled\x18\x01 \x01(\bR\x12isPreviewsDisabled\":\n" +
4990
5642
  "\x18WamoUserIdentifierAction\x12\x1e\n" +
@@ -5013,10 +5665,14 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
5013
5665
  "isIncoming\x18\x02 \x01(\bR\n" +
5014
5666
  "isIncoming\"1\n" +
5015
5667
  "\x17BotWelcomeRequestAction\x12\x16\n" +
5016
- "\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" +
5017
5671
  "\rCallLogAction\x12A\n" +
5018
5672
  "\rcallLogRecord\x18\x01 \x01(\v2\x1b.WASyncAction.CallLogRecordR\rcallLogRecord\";\n" +
5019
5673
  "\x1bPrivacySettingRelayAllCalls\x12\x1c\n" +
5674
+ "\tisEnabled\x18\x01 \x01(\bR\tisEnabled\"<\n" +
5675
+ "\x1cDetectedOutcomesStatusAction\x12\x1c\n" +
5020
5676
  "\tisEnabled\x18\x01 \x01(\bR\tisEnabled\"1\n" +
5021
5677
  "\x15ExternalWebBetaAction\x12\x18\n" +
5022
5678
  "\aisOptIn\x18\x01 \x01(\bR\aisOptIn\"E\n" +
@@ -5029,7 +5685,7 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
5029
5685
  "chatOpened\x18\x01 \x01(\bR\n" +
5030
5686
  "chatOpened\"<\n" +
5031
5687
  "\x14ChatAssignmentAction\x12$\n" +
5032
- "\rdeviceAgentID\x18\x01 \x01(\tR\rdeviceAgentID\"\xcd\x02\n" +
5688
+ "\rdeviceAgentID\x18\x01 \x01(\tR\rdeviceAgentID\"\x95\x03\n" +
5033
5689
  "\rStickerAction\x12\x10\n" +
5034
5690
  "\x03URL\x18\x01 \x01(\tR\x03URL\x12$\n" +
5035
5691
  "\rfileEncSHA256\x18\x02 \x01(\fR\rfileEncSHA256\x12\x1a\n" +
@@ -5048,7 +5704,9 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
5048
5704
  "isFavorite\x12\"\n" +
5049
5705
  "\fdeviceIDHint\x18\n" +
5050
5706
  " \x01(\rR\fdeviceIDHint\x12\x1a\n" +
5051
- "\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" +
5052
5710
  "\x19RemoveRecentStickerAction\x12,\n" +
5053
5711
  "\x11lastStickerSentTS\x18\x01 \x01(\x03R\x11lastStickerSentTS\"0\n" +
5054
5712
  "\x14PrimaryVersionAction\x12\x18\n" +
@@ -5146,176 +5804,198 @@ func file_waSyncAction_WASyncAction_proto_rawDescGZIP() []byte {
5146
5804
  return file_waSyncAction_WASyncAction_proto_rawDescData
5147
5805
  }
5148
5806
 
5149
- var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo, 12)
5150
- var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo, 64)
5807
+ var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo, 14)
5808
+ var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo, 73)
5151
5809
  var file_waSyncAction_WASyncAction_proto_goTypes = []any{
5152
5810
  (CallLogRecord_CallType)(0), // 0: WASyncAction.CallLogRecord.CallType
5153
5811
  (CallLogRecord_SilenceReason)(0), // 1: WASyncAction.CallLogRecord.SilenceReason
5154
5812
  (CallLogRecord_CallResult)(0), // 2: WASyncAction.CallLogRecord.CallResult
5155
- (NotificationActivitySettingAction_NotificationActivitySetting)(0), // 3: WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
5156
- (WaffleAccountLinkStateAction_AccountLinkState)(0), // 4: WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
5157
- (MerchantPaymentPartnerAction_Status)(0), // 5: WASyncAction.MerchantPaymentPartnerAction.Status
5158
- (NoteEditAction_NoteType)(0), // 6: WASyncAction.NoteEditAction.NoteType
5159
- (StatusPrivacyAction_StatusDistributionMode)(0), // 7: WASyncAction.StatusPrivacyAction.StatusDistributionMode
5160
- (MarketingMessageAction_MarketingMessagePrototypeType)(0), // 8: WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
5161
- (UsernameChatStartModeAction_ChatStartMode)(0), // 9: WASyncAction.UsernameChatStartModeAction.ChatStartMode
5162
- (LabelEditAction_ListType)(0), // 10: WASyncAction.LabelEditAction.ListType
5163
- (PatchDebugData_Platform)(0), // 11: WASyncAction.PatchDebugData.Platform
5164
- (*CallLogRecord)(nil), // 12: WASyncAction.CallLogRecord
5165
- (*NotificationActivitySettingAction)(nil), // 13: WASyncAction.NotificationActivitySettingAction
5166
- (*WaffleAccountLinkStateAction)(nil), // 14: WASyncAction.WaffleAccountLinkStateAction
5167
- (*MerchantPaymentPartnerAction)(nil), // 15: WASyncAction.MerchantPaymentPartnerAction
5168
- (*NoteEditAction)(nil), // 16: WASyncAction.NoteEditAction
5169
- (*StatusPrivacyAction)(nil), // 17: WASyncAction.StatusPrivacyAction
5170
- (*MarketingMessageAction)(nil), // 18: WASyncAction.MarketingMessageAction
5171
- (*UsernameChatStartModeAction)(nil), // 19: WASyncAction.UsernameChatStartModeAction
5172
- (*LabelEditAction)(nil), // 20: WASyncAction.LabelEditAction
5173
- (*PatchDebugData)(nil), // 21: WASyncAction.PatchDebugData
5174
- (*RecentEmojiWeight)(nil), // 22: WASyncAction.RecentEmojiWeight
5175
- (*SyncActionValue)(nil), // 23: WASyncAction.SyncActionValue
5176
- (*CtwaPerCustomerDataSharingAction)(nil), // 24: WASyncAction.CtwaPerCustomerDataSharingAction
5177
- (*LidContactAction)(nil), // 25: WASyncAction.LidContactAction
5178
- (*FavoritesAction)(nil), // 26: WASyncAction.FavoritesAction
5179
- (*PrivacySettingDisableLinkPreviewsAction)(nil), // 27: WASyncAction.PrivacySettingDisableLinkPreviewsAction
5180
- (*WamoUserIdentifierAction)(nil), // 28: WASyncAction.WamoUserIdentifierAction
5181
- (*LockChatAction)(nil), // 29: WASyncAction.LockChatAction
5182
- (*CustomPaymentMethodsAction)(nil), // 30: WASyncAction.CustomPaymentMethodsAction
5183
- (*CustomPaymentMethod)(nil), // 31: WASyncAction.CustomPaymentMethod
5184
- (*CustomPaymentMethodMetadata)(nil), // 32: WASyncAction.CustomPaymentMethodMetadata
5185
- (*PaymentInfoAction)(nil), // 33: WASyncAction.PaymentInfoAction
5186
- (*LabelReorderingAction)(nil), // 34: WASyncAction.LabelReorderingAction
5187
- (*DeleteIndividualCallLogAction)(nil), // 35: WASyncAction.DeleteIndividualCallLogAction
5188
- (*BotWelcomeRequestAction)(nil), // 36: WASyncAction.BotWelcomeRequestAction
5189
- (*CallLogAction)(nil), // 37: WASyncAction.CallLogAction
5190
- (*PrivacySettingRelayAllCalls)(nil), // 38: WASyncAction.PrivacySettingRelayAllCalls
5191
- (*ExternalWebBetaAction)(nil), // 39: WASyncAction.ExternalWebBetaAction
5192
- (*MarketingMessageBroadcastAction)(nil), // 40: WASyncAction.MarketingMessageBroadcastAction
5193
- (*PnForLidChatAction)(nil), // 41: WASyncAction.PnForLidChatAction
5194
- (*ChatAssignmentOpenedStatusAction)(nil), // 42: WASyncAction.ChatAssignmentOpenedStatusAction
5195
- (*ChatAssignmentAction)(nil), // 43: WASyncAction.ChatAssignmentAction
5196
- (*StickerAction)(nil), // 44: WASyncAction.StickerAction
5197
- (*RemoveRecentStickerAction)(nil), // 45: WASyncAction.RemoveRecentStickerAction
5198
- (*PrimaryVersionAction)(nil), // 46: WASyncAction.PrimaryVersionAction
5199
- (*NuxAction)(nil), // 47: WASyncAction.NuxAction
5200
- (*TimeFormatAction)(nil), // 48: WASyncAction.TimeFormatAction
5201
- (*UserStatusMuteAction)(nil), // 49: WASyncAction.UserStatusMuteAction
5202
- (*SubscriptionAction)(nil), // 50: WASyncAction.SubscriptionAction
5203
- (*AgentAction)(nil), // 51: WASyncAction.AgentAction
5204
- (*AndroidUnsupportedActions)(nil), // 52: WASyncAction.AndroidUnsupportedActions
5205
- (*PrimaryFeature)(nil), // 53: WASyncAction.PrimaryFeature
5206
- (*KeyExpiration)(nil), // 54: WASyncAction.KeyExpiration
5207
- (*SyncActionMessage)(nil), // 55: WASyncAction.SyncActionMessage
5208
- (*SyncActionMessageRange)(nil), // 56: WASyncAction.SyncActionMessageRange
5209
- (*UnarchiveChatsSetting)(nil), // 57: WASyncAction.UnarchiveChatsSetting
5210
- (*DeleteChatAction)(nil), // 58: WASyncAction.DeleteChatAction
5211
- (*ClearChatAction)(nil), // 59: WASyncAction.ClearChatAction
5212
- (*MarkChatAsReadAction)(nil), // 60: WASyncAction.MarkChatAsReadAction
5213
- (*DeleteMessageForMeAction)(nil), // 61: WASyncAction.DeleteMessageForMeAction
5214
- (*ArchiveChatAction)(nil), // 62: WASyncAction.ArchiveChatAction
5215
- (*RecentEmojiWeightsAction)(nil), // 63: WASyncAction.RecentEmojiWeightsAction
5216
- (*LabelAssociationAction)(nil), // 64: WASyncAction.LabelAssociationAction
5217
- (*QuickReplyAction)(nil), // 65: WASyncAction.QuickReplyAction
5218
- (*LocaleSetting)(nil), // 66: WASyncAction.LocaleSetting
5219
- (*PushNameSetting)(nil), // 67: WASyncAction.PushNameSetting
5220
- (*SecurityNotificationSetting)(nil), // 68: WASyncAction.SecurityNotificationSetting
5221
- (*PinAction)(nil), // 69: WASyncAction.PinAction
5222
- (*MuteAction)(nil), // 70: WASyncAction.MuteAction
5223
- (*ContactAction)(nil), // 71: WASyncAction.ContactAction
5224
- (*StarAction)(nil), // 72: WASyncAction.StarAction
5225
- (*SyncActionData)(nil), // 73: WASyncAction.SyncActionData
5226
- (*CallLogRecord_ParticipantInfo)(nil), // 74: WASyncAction.CallLogRecord.ParticipantInfo
5227
- (*FavoritesAction_Favorite)(nil), // 75: WASyncAction.FavoritesAction.Favorite
5228
- (*waChatLockSettings.ChatLockSettings)(nil), // 76: WAProtobufsChatLockSettings.ChatLockSettings
5229
- (*waDeviceCapabilities.DeviceCapabilities)(nil), // 77: WAProtobufsDeviceCapabilities.DeviceCapabilities
5230
- (*waCommon.MessageKey)(nil), // 78: WACommon.MessageKey
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
5231
5900
  }
5232
5901
  var file_waSyncAction_WASyncAction_proto_depIdxs = []int32{
5233
5902
  2, // 0: WASyncAction.CallLogRecord.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
5234
5903
  1, // 1: WASyncAction.CallLogRecord.silenceReason:type_name -> WASyncAction.CallLogRecord.SilenceReason
5235
- 74, // 2: WASyncAction.CallLogRecord.participants:type_name -> WASyncAction.CallLogRecord.ParticipantInfo
5904
+ 85, // 2: WASyncAction.CallLogRecord.participants:type_name -> WASyncAction.CallLogRecord.ParticipantInfo
5236
5905
  0, // 3: WASyncAction.CallLogRecord.callType:type_name -> WASyncAction.CallLogRecord.CallType
5237
- 3, // 4: WASyncAction.NotificationActivitySettingAction.notificationActivitySetting:type_name -> WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
5238
- 4, // 5: WASyncAction.WaffleAccountLinkStateAction.linkState:type_name -> WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
5239
- 5, // 6: WASyncAction.MerchantPaymentPartnerAction.status:type_name -> WASyncAction.MerchantPaymentPartnerAction.Status
5240
- 6, // 7: WASyncAction.NoteEditAction.type:type_name -> WASyncAction.NoteEditAction.NoteType
5241
- 7, // 8: WASyncAction.StatusPrivacyAction.mode:type_name -> WASyncAction.StatusPrivacyAction.StatusDistributionMode
5242
- 8, // 9: WASyncAction.MarketingMessageAction.type:type_name -> WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
5243
- 9, // 10: WASyncAction.UsernameChatStartModeAction.chatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction.ChatStartMode
5244
- 10, // 11: WASyncAction.LabelEditAction.type:type_name -> WASyncAction.LabelEditAction.ListType
5245
- 11, // 12: WASyncAction.PatchDebugData.senderPlatform:type_name -> WASyncAction.PatchDebugData.Platform
5246
- 72, // 13: WASyncAction.SyncActionValue.starAction:type_name -> WASyncAction.StarAction
5247
- 71, // 14: WASyncAction.SyncActionValue.contactAction:type_name -> WASyncAction.ContactAction
5248
- 70, // 15: WASyncAction.SyncActionValue.muteAction:type_name -> WASyncAction.MuteAction
5249
- 69, // 16: WASyncAction.SyncActionValue.pinAction:type_name -> WASyncAction.PinAction
5250
- 68, // 17: WASyncAction.SyncActionValue.securityNotificationSetting:type_name -> WASyncAction.SecurityNotificationSetting
5251
- 67, // 18: WASyncAction.SyncActionValue.pushNameSetting:type_name -> WASyncAction.PushNameSetting
5252
- 65, // 19: WASyncAction.SyncActionValue.quickReplyAction:type_name -> WASyncAction.QuickReplyAction
5253
- 63, // 20: WASyncAction.SyncActionValue.recentEmojiWeightsAction:type_name -> WASyncAction.RecentEmojiWeightsAction
5254
- 20, // 21: WASyncAction.SyncActionValue.labelEditAction:type_name -> WASyncAction.LabelEditAction
5255
- 64, // 22: WASyncAction.SyncActionValue.labelAssociationAction:type_name -> WASyncAction.LabelAssociationAction
5256
- 66, // 23: WASyncAction.SyncActionValue.localeSetting:type_name -> WASyncAction.LocaleSetting
5257
- 62, // 24: WASyncAction.SyncActionValue.archiveChatAction:type_name -> WASyncAction.ArchiveChatAction
5258
- 61, // 25: WASyncAction.SyncActionValue.deleteMessageForMeAction:type_name -> WASyncAction.DeleteMessageForMeAction
5259
- 54, // 26: WASyncAction.SyncActionValue.keyExpiration:type_name -> WASyncAction.KeyExpiration
5260
- 60, // 27: WASyncAction.SyncActionValue.markChatAsReadAction:type_name -> WASyncAction.MarkChatAsReadAction
5261
- 59, // 28: WASyncAction.SyncActionValue.clearChatAction:type_name -> WASyncAction.ClearChatAction
5262
- 58, // 29: WASyncAction.SyncActionValue.deleteChatAction:type_name -> WASyncAction.DeleteChatAction
5263
- 57, // 30: WASyncAction.SyncActionValue.unarchiveChatsSetting:type_name -> WASyncAction.UnarchiveChatsSetting
5264
- 53, // 31: WASyncAction.SyncActionValue.primaryFeature:type_name -> WASyncAction.PrimaryFeature
5265
- 52, // 32: WASyncAction.SyncActionValue.androidUnsupportedActions:type_name -> WASyncAction.AndroidUnsupportedActions
5266
- 51, // 33: WASyncAction.SyncActionValue.agentAction:type_name -> WASyncAction.AgentAction
5267
- 50, // 34: WASyncAction.SyncActionValue.subscriptionAction:type_name -> WASyncAction.SubscriptionAction
5268
- 49, // 35: WASyncAction.SyncActionValue.userStatusMuteAction:type_name -> WASyncAction.UserStatusMuteAction
5269
- 48, // 36: WASyncAction.SyncActionValue.timeFormatAction:type_name -> WASyncAction.TimeFormatAction
5270
- 47, // 37: WASyncAction.SyncActionValue.nuxAction:type_name -> WASyncAction.NuxAction
5271
- 46, // 38: WASyncAction.SyncActionValue.primaryVersionAction:type_name -> WASyncAction.PrimaryVersionAction
5272
- 44, // 39: WASyncAction.SyncActionValue.stickerAction:type_name -> WASyncAction.StickerAction
5273
- 45, // 40: WASyncAction.SyncActionValue.removeRecentStickerAction:type_name -> WASyncAction.RemoveRecentStickerAction
5274
- 43, // 41: WASyncAction.SyncActionValue.chatAssignment:type_name -> WASyncAction.ChatAssignmentAction
5275
- 42, // 42: WASyncAction.SyncActionValue.chatAssignmentOpenedStatus:type_name -> WASyncAction.ChatAssignmentOpenedStatusAction
5276
- 41, // 43: WASyncAction.SyncActionValue.pnForLidChatAction:type_name -> WASyncAction.PnForLidChatAction
5277
- 18, // 44: WASyncAction.SyncActionValue.marketingMessageAction:type_name -> WASyncAction.MarketingMessageAction
5278
- 40, // 45: WASyncAction.SyncActionValue.marketingMessageBroadcastAction:type_name -> WASyncAction.MarketingMessageBroadcastAction
5279
- 39, // 46: WASyncAction.SyncActionValue.externalWebBetaAction:type_name -> WASyncAction.ExternalWebBetaAction
5280
- 38, // 47: WASyncAction.SyncActionValue.privacySettingRelayAllCalls:type_name -> WASyncAction.PrivacySettingRelayAllCalls
5281
- 37, // 48: WASyncAction.SyncActionValue.callLogAction:type_name -> WASyncAction.CallLogAction
5282
- 17, // 49: WASyncAction.SyncActionValue.statusPrivacy:type_name -> WASyncAction.StatusPrivacyAction
5283
- 36, // 50: WASyncAction.SyncActionValue.botWelcomeRequestAction:type_name -> WASyncAction.BotWelcomeRequestAction
5284
- 35, // 51: WASyncAction.SyncActionValue.deleteIndividualCallLog:type_name -> WASyncAction.DeleteIndividualCallLogAction
5285
- 34, // 52: WASyncAction.SyncActionValue.labelReorderingAction:type_name -> WASyncAction.LabelReorderingAction
5286
- 33, // 53: WASyncAction.SyncActionValue.paymentInfoAction:type_name -> WASyncAction.PaymentInfoAction
5287
- 30, // 54: WASyncAction.SyncActionValue.customPaymentMethodsAction:type_name -> WASyncAction.CustomPaymentMethodsAction
5288
- 29, // 55: WASyncAction.SyncActionValue.lockChatAction:type_name -> WASyncAction.LockChatAction
5289
- 76, // 56: WASyncAction.SyncActionValue.chatLockSettings:type_name -> WAProtobufsChatLockSettings.ChatLockSettings
5290
- 28, // 57: WASyncAction.SyncActionValue.wamoUserIdentifierAction:type_name -> WASyncAction.WamoUserIdentifierAction
5291
- 27, // 58: WASyncAction.SyncActionValue.privacySettingDisableLinkPreviewsAction:type_name -> WASyncAction.PrivacySettingDisableLinkPreviewsAction
5292
- 77, // 59: WASyncAction.SyncActionValue.deviceCapabilities:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities
5293
- 16, // 60: WASyncAction.SyncActionValue.noteEditAction:type_name -> WASyncAction.NoteEditAction
5294
- 26, // 61: WASyncAction.SyncActionValue.favoritesAction:type_name -> WASyncAction.FavoritesAction
5295
- 15, // 62: WASyncAction.SyncActionValue.merchantPaymentPartnerAction:type_name -> WASyncAction.MerchantPaymentPartnerAction
5296
- 14, // 63: WASyncAction.SyncActionValue.waffleAccountLinkStateAction:type_name -> WASyncAction.WaffleAccountLinkStateAction
5297
- 19, // 64: WASyncAction.SyncActionValue.usernameChatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction
5298
- 13, // 65: WASyncAction.SyncActionValue.notificationActivitySettingAction:type_name -> WASyncAction.NotificationActivitySettingAction
5299
- 25, // 66: WASyncAction.SyncActionValue.lidContactAction:type_name -> WASyncAction.LidContactAction
5300
- 24, // 67: WASyncAction.SyncActionValue.ctwaPerCustomerDataSharingAction:type_name -> WASyncAction.CtwaPerCustomerDataSharingAction
5301
- 75, // 68: WASyncAction.FavoritesAction.favorites:type_name -> WASyncAction.FavoritesAction.Favorite
5302
- 31, // 69: WASyncAction.CustomPaymentMethodsAction.customPaymentMethods:type_name -> WASyncAction.CustomPaymentMethod
5303
- 32, // 70: WASyncAction.CustomPaymentMethod.metadata:type_name -> WASyncAction.CustomPaymentMethodMetadata
5304
- 12, // 71: WASyncAction.CallLogAction.callLogRecord:type_name -> WASyncAction.CallLogRecord
5305
- 78, // 72: WASyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
5306
- 55, // 73: WASyncAction.SyncActionMessageRange.messages:type_name -> WASyncAction.SyncActionMessage
5307
- 56, // 74: WASyncAction.DeleteChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5308
- 56, // 75: WASyncAction.ClearChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5309
- 56, // 76: WASyncAction.MarkChatAsReadAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5310
- 56, // 77: WASyncAction.ArchiveChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5311
- 22, // 78: WASyncAction.RecentEmojiWeightsAction.weights:type_name -> WASyncAction.RecentEmojiWeight
5312
- 23, // 79: WASyncAction.SyncActionData.value:type_name -> WASyncAction.SyncActionValue
5313
- 2, // 80: WASyncAction.CallLogRecord.ParticipantInfo.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
5314
- 81, // [81:81] is the sub-list for method output_type
5315
- 81, // [81:81] is the sub-list for method input_type
5316
- 81, // [81:81] is the sub-list for extension type_name
5317
- 81, // [81:81] is the sub-list for extension extendee
5318
- 0, // [0:81] is the sub-list for field type_name
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
5319
5999
  }
5320
6000
 
5321
6001
  func init() { file_waSyncAction_WASyncAction_proto_init() }
@@ -5328,8 +6008,8 @@ func file_waSyncAction_WASyncAction_proto_init() {
5328
6008
  File: protoimpl.DescBuilder{
5329
6009
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
5330
6010
  RawDescriptor: unsafe.Slice(unsafe.StringData(file_waSyncAction_WASyncAction_proto_rawDesc), len(file_waSyncAction_WASyncAction_proto_rawDesc)),
5331
- NumEnums: 12,
5332
- NumMessages: 64,
6011
+ NumEnums: 14,
6012
+ NumMessages: 73,
5333
6013
  NumExtensions: 0,
5334
6014
  NumServices: 0,
5335
6015
  },