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

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

Potentially problematic release.


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

Files changed (258) hide show
  1. slidge_whatsapp/contact.py +15 -3
  2. slidge_whatsapp/event.go +152 -50
  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 +185 -168
  6. slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.so +0 -0
  7. slidge_whatsapp/generated/build.py +149 -135
  8. slidge_whatsapp/generated/whatsapp.c +1883 -1611
  9. slidge_whatsapp/generated/whatsapp.go +1157 -1046
  10. slidge_whatsapp/generated/whatsapp.py +1326 -1201
  11. slidge_whatsapp/generated/whatsapp_go.h +185 -168
  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 +34 -17
  17. slidge_whatsapp/session.py +46 -14
  18. slidge_whatsapp/vendor/github.com/beeper/argo-go/LICENSE +9 -0
  19. slidge_whatsapp/vendor/github.com/beeper/argo-go/block/blockreader.go +329 -0
  20. slidge_whatsapp/vendor/github.com/beeper/argo-go/block/blockwriter.go +417 -0
  21. slidge_whatsapp/vendor/github.com/beeper/argo-go/codec/decoder.go +652 -0
  22. slidge_whatsapp/vendor/github.com/beeper/argo-go/codec/encoder.go +985 -0
  23. slidge_whatsapp/vendor/github.com/beeper/argo-go/header/header.go +135 -0
  24. slidge_whatsapp/vendor/github.com/beeper/argo-go/internal/util/util.go +133 -0
  25. slidge_whatsapp/vendor/github.com/beeper/argo-go/label/label.go +384 -0
  26. slidge_whatsapp/vendor/github.com/beeper/argo-go/label/wiremarkers.go +37 -0
  27. slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/bitset/bitset.go +197 -0
  28. slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/buf/buf.go +420 -0
  29. slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/varint/varint.go +246 -0
  30. slidge_whatsapp/vendor/github.com/beeper/argo-go/wire/wire.go +614 -0
  31. slidge_whatsapp/vendor/github.com/beeper/argo-go/wirecodec/decode.go +341 -0
  32. slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/LICENSE +21 -0
  33. slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/list.go +95 -0
  34. slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/orderedmap.go +187 -0
  35. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz.go +1 -0
  36. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo.go +3 -0
  37. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_nocgo.go +4 -5
  38. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_darwin.go +11 -1
  39. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_linux.go +10 -0
  40. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_windows.go +12 -0
  41. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/.gitignore +0 -2
  42. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/CHANGELOG.md +30 -0
  43. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/COPYRIGHT.txt +6 -1
  44. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/README.md +14 -17
  45. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi.go +1 -1
  46. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi2.go +7 -0
  47. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/LICENSE +21 -0
  48. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/darwin_amd64/libffi.8.dylib +0 -0
  49. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/darwin_arm64/libffi.8.dylib +0 -0
  50. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/windows_amd64/libffi-8.dll +0 -0
  51. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/cif.go +15 -0
  52. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/cif_arm64.go +16 -0
  53. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed.go +49 -0
  54. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_darwin_amd64.go +10 -0
  55. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_darwin_arm64.go +10 -0
  56. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_windows_amd64.go +10 -0
  57. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/ffi.go +51 -13
  58. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/init.go +22 -9
  59. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/README.md +2 -0
  60. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c +3096 -1651
  61. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h +188 -128
  62. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth.go +13 -140
  63. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3ext.h +4 -0
  64. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.23.go +2 -2
  65. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.25.go +37 -0
  66. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/LICENSE +19 -0
  67. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/argmap.go +37 -0
  68. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/collections.go +148 -0
  69. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/comment.go +31 -0
  70. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/decode.go +216 -0
  71. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/definition.go +110 -0
  72. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/directive.go +43 -0
  73. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/document.go +89 -0
  74. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/dumper.go +159 -0
  75. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/fragment.go +41 -0
  76. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/operation.go +32 -0
  77. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/path.go +72 -0
  78. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/selection.go +41 -0
  79. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/source.go +19 -0
  80. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/type.go +68 -0
  81. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/value.go +122 -0
  82. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/handleerrors.go +60 -26
  83. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/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.0.dist-info}/METADATA +5 -4
  251. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0.dist-info}/RECORD +254 -174
  252. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0.dist-info}/WHEEL +1 -1
  253. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi_amd64.go +0 -7
  254. slidge_whatsapp/vendor/golang.org/x/net/http2/config_go124.go +0 -61
  255. slidge_whatsapp/vendor/golang.org/x/net/http2/config_pre_go124.go +0 -16
  256. slidge_whatsapp/vendor/golang.org/x/net/http2/timer.go +0 -20
  257. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0.dist-info}/entry_points.txt +0 -0
  258. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1,952 @@
1
+ // Code generated by protoc-gen-go. DO NOT EDIT.
2
+ // versions:
3
+ // protoc-gen-go v1.36.6
4
+ // protoc v3.21.12
5
+ // source: waStatusAttributions/WAStatusAttributions.proto
6
+
7
+ package waStatusAttributions
8
+
9
+ import (
10
+ reflect "reflect"
11
+ sync "sync"
12
+ unsafe "unsafe"
13
+
14
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
15
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
16
+ )
17
+
18
+ const (
19
+ // Verify that this generated code is sufficiently up-to-date.
20
+ _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
21
+ // Verify that runtime/protoimpl is sufficiently up-to-date.
22
+ _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
23
+ )
24
+
25
+ type StatusAttribution_Type int32
26
+
27
+ const (
28
+ StatusAttribution_UNKNOWN StatusAttribution_Type = 0
29
+ StatusAttribution_RESHARE StatusAttribution_Type = 1
30
+ StatusAttribution_EXTERNAL_SHARE StatusAttribution_Type = 2
31
+ StatusAttribution_MUSIC StatusAttribution_Type = 3
32
+ StatusAttribution_STATUS_MENTION StatusAttribution_Type = 4
33
+ StatusAttribution_GROUP_STATUS StatusAttribution_Type = 5
34
+ StatusAttribution_RL_ATTRIBUTION StatusAttribution_Type = 6
35
+ StatusAttribution_AI_CREATED StatusAttribution_Type = 7
36
+ )
37
+
38
+ // Enum value maps for StatusAttribution_Type.
39
+ var (
40
+ StatusAttribution_Type_name = map[int32]string{
41
+ 0: "UNKNOWN",
42
+ 1: "RESHARE",
43
+ 2: "EXTERNAL_SHARE",
44
+ 3: "MUSIC",
45
+ 4: "STATUS_MENTION",
46
+ 5: "GROUP_STATUS",
47
+ 6: "RL_ATTRIBUTION",
48
+ 7: "AI_CREATED",
49
+ }
50
+ StatusAttribution_Type_value = map[string]int32{
51
+ "UNKNOWN": 0,
52
+ "RESHARE": 1,
53
+ "EXTERNAL_SHARE": 2,
54
+ "MUSIC": 3,
55
+ "STATUS_MENTION": 4,
56
+ "GROUP_STATUS": 5,
57
+ "RL_ATTRIBUTION": 6,
58
+ "AI_CREATED": 7,
59
+ }
60
+ )
61
+
62
+ func (x StatusAttribution_Type) Enum() *StatusAttribution_Type {
63
+ p := new(StatusAttribution_Type)
64
+ *p = x
65
+ return p
66
+ }
67
+
68
+ func (x StatusAttribution_Type) String() string {
69
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
70
+ }
71
+
72
+ func (StatusAttribution_Type) Descriptor() protoreflect.EnumDescriptor {
73
+ return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[0].Descriptor()
74
+ }
75
+
76
+ func (StatusAttribution_Type) Type() protoreflect.EnumType {
77
+ return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[0]
78
+ }
79
+
80
+ func (x StatusAttribution_Type) Number() protoreflect.EnumNumber {
81
+ return protoreflect.EnumNumber(x)
82
+ }
83
+
84
+ // Deprecated: Do not use.
85
+ func (x *StatusAttribution_Type) UnmarshalJSON(b []byte) error {
86
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
87
+ if err != nil {
88
+ return err
89
+ }
90
+ *x = StatusAttribution_Type(num)
91
+ return nil
92
+ }
93
+
94
+ // Deprecated: Use StatusAttribution_Type.Descriptor instead.
95
+ func (StatusAttribution_Type) EnumDescriptor() ([]byte, []int) {
96
+ return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 0}
97
+ }
98
+
99
+ type StatusAttribution_RLAttribution_Source int32
100
+
101
+ const (
102
+ StatusAttribution_RLAttribution_UNKNOWN StatusAttribution_RLAttribution_Source = 0
103
+ StatusAttribution_RLAttribution_RAY_BAN_META_GLASSES StatusAttribution_RLAttribution_Source = 1
104
+ StatusAttribution_RLAttribution_OAKLEY_META_GLASSES StatusAttribution_RLAttribution_Source = 2
105
+ StatusAttribution_RLAttribution_HYPERNOVA_GLASSES StatusAttribution_RLAttribution_Source = 3
106
+ )
107
+
108
+ // Enum value maps for StatusAttribution_RLAttribution_Source.
109
+ var (
110
+ StatusAttribution_RLAttribution_Source_name = map[int32]string{
111
+ 0: "UNKNOWN",
112
+ 1: "RAY_BAN_META_GLASSES",
113
+ 2: "OAKLEY_META_GLASSES",
114
+ 3: "HYPERNOVA_GLASSES",
115
+ }
116
+ StatusAttribution_RLAttribution_Source_value = map[string]int32{
117
+ "UNKNOWN": 0,
118
+ "RAY_BAN_META_GLASSES": 1,
119
+ "OAKLEY_META_GLASSES": 2,
120
+ "HYPERNOVA_GLASSES": 3,
121
+ }
122
+ )
123
+
124
+ func (x StatusAttribution_RLAttribution_Source) Enum() *StatusAttribution_RLAttribution_Source {
125
+ p := new(StatusAttribution_RLAttribution_Source)
126
+ *p = x
127
+ return p
128
+ }
129
+
130
+ func (x StatusAttribution_RLAttribution_Source) String() string {
131
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
132
+ }
133
+
134
+ func (StatusAttribution_RLAttribution_Source) Descriptor() protoreflect.EnumDescriptor {
135
+ return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[1].Descriptor()
136
+ }
137
+
138
+ func (StatusAttribution_RLAttribution_Source) Type() protoreflect.EnumType {
139
+ return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[1]
140
+ }
141
+
142
+ func (x StatusAttribution_RLAttribution_Source) Number() protoreflect.EnumNumber {
143
+ return protoreflect.EnumNumber(x)
144
+ }
145
+
146
+ // Deprecated: Do not use.
147
+ func (x *StatusAttribution_RLAttribution_Source) UnmarshalJSON(b []byte) error {
148
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
149
+ if err != nil {
150
+ return err
151
+ }
152
+ *x = StatusAttribution_RLAttribution_Source(num)
153
+ return nil
154
+ }
155
+
156
+ // Deprecated: Use StatusAttribution_RLAttribution_Source.Descriptor instead.
157
+ func (StatusAttribution_RLAttribution_Source) EnumDescriptor() ([]byte, []int) {
158
+ return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 0, 0}
159
+ }
160
+
161
+ type StatusAttribution_ExternalShare_Source int32
162
+
163
+ const (
164
+ StatusAttribution_ExternalShare_UNKNOWN StatusAttribution_ExternalShare_Source = 0
165
+ StatusAttribution_ExternalShare_INSTAGRAM StatusAttribution_ExternalShare_Source = 1
166
+ StatusAttribution_ExternalShare_FACEBOOK StatusAttribution_ExternalShare_Source = 2
167
+ StatusAttribution_ExternalShare_MESSENGER StatusAttribution_ExternalShare_Source = 3
168
+ StatusAttribution_ExternalShare_SPOTIFY StatusAttribution_ExternalShare_Source = 4
169
+ StatusAttribution_ExternalShare_YOUTUBE StatusAttribution_ExternalShare_Source = 5
170
+ StatusAttribution_ExternalShare_PINTEREST StatusAttribution_ExternalShare_Source = 6
171
+ StatusAttribution_ExternalShare_THREADS StatusAttribution_ExternalShare_Source = 7
172
+ )
173
+
174
+ // Enum value maps for StatusAttribution_ExternalShare_Source.
175
+ var (
176
+ StatusAttribution_ExternalShare_Source_name = map[int32]string{
177
+ 0: "UNKNOWN",
178
+ 1: "INSTAGRAM",
179
+ 2: "FACEBOOK",
180
+ 3: "MESSENGER",
181
+ 4: "SPOTIFY",
182
+ 5: "YOUTUBE",
183
+ 6: "PINTEREST",
184
+ 7: "THREADS",
185
+ }
186
+ StatusAttribution_ExternalShare_Source_value = map[string]int32{
187
+ "UNKNOWN": 0,
188
+ "INSTAGRAM": 1,
189
+ "FACEBOOK": 2,
190
+ "MESSENGER": 3,
191
+ "SPOTIFY": 4,
192
+ "YOUTUBE": 5,
193
+ "PINTEREST": 6,
194
+ "THREADS": 7,
195
+ }
196
+ )
197
+
198
+ func (x StatusAttribution_ExternalShare_Source) Enum() *StatusAttribution_ExternalShare_Source {
199
+ p := new(StatusAttribution_ExternalShare_Source)
200
+ *p = x
201
+ return p
202
+ }
203
+
204
+ func (x StatusAttribution_ExternalShare_Source) String() string {
205
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
206
+ }
207
+
208
+ func (StatusAttribution_ExternalShare_Source) Descriptor() protoreflect.EnumDescriptor {
209
+ return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[2].Descriptor()
210
+ }
211
+
212
+ func (StatusAttribution_ExternalShare_Source) Type() protoreflect.EnumType {
213
+ return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[2]
214
+ }
215
+
216
+ func (x StatusAttribution_ExternalShare_Source) Number() protoreflect.EnumNumber {
217
+ return protoreflect.EnumNumber(x)
218
+ }
219
+
220
+ // Deprecated: Do not use.
221
+ func (x *StatusAttribution_ExternalShare_Source) UnmarshalJSON(b []byte) error {
222
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
223
+ if err != nil {
224
+ return err
225
+ }
226
+ *x = StatusAttribution_ExternalShare_Source(num)
227
+ return nil
228
+ }
229
+
230
+ // Deprecated: Use StatusAttribution_ExternalShare_Source.Descriptor instead.
231
+ func (StatusAttribution_ExternalShare_Source) EnumDescriptor() ([]byte, []int) {
232
+ return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 1, 0}
233
+ }
234
+
235
+ type StatusAttribution_StatusReshare_Source int32
236
+
237
+ const (
238
+ StatusAttribution_StatusReshare_UNKNOWN StatusAttribution_StatusReshare_Source = 0
239
+ StatusAttribution_StatusReshare_INTERNAL_RESHARE StatusAttribution_StatusReshare_Source = 1
240
+ StatusAttribution_StatusReshare_MENTION_RESHARE StatusAttribution_StatusReshare_Source = 2
241
+ StatusAttribution_StatusReshare_CHANNEL_RESHARE StatusAttribution_StatusReshare_Source = 3
242
+ )
243
+
244
+ // Enum value maps for StatusAttribution_StatusReshare_Source.
245
+ var (
246
+ StatusAttribution_StatusReshare_Source_name = map[int32]string{
247
+ 0: "UNKNOWN",
248
+ 1: "INTERNAL_RESHARE",
249
+ 2: "MENTION_RESHARE",
250
+ 3: "CHANNEL_RESHARE",
251
+ }
252
+ StatusAttribution_StatusReshare_Source_value = map[string]int32{
253
+ "UNKNOWN": 0,
254
+ "INTERNAL_RESHARE": 1,
255
+ "MENTION_RESHARE": 2,
256
+ "CHANNEL_RESHARE": 3,
257
+ }
258
+ )
259
+
260
+ func (x StatusAttribution_StatusReshare_Source) Enum() *StatusAttribution_StatusReshare_Source {
261
+ p := new(StatusAttribution_StatusReshare_Source)
262
+ *p = x
263
+ return p
264
+ }
265
+
266
+ func (x StatusAttribution_StatusReshare_Source) String() string {
267
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
268
+ }
269
+
270
+ func (StatusAttribution_StatusReshare_Source) Descriptor() protoreflect.EnumDescriptor {
271
+ return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[3].Descriptor()
272
+ }
273
+
274
+ func (StatusAttribution_StatusReshare_Source) Type() protoreflect.EnumType {
275
+ return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[3]
276
+ }
277
+
278
+ func (x StatusAttribution_StatusReshare_Source) Number() protoreflect.EnumNumber {
279
+ return protoreflect.EnumNumber(x)
280
+ }
281
+
282
+ // Deprecated: Do not use.
283
+ func (x *StatusAttribution_StatusReshare_Source) UnmarshalJSON(b []byte) error {
284
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
285
+ if err != nil {
286
+ return err
287
+ }
288
+ *x = StatusAttribution_StatusReshare_Source(num)
289
+ return nil
290
+ }
291
+
292
+ // Deprecated: Use StatusAttribution_StatusReshare_Source.Descriptor instead.
293
+ func (StatusAttribution_StatusReshare_Source) EnumDescriptor() ([]byte, []int) {
294
+ return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 2, 0}
295
+ }
296
+
297
+ type StatusAttribution struct {
298
+ state protoimpl.MessageState `protogen:"open.v1"`
299
+ // Types that are valid to be assigned to AttributionData:
300
+ //
301
+ // *StatusAttribution_StatusReshare_
302
+ // *StatusAttribution_ExternalShare_
303
+ // *StatusAttribution_Music_
304
+ // *StatusAttribution_GroupStatus_
305
+ // *StatusAttribution_RlAttribution
306
+ AttributionData isStatusAttribution_AttributionData `protobuf_oneof:"attributionData"`
307
+ Type *StatusAttribution_Type `protobuf:"varint,1,opt,name=type,enum=WAStatusAttributions.StatusAttribution_Type" json:"type,omitempty"`
308
+ ActionURL *string `protobuf:"bytes,2,opt,name=actionURL" json:"actionURL,omitempty"`
309
+ unknownFields protoimpl.UnknownFields
310
+ sizeCache protoimpl.SizeCache
311
+ }
312
+
313
+ func (x *StatusAttribution) Reset() {
314
+ *x = StatusAttribution{}
315
+ mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[0]
316
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
317
+ ms.StoreMessageInfo(mi)
318
+ }
319
+
320
+ func (x *StatusAttribution) String() string {
321
+ return protoimpl.X.MessageStringOf(x)
322
+ }
323
+
324
+ func (*StatusAttribution) ProtoMessage() {}
325
+
326
+ func (x *StatusAttribution) ProtoReflect() protoreflect.Message {
327
+ mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[0]
328
+ if x != nil {
329
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
330
+ if ms.LoadMessageInfo() == nil {
331
+ ms.StoreMessageInfo(mi)
332
+ }
333
+ return ms
334
+ }
335
+ return mi.MessageOf(x)
336
+ }
337
+
338
+ // Deprecated: Use StatusAttribution.ProtoReflect.Descriptor instead.
339
+ func (*StatusAttribution) Descriptor() ([]byte, []int) {
340
+ return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0}
341
+ }
342
+
343
+ func (x *StatusAttribution) GetAttributionData() isStatusAttribution_AttributionData {
344
+ if x != nil {
345
+ return x.AttributionData
346
+ }
347
+ return nil
348
+ }
349
+
350
+ func (x *StatusAttribution) GetStatusReshare() *StatusAttribution_StatusReshare {
351
+ if x != nil {
352
+ if x, ok := x.AttributionData.(*StatusAttribution_StatusReshare_); ok {
353
+ return x.StatusReshare
354
+ }
355
+ }
356
+ return nil
357
+ }
358
+
359
+ func (x *StatusAttribution) GetExternalShare() *StatusAttribution_ExternalShare {
360
+ if x != nil {
361
+ if x, ok := x.AttributionData.(*StatusAttribution_ExternalShare_); ok {
362
+ return x.ExternalShare
363
+ }
364
+ }
365
+ return nil
366
+ }
367
+
368
+ func (x *StatusAttribution) GetMusic() *StatusAttribution_Music {
369
+ if x != nil {
370
+ if x, ok := x.AttributionData.(*StatusAttribution_Music_); ok {
371
+ return x.Music
372
+ }
373
+ }
374
+ return nil
375
+ }
376
+
377
+ func (x *StatusAttribution) GetGroupStatus() *StatusAttribution_GroupStatus {
378
+ if x != nil {
379
+ if x, ok := x.AttributionData.(*StatusAttribution_GroupStatus_); ok {
380
+ return x.GroupStatus
381
+ }
382
+ }
383
+ return nil
384
+ }
385
+
386
+ func (x *StatusAttribution) GetRlAttribution() *StatusAttribution_RLAttribution {
387
+ if x != nil {
388
+ if x, ok := x.AttributionData.(*StatusAttribution_RlAttribution); ok {
389
+ return x.RlAttribution
390
+ }
391
+ }
392
+ return nil
393
+ }
394
+
395
+ func (x *StatusAttribution) GetType() StatusAttribution_Type {
396
+ if x != nil && x.Type != nil {
397
+ return *x.Type
398
+ }
399
+ return StatusAttribution_UNKNOWN
400
+ }
401
+
402
+ func (x *StatusAttribution) GetActionURL() string {
403
+ if x != nil && x.ActionURL != nil {
404
+ return *x.ActionURL
405
+ }
406
+ return ""
407
+ }
408
+
409
+ type isStatusAttribution_AttributionData interface {
410
+ isStatusAttribution_AttributionData()
411
+ }
412
+
413
+ type StatusAttribution_StatusReshare_ struct {
414
+ StatusReshare *StatusAttribution_StatusReshare `protobuf:"bytes,3,opt,name=statusReshare,oneof"`
415
+ }
416
+
417
+ type StatusAttribution_ExternalShare_ struct {
418
+ ExternalShare *StatusAttribution_ExternalShare `protobuf:"bytes,4,opt,name=externalShare,oneof"`
419
+ }
420
+
421
+ type StatusAttribution_Music_ struct {
422
+ Music *StatusAttribution_Music `protobuf:"bytes,5,opt,name=music,oneof"`
423
+ }
424
+
425
+ type StatusAttribution_GroupStatus_ struct {
426
+ GroupStatus *StatusAttribution_GroupStatus `protobuf:"bytes,6,opt,name=groupStatus,oneof"`
427
+ }
428
+
429
+ type StatusAttribution_RlAttribution struct {
430
+ RlAttribution *StatusAttribution_RLAttribution `protobuf:"bytes,7,opt,name=rlAttribution,oneof"`
431
+ }
432
+
433
+ func (*StatusAttribution_StatusReshare_) isStatusAttribution_AttributionData() {}
434
+
435
+ func (*StatusAttribution_ExternalShare_) isStatusAttribution_AttributionData() {}
436
+
437
+ func (*StatusAttribution_Music_) isStatusAttribution_AttributionData() {}
438
+
439
+ func (*StatusAttribution_GroupStatus_) isStatusAttribution_AttributionData() {}
440
+
441
+ func (*StatusAttribution_RlAttribution) isStatusAttribution_AttributionData() {}
442
+
443
+ type StatusAttribution_RLAttribution struct {
444
+ state protoimpl.MessageState `protogen:"open.v1"`
445
+ Source *StatusAttribution_RLAttribution_Source `protobuf:"varint,1,opt,name=source,enum=WAStatusAttributions.StatusAttribution_RLAttribution_Source" json:"source,omitempty"`
446
+ unknownFields protoimpl.UnknownFields
447
+ sizeCache protoimpl.SizeCache
448
+ }
449
+
450
+ func (x *StatusAttribution_RLAttribution) Reset() {
451
+ *x = StatusAttribution_RLAttribution{}
452
+ mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[1]
453
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
454
+ ms.StoreMessageInfo(mi)
455
+ }
456
+
457
+ func (x *StatusAttribution_RLAttribution) String() string {
458
+ return protoimpl.X.MessageStringOf(x)
459
+ }
460
+
461
+ func (*StatusAttribution_RLAttribution) ProtoMessage() {}
462
+
463
+ func (x *StatusAttribution_RLAttribution) ProtoReflect() protoreflect.Message {
464
+ mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[1]
465
+ if x != nil {
466
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
467
+ if ms.LoadMessageInfo() == nil {
468
+ ms.StoreMessageInfo(mi)
469
+ }
470
+ return ms
471
+ }
472
+ return mi.MessageOf(x)
473
+ }
474
+
475
+ // Deprecated: Use StatusAttribution_RLAttribution.ProtoReflect.Descriptor instead.
476
+ func (*StatusAttribution_RLAttribution) Descriptor() ([]byte, []int) {
477
+ return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 0}
478
+ }
479
+
480
+ func (x *StatusAttribution_RLAttribution) GetSource() StatusAttribution_RLAttribution_Source {
481
+ if x != nil && x.Source != nil {
482
+ return *x.Source
483
+ }
484
+ return StatusAttribution_RLAttribution_UNKNOWN
485
+ }
486
+
487
+ type StatusAttribution_ExternalShare struct {
488
+ state protoimpl.MessageState `protogen:"open.v1"`
489
+ ActionURL *string `protobuf:"bytes,1,opt,name=actionURL" json:"actionURL,omitempty"`
490
+ Source *StatusAttribution_ExternalShare_Source `protobuf:"varint,2,opt,name=source,enum=WAStatusAttributions.StatusAttribution_ExternalShare_Source" json:"source,omitempty"`
491
+ Duration *int32 `protobuf:"varint,3,opt,name=duration" json:"duration,omitempty"`
492
+ ActionFallbackURL *string `protobuf:"bytes,4,opt,name=actionFallbackURL" json:"actionFallbackURL,omitempty"`
493
+ unknownFields protoimpl.UnknownFields
494
+ sizeCache protoimpl.SizeCache
495
+ }
496
+
497
+ func (x *StatusAttribution_ExternalShare) Reset() {
498
+ *x = StatusAttribution_ExternalShare{}
499
+ mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[2]
500
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
501
+ ms.StoreMessageInfo(mi)
502
+ }
503
+
504
+ func (x *StatusAttribution_ExternalShare) String() string {
505
+ return protoimpl.X.MessageStringOf(x)
506
+ }
507
+
508
+ func (*StatusAttribution_ExternalShare) ProtoMessage() {}
509
+
510
+ func (x *StatusAttribution_ExternalShare) ProtoReflect() protoreflect.Message {
511
+ mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[2]
512
+ if x != nil {
513
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
514
+ if ms.LoadMessageInfo() == nil {
515
+ ms.StoreMessageInfo(mi)
516
+ }
517
+ return ms
518
+ }
519
+ return mi.MessageOf(x)
520
+ }
521
+
522
+ // Deprecated: Use StatusAttribution_ExternalShare.ProtoReflect.Descriptor instead.
523
+ func (*StatusAttribution_ExternalShare) Descriptor() ([]byte, []int) {
524
+ return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 1}
525
+ }
526
+
527
+ func (x *StatusAttribution_ExternalShare) GetActionURL() string {
528
+ if x != nil && x.ActionURL != nil {
529
+ return *x.ActionURL
530
+ }
531
+ return ""
532
+ }
533
+
534
+ func (x *StatusAttribution_ExternalShare) GetSource() StatusAttribution_ExternalShare_Source {
535
+ if x != nil && x.Source != nil {
536
+ return *x.Source
537
+ }
538
+ return StatusAttribution_ExternalShare_UNKNOWN
539
+ }
540
+
541
+ func (x *StatusAttribution_ExternalShare) GetDuration() int32 {
542
+ if x != nil && x.Duration != nil {
543
+ return *x.Duration
544
+ }
545
+ return 0
546
+ }
547
+
548
+ func (x *StatusAttribution_ExternalShare) GetActionFallbackURL() string {
549
+ if x != nil && x.ActionFallbackURL != nil {
550
+ return *x.ActionFallbackURL
551
+ }
552
+ return ""
553
+ }
554
+
555
+ type StatusAttribution_StatusReshare struct {
556
+ state protoimpl.MessageState `protogen:"open.v1"`
557
+ Source *StatusAttribution_StatusReshare_Source `protobuf:"varint,1,opt,name=source,enum=WAStatusAttributions.StatusAttribution_StatusReshare_Source" json:"source,omitempty"`
558
+ Metadata *StatusAttribution_StatusReshare_Metadata `protobuf:"bytes,2,opt,name=metadata" json:"metadata,omitempty"`
559
+ unknownFields protoimpl.UnknownFields
560
+ sizeCache protoimpl.SizeCache
561
+ }
562
+
563
+ func (x *StatusAttribution_StatusReshare) Reset() {
564
+ *x = StatusAttribution_StatusReshare{}
565
+ mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[3]
566
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
567
+ ms.StoreMessageInfo(mi)
568
+ }
569
+
570
+ func (x *StatusAttribution_StatusReshare) String() string {
571
+ return protoimpl.X.MessageStringOf(x)
572
+ }
573
+
574
+ func (*StatusAttribution_StatusReshare) ProtoMessage() {}
575
+
576
+ func (x *StatusAttribution_StatusReshare) ProtoReflect() protoreflect.Message {
577
+ mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[3]
578
+ if x != nil {
579
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
580
+ if ms.LoadMessageInfo() == nil {
581
+ ms.StoreMessageInfo(mi)
582
+ }
583
+ return ms
584
+ }
585
+ return mi.MessageOf(x)
586
+ }
587
+
588
+ // Deprecated: Use StatusAttribution_StatusReshare.ProtoReflect.Descriptor instead.
589
+ func (*StatusAttribution_StatusReshare) Descriptor() ([]byte, []int) {
590
+ return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 2}
591
+ }
592
+
593
+ func (x *StatusAttribution_StatusReshare) GetSource() StatusAttribution_StatusReshare_Source {
594
+ if x != nil && x.Source != nil {
595
+ return *x.Source
596
+ }
597
+ return StatusAttribution_StatusReshare_UNKNOWN
598
+ }
599
+
600
+ func (x *StatusAttribution_StatusReshare) GetMetadata() *StatusAttribution_StatusReshare_Metadata {
601
+ if x != nil {
602
+ return x.Metadata
603
+ }
604
+ return nil
605
+ }
606
+
607
+ type StatusAttribution_GroupStatus struct {
608
+ state protoimpl.MessageState `protogen:"open.v1"`
609
+ AuthorJID *string `protobuf:"bytes,1,opt,name=authorJID" json:"authorJID,omitempty"`
610
+ unknownFields protoimpl.UnknownFields
611
+ sizeCache protoimpl.SizeCache
612
+ }
613
+
614
+ func (x *StatusAttribution_GroupStatus) Reset() {
615
+ *x = StatusAttribution_GroupStatus{}
616
+ mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[4]
617
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
618
+ ms.StoreMessageInfo(mi)
619
+ }
620
+
621
+ func (x *StatusAttribution_GroupStatus) String() string {
622
+ return protoimpl.X.MessageStringOf(x)
623
+ }
624
+
625
+ func (*StatusAttribution_GroupStatus) ProtoMessage() {}
626
+
627
+ func (x *StatusAttribution_GroupStatus) ProtoReflect() protoreflect.Message {
628
+ mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[4]
629
+ if x != nil {
630
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
631
+ if ms.LoadMessageInfo() == nil {
632
+ ms.StoreMessageInfo(mi)
633
+ }
634
+ return ms
635
+ }
636
+ return mi.MessageOf(x)
637
+ }
638
+
639
+ // Deprecated: Use StatusAttribution_GroupStatus.ProtoReflect.Descriptor instead.
640
+ func (*StatusAttribution_GroupStatus) Descriptor() ([]byte, []int) {
641
+ return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 3}
642
+ }
643
+
644
+ func (x *StatusAttribution_GroupStatus) GetAuthorJID() string {
645
+ if x != nil && x.AuthorJID != nil {
646
+ return *x.AuthorJID
647
+ }
648
+ return ""
649
+ }
650
+
651
+ type StatusAttribution_Music struct {
652
+ state protoimpl.MessageState `protogen:"open.v1"`
653
+ AuthorName *string `protobuf:"bytes,1,opt,name=authorName" json:"authorName,omitempty"`
654
+ SongID *string `protobuf:"bytes,2,opt,name=songID" json:"songID,omitempty"`
655
+ Title *string `protobuf:"bytes,3,opt,name=title" json:"title,omitempty"`
656
+ Author *string `protobuf:"bytes,4,opt,name=author" json:"author,omitempty"`
657
+ ArtistAttribution *string `protobuf:"bytes,5,opt,name=artistAttribution" json:"artistAttribution,omitempty"`
658
+ IsExplicit *bool `protobuf:"varint,6,opt,name=isExplicit" json:"isExplicit,omitempty"`
659
+ unknownFields protoimpl.UnknownFields
660
+ sizeCache protoimpl.SizeCache
661
+ }
662
+
663
+ func (x *StatusAttribution_Music) Reset() {
664
+ *x = StatusAttribution_Music{}
665
+ mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[5]
666
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
667
+ ms.StoreMessageInfo(mi)
668
+ }
669
+
670
+ func (x *StatusAttribution_Music) String() string {
671
+ return protoimpl.X.MessageStringOf(x)
672
+ }
673
+
674
+ func (*StatusAttribution_Music) ProtoMessage() {}
675
+
676
+ func (x *StatusAttribution_Music) ProtoReflect() protoreflect.Message {
677
+ mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[5]
678
+ if x != nil {
679
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
680
+ if ms.LoadMessageInfo() == nil {
681
+ ms.StoreMessageInfo(mi)
682
+ }
683
+ return ms
684
+ }
685
+ return mi.MessageOf(x)
686
+ }
687
+
688
+ // Deprecated: Use StatusAttribution_Music.ProtoReflect.Descriptor instead.
689
+ func (*StatusAttribution_Music) Descriptor() ([]byte, []int) {
690
+ return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 4}
691
+ }
692
+
693
+ func (x *StatusAttribution_Music) GetAuthorName() string {
694
+ if x != nil && x.AuthorName != nil {
695
+ return *x.AuthorName
696
+ }
697
+ return ""
698
+ }
699
+
700
+ func (x *StatusAttribution_Music) GetSongID() string {
701
+ if x != nil && x.SongID != nil {
702
+ return *x.SongID
703
+ }
704
+ return ""
705
+ }
706
+
707
+ func (x *StatusAttribution_Music) GetTitle() string {
708
+ if x != nil && x.Title != nil {
709
+ return *x.Title
710
+ }
711
+ return ""
712
+ }
713
+
714
+ func (x *StatusAttribution_Music) GetAuthor() string {
715
+ if x != nil && x.Author != nil {
716
+ return *x.Author
717
+ }
718
+ return ""
719
+ }
720
+
721
+ func (x *StatusAttribution_Music) GetArtistAttribution() string {
722
+ if x != nil && x.ArtistAttribution != nil {
723
+ return *x.ArtistAttribution
724
+ }
725
+ return ""
726
+ }
727
+
728
+ func (x *StatusAttribution_Music) GetIsExplicit() bool {
729
+ if x != nil && x.IsExplicit != nil {
730
+ return *x.IsExplicit
731
+ }
732
+ return false
733
+ }
734
+
735
+ type StatusAttribution_StatusReshare_Metadata struct {
736
+ state protoimpl.MessageState `protogen:"open.v1"`
737
+ Duration *int32 `protobuf:"varint,1,opt,name=duration" json:"duration,omitempty"`
738
+ ChannelJID *string `protobuf:"bytes,2,opt,name=channelJID" json:"channelJID,omitempty"`
739
+ ChannelMessageID *int32 `protobuf:"varint,3,opt,name=channelMessageID" json:"channelMessageID,omitempty"`
740
+ HasMultipleReshares *bool `protobuf:"varint,4,opt,name=hasMultipleReshares" json:"hasMultipleReshares,omitempty"`
741
+ unknownFields protoimpl.UnknownFields
742
+ sizeCache protoimpl.SizeCache
743
+ }
744
+
745
+ func (x *StatusAttribution_StatusReshare_Metadata) Reset() {
746
+ *x = StatusAttribution_StatusReshare_Metadata{}
747
+ mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[6]
748
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
749
+ ms.StoreMessageInfo(mi)
750
+ }
751
+
752
+ func (x *StatusAttribution_StatusReshare_Metadata) String() string {
753
+ return protoimpl.X.MessageStringOf(x)
754
+ }
755
+
756
+ func (*StatusAttribution_StatusReshare_Metadata) ProtoMessage() {}
757
+
758
+ func (x *StatusAttribution_StatusReshare_Metadata) ProtoReflect() protoreflect.Message {
759
+ mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[6]
760
+ if x != nil {
761
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
762
+ if ms.LoadMessageInfo() == nil {
763
+ ms.StoreMessageInfo(mi)
764
+ }
765
+ return ms
766
+ }
767
+ return mi.MessageOf(x)
768
+ }
769
+
770
+ // Deprecated: Use StatusAttribution_StatusReshare_Metadata.ProtoReflect.Descriptor instead.
771
+ func (*StatusAttribution_StatusReshare_Metadata) Descriptor() ([]byte, []int) {
772
+ return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 2, 0}
773
+ }
774
+
775
+ func (x *StatusAttribution_StatusReshare_Metadata) GetDuration() int32 {
776
+ if x != nil && x.Duration != nil {
777
+ return *x.Duration
778
+ }
779
+ return 0
780
+ }
781
+
782
+ func (x *StatusAttribution_StatusReshare_Metadata) GetChannelJID() string {
783
+ if x != nil && x.ChannelJID != nil {
784
+ return *x.ChannelJID
785
+ }
786
+ return ""
787
+ }
788
+
789
+ func (x *StatusAttribution_StatusReshare_Metadata) GetChannelMessageID() int32 {
790
+ if x != nil && x.ChannelMessageID != nil {
791
+ return *x.ChannelMessageID
792
+ }
793
+ return 0
794
+ }
795
+
796
+ func (x *StatusAttribution_StatusReshare_Metadata) GetHasMultipleReshares() bool {
797
+ if x != nil && x.HasMultipleReshares != nil {
798
+ return *x.HasMultipleReshares
799
+ }
800
+ return false
801
+ }
802
+
803
+ var File_waStatusAttributions_WAStatusAttributions_proto protoreflect.FileDescriptor
804
+
805
+ const file_waStatusAttributions_WAStatusAttributions_proto_rawDesc = "" +
806
+ "\n" +
807
+ "/waStatusAttributions/WAStatusAttributions.proto\x12\x14WAStatusAttributions\"\x8e\x0f\n" +
808
+ "\x11StatusAttribution\x12]\n" +
809
+ "\rstatusReshare\x18\x03 \x01(\v25.WAStatusAttributions.StatusAttribution.StatusReshareH\x00R\rstatusReshare\x12]\n" +
810
+ "\rexternalShare\x18\x04 \x01(\v25.WAStatusAttributions.StatusAttribution.ExternalShareH\x00R\rexternalShare\x12E\n" +
811
+ "\x05music\x18\x05 \x01(\v2-.WAStatusAttributions.StatusAttribution.MusicH\x00R\x05music\x12W\n" +
812
+ "\vgroupStatus\x18\x06 \x01(\v23.WAStatusAttributions.StatusAttribution.GroupStatusH\x00R\vgroupStatus\x12]\n" +
813
+ "\rrlAttribution\x18\a \x01(\v25.WAStatusAttributions.StatusAttribution.RLAttributionH\x00R\rrlAttribution\x12@\n" +
814
+ "\x04type\x18\x01 \x01(\x0e2,.WAStatusAttributions.StatusAttribution.TypeR\x04type\x12\x1c\n" +
815
+ "\tactionURL\x18\x02 \x01(\tR\tactionURL\x1a\xc6\x01\n" +
816
+ "\rRLAttribution\x12T\n" +
817
+ "\x06source\x18\x01 \x01(\x0e2<.WAStatusAttributions.StatusAttribution.RLAttribution.SourceR\x06source\"_\n" +
818
+ "\x06Source\x12\v\n" +
819
+ "\aUNKNOWN\x10\x00\x12\x18\n" +
820
+ "\x14RAY_BAN_META_GLASSES\x10\x01\x12\x17\n" +
821
+ "\x13OAKLEY_META_GLASSES\x10\x02\x12\x15\n" +
822
+ "\x11HYPERNOVA_GLASSES\x10\x03\x1a\xc6\x02\n" +
823
+ "\rExternalShare\x12\x1c\n" +
824
+ "\tactionURL\x18\x01 \x01(\tR\tactionURL\x12T\n" +
825
+ "\x06source\x18\x02 \x01(\x0e2<.WAStatusAttributions.StatusAttribution.ExternalShare.SourceR\x06source\x12\x1a\n" +
826
+ "\bduration\x18\x03 \x01(\x05R\bduration\x12,\n" +
827
+ "\x11actionFallbackURL\x18\x04 \x01(\tR\x11actionFallbackURL\"w\n" +
828
+ "\x06Source\x12\v\n" +
829
+ "\aUNKNOWN\x10\x00\x12\r\n" +
830
+ "\tINSTAGRAM\x10\x01\x12\f\n" +
831
+ "\bFACEBOOK\x10\x02\x12\r\n" +
832
+ "\tMESSENGER\x10\x03\x12\v\n" +
833
+ "\aSPOTIFY\x10\x04\x12\v\n" +
834
+ "\aYOUTUBE\x10\x05\x12\r\n" +
835
+ "\tPINTEREST\x10\x06\x12\v\n" +
836
+ "\aTHREADS\x10\a\x1a\xbf\x03\n" +
837
+ "\rStatusReshare\x12T\n" +
838
+ "\x06source\x18\x01 \x01(\x0e2<.WAStatusAttributions.StatusAttribution.StatusReshare.SourceR\x06source\x12Z\n" +
839
+ "\bmetadata\x18\x02 \x01(\v2>.WAStatusAttributions.StatusAttribution.StatusReshare.MetadataR\bmetadata\x1a\xa4\x01\n" +
840
+ "\bMetadata\x12\x1a\n" +
841
+ "\bduration\x18\x01 \x01(\x05R\bduration\x12\x1e\n" +
842
+ "\n" +
843
+ "channelJID\x18\x02 \x01(\tR\n" +
844
+ "channelJID\x12*\n" +
845
+ "\x10channelMessageID\x18\x03 \x01(\x05R\x10channelMessageID\x120\n" +
846
+ "\x13hasMultipleReshares\x18\x04 \x01(\bR\x13hasMultipleReshares\"U\n" +
847
+ "\x06Source\x12\v\n" +
848
+ "\aUNKNOWN\x10\x00\x12\x14\n" +
849
+ "\x10INTERNAL_RESHARE\x10\x01\x12\x13\n" +
850
+ "\x0fMENTION_RESHARE\x10\x02\x12\x13\n" +
851
+ "\x0fCHANNEL_RESHARE\x10\x03\x1a+\n" +
852
+ "\vGroupStatus\x12\x1c\n" +
853
+ "\tauthorJID\x18\x01 \x01(\tR\tauthorJID\x1a\xbb\x01\n" +
854
+ "\x05Music\x12\x1e\n" +
855
+ "\n" +
856
+ "authorName\x18\x01 \x01(\tR\n" +
857
+ "authorName\x12\x16\n" +
858
+ "\x06songID\x18\x02 \x01(\tR\x06songID\x12\x14\n" +
859
+ "\x05title\x18\x03 \x01(\tR\x05title\x12\x16\n" +
860
+ "\x06author\x18\x04 \x01(\tR\x06author\x12,\n" +
861
+ "\x11artistAttribution\x18\x05 \x01(\tR\x11artistAttribution\x12\x1e\n" +
862
+ "\n" +
863
+ "isExplicit\x18\x06 \x01(\bR\n" +
864
+ "isExplicit\"\x89\x01\n" +
865
+ "\x04Type\x12\v\n" +
866
+ "\aUNKNOWN\x10\x00\x12\v\n" +
867
+ "\aRESHARE\x10\x01\x12\x12\n" +
868
+ "\x0eEXTERNAL_SHARE\x10\x02\x12\t\n" +
869
+ "\x05MUSIC\x10\x03\x12\x12\n" +
870
+ "\x0eSTATUS_MENTION\x10\x04\x12\x10\n" +
871
+ "\fGROUP_STATUS\x10\x05\x12\x12\n" +
872
+ "\x0eRL_ATTRIBUTION\x10\x06\x12\x0e\n" +
873
+ "\n" +
874
+ "AI_CREATED\x10\aB\x11\n" +
875
+ "\x0fattributionDataB0Z.go.mau.fi/whatsmeow/proto/waStatusAttributions"
876
+
877
+ var (
878
+ file_waStatusAttributions_WAStatusAttributions_proto_rawDescOnce sync.Once
879
+ file_waStatusAttributions_WAStatusAttributions_proto_rawDescData []byte
880
+ )
881
+
882
+ func file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP() []byte {
883
+ file_waStatusAttributions_WAStatusAttributions_proto_rawDescOnce.Do(func() {
884
+ file_waStatusAttributions_WAStatusAttributions_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waStatusAttributions_WAStatusAttributions_proto_rawDesc), len(file_waStatusAttributions_WAStatusAttributions_proto_rawDesc)))
885
+ })
886
+ return file_waStatusAttributions_WAStatusAttributions_proto_rawDescData
887
+ }
888
+
889
+ var file_waStatusAttributions_WAStatusAttributions_proto_enumTypes = make([]protoimpl.EnumInfo, 4)
890
+ var file_waStatusAttributions_WAStatusAttributions_proto_msgTypes = make([]protoimpl.MessageInfo, 7)
891
+ var file_waStatusAttributions_WAStatusAttributions_proto_goTypes = []any{
892
+ (StatusAttribution_Type)(0), // 0: WAStatusAttributions.StatusAttribution.Type
893
+ (StatusAttribution_RLAttribution_Source)(0), // 1: WAStatusAttributions.StatusAttribution.RLAttribution.Source
894
+ (StatusAttribution_ExternalShare_Source)(0), // 2: WAStatusAttributions.StatusAttribution.ExternalShare.Source
895
+ (StatusAttribution_StatusReshare_Source)(0), // 3: WAStatusAttributions.StatusAttribution.StatusReshare.Source
896
+ (*StatusAttribution)(nil), // 4: WAStatusAttributions.StatusAttribution
897
+ (*StatusAttribution_RLAttribution)(nil), // 5: WAStatusAttributions.StatusAttribution.RLAttribution
898
+ (*StatusAttribution_ExternalShare)(nil), // 6: WAStatusAttributions.StatusAttribution.ExternalShare
899
+ (*StatusAttribution_StatusReshare)(nil), // 7: WAStatusAttributions.StatusAttribution.StatusReshare
900
+ (*StatusAttribution_GroupStatus)(nil), // 8: WAStatusAttributions.StatusAttribution.GroupStatus
901
+ (*StatusAttribution_Music)(nil), // 9: WAStatusAttributions.StatusAttribution.Music
902
+ (*StatusAttribution_StatusReshare_Metadata)(nil), // 10: WAStatusAttributions.StatusAttribution.StatusReshare.Metadata
903
+ }
904
+ var file_waStatusAttributions_WAStatusAttributions_proto_depIdxs = []int32{
905
+ 7, // 0: WAStatusAttributions.StatusAttribution.statusReshare:type_name -> WAStatusAttributions.StatusAttribution.StatusReshare
906
+ 6, // 1: WAStatusAttributions.StatusAttribution.externalShare:type_name -> WAStatusAttributions.StatusAttribution.ExternalShare
907
+ 9, // 2: WAStatusAttributions.StatusAttribution.music:type_name -> WAStatusAttributions.StatusAttribution.Music
908
+ 8, // 3: WAStatusAttributions.StatusAttribution.groupStatus:type_name -> WAStatusAttributions.StatusAttribution.GroupStatus
909
+ 5, // 4: WAStatusAttributions.StatusAttribution.rlAttribution:type_name -> WAStatusAttributions.StatusAttribution.RLAttribution
910
+ 0, // 5: WAStatusAttributions.StatusAttribution.type:type_name -> WAStatusAttributions.StatusAttribution.Type
911
+ 1, // 6: WAStatusAttributions.StatusAttribution.RLAttribution.source:type_name -> WAStatusAttributions.StatusAttribution.RLAttribution.Source
912
+ 2, // 7: WAStatusAttributions.StatusAttribution.ExternalShare.source:type_name -> WAStatusAttributions.StatusAttribution.ExternalShare.Source
913
+ 3, // 8: WAStatusAttributions.StatusAttribution.StatusReshare.source:type_name -> WAStatusAttributions.StatusAttribution.StatusReshare.Source
914
+ 10, // 9: WAStatusAttributions.StatusAttribution.StatusReshare.metadata:type_name -> WAStatusAttributions.StatusAttribution.StatusReshare.Metadata
915
+ 10, // [10:10] is the sub-list for method output_type
916
+ 10, // [10:10] is the sub-list for method input_type
917
+ 10, // [10:10] is the sub-list for extension type_name
918
+ 10, // [10:10] is the sub-list for extension extendee
919
+ 0, // [0:10] is the sub-list for field type_name
920
+ }
921
+
922
+ func init() { file_waStatusAttributions_WAStatusAttributions_proto_init() }
923
+ func file_waStatusAttributions_WAStatusAttributions_proto_init() {
924
+ if File_waStatusAttributions_WAStatusAttributions_proto != nil {
925
+ return
926
+ }
927
+ file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[0].OneofWrappers = []any{
928
+ (*StatusAttribution_StatusReshare_)(nil),
929
+ (*StatusAttribution_ExternalShare_)(nil),
930
+ (*StatusAttribution_Music_)(nil),
931
+ (*StatusAttribution_GroupStatus_)(nil),
932
+ (*StatusAttribution_RlAttribution)(nil),
933
+ }
934
+ type x struct{}
935
+ out := protoimpl.TypeBuilder{
936
+ File: protoimpl.DescBuilder{
937
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
938
+ RawDescriptor: unsafe.Slice(unsafe.StringData(file_waStatusAttributions_WAStatusAttributions_proto_rawDesc), len(file_waStatusAttributions_WAStatusAttributions_proto_rawDesc)),
939
+ NumEnums: 4,
940
+ NumMessages: 7,
941
+ NumExtensions: 0,
942
+ NumServices: 0,
943
+ },
944
+ GoTypes: file_waStatusAttributions_WAStatusAttributions_proto_goTypes,
945
+ DependencyIndexes: file_waStatusAttributions_WAStatusAttributions_proto_depIdxs,
946
+ EnumInfos: file_waStatusAttributions_WAStatusAttributions_proto_enumTypes,
947
+ MessageInfos: file_waStatusAttributions_WAStatusAttributions_proto_msgTypes,
948
+ }.Build()
949
+ File_waStatusAttributions_WAStatusAttributions_proto = out.File
950
+ file_waStatusAttributions_WAStatusAttributions_proto_goTypes = nil
951
+ file_waStatusAttributions_WAStatusAttributions_proto_depIdxs = nil
952
+ }