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,1299 @@
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: instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto
6
+
7
+ package instamadilloCoreTypeMedia
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 PjpegScanConfiguration int32
26
+
27
+ const (
28
+ PjpegScanConfiguration_PJPEG_SCAN_CONFIGURATION_UNSPECIFIED PjpegScanConfiguration = 0
29
+ PjpegScanConfiguration_PJPEG_SCAN_CONFIGURATION_WA PjpegScanConfiguration = 1
30
+ PjpegScanConfiguration_PJPEG_SCAN_CONFIGURATION_E15 PjpegScanConfiguration = 2
31
+ PjpegScanConfiguration_PJPEG_SCAN_CONFIGURATION_E35 PjpegScanConfiguration = 3
32
+ )
33
+
34
+ // Enum value maps for PjpegScanConfiguration.
35
+ var (
36
+ PjpegScanConfiguration_name = map[int32]string{
37
+ 0: "PJPEG_SCAN_CONFIGURATION_UNSPECIFIED",
38
+ 1: "PJPEG_SCAN_CONFIGURATION_WA",
39
+ 2: "PJPEG_SCAN_CONFIGURATION_E15",
40
+ 3: "PJPEG_SCAN_CONFIGURATION_E35",
41
+ }
42
+ PjpegScanConfiguration_value = map[string]int32{
43
+ "PJPEG_SCAN_CONFIGURATION_UNSPECIFIED": 0,
44
+ "PJPEG_SCAN_CONFIGURATION_WA": 1,
45
+ "PJPEG_SCAN_CONFIGURATION_E15": 2,
46
+ "PJPEG_SCAN_CONFIGURATION_E35": 3,
47
+ }
48
+ )
49
+
50
+ func (x PjpegScanConfiguration) Enum() *PjpegScanConfiguration {
51
+ p := new(PjpegScanConfiguration)
52
+ *p = x
53
+ return p
54
+ }
55
+
56
+ func (x PjpegScanConfiguration) String() string {
57
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
58
+ }
59
+
60
+ func (PjpegScanConfiguration) Descriptor() protoreflect.EnumDescriptor {
61
+ return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_enumTypes[0].Descriptor()
62
+ }
63
+
64
+ func (PjpegScanConfiguration) Type() protoreflect.EnumType {
65
+ return &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_enumTypes[0]
66
+ }
67
+
68
+ func (x PjpegScanConfiguration) Number() protoreflect.EnumNumber {
69
+ return protoreflect.EnumNumber(x)
70
+ }
71
+
72
+ // Deprecated: Do not use.
73
+ func (x *PjpegScanConfiguration) UnmarshalJSON(b []byte) error {
74
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
75
+ if err != nil {
76
+ return err
77
+ }
78
+ *x = PjpegScanConfiguration(num)
79
+ return nil
80
+ }
81
+
82
+ // Deprecated: Use PjpegScanConfiguration.Descriptor instead.
83
+ func (PjpegScanConfiguration) EnumDescriptor() ([]byte, []int) {
84
+ return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{0}
85
+ }
86
+
87
+ type Media_InterventionType int32
88
+
89
+ const (
90
+ Media_UNSET Media_InterventionType = 0
91
+ Media_NONE Media_InterventionType = 1
92
+ Media_NUDE Media_InterventionType = 2
93
+ )
94
+
95
+ // Enum value maps for Media_InterventionType.
96
+ var (
97
+ Media_InterventionType_name = map[int32]string{
98
+ 0: "UNSET",
99
+ 1: "NONE",
100
+ 2: "NUDE",
101
+ }
102
+ Media_InterventionType_value = map[string]int32{
103
+ "UNSET": 0,
104
+ "NONE": 1,
105
+ "NUDE": 2,
106
+ }
107
+ )
108
+
109
+ func (x Media_InterventionType) Enum() *Media_InterventionType {
110
+ p := new(Media_InterventionType)
111
+ *p = x
112
+ return p
113
+ }
114
+
115
+ func (x Media_InterventionType) String() string {
116
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
117
+ }
118
+
119
+ func (Media_InterventionType) Descriptor() protoreflect.EnumDescriptor {
120
+ return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_enumTypes[1].Descriptor()
121
+ }
122
+
123
+ func (Media_InterventionType) Type() protoreflect.EnumType {
124
+ return &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_enumTypes[1]
125
+ }
126
+
127
+ func (x Media_InterventionType) Number() protoreflect.EnumNumber {
128
+ return protoreflect.EnumNumber(x)
129
+ }
130
+
131
+ // Deprecated: Do not use.
132
+ func (x *Media_InterventionType) UnmarshalJSON(b []byte) error {
133
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
134
+ if err != nil {
135
+ return err
136
+ }
137
+ *x = Media_InterventionType(num)
138
+ return nil
139
+ }
140
+
141
+ // Deprecated: Use Media_InterventionType.Descriptor instead.
142
+ func (Media_InterventionType) EnumDescriptor() ([]byte, []int) {
143
+ return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{0, 0}
144
+ }
145
+
146
+ type Raven_ViewMode int32
147
+
148
+ const (
149
+ Raven_RAVEN_VIEW_MODEL_UNSPECIFIED Raven_ViewMode = 0
150
+ Raven_RAVEN_VIEW_MODEL_ONCE Raven_ViewMode = 1
151
+ Raven_RAVEN_VIEW_MODEL_REPLAYABLE Raven_ViewMode = 2
152
+ Raven_RAVEN_VIEW_MODEL_PERMANENT Raven_ViewMode = 3
153
+ )
154
+
155
+ // Enum value maps for Raven_ViewMode.
156
+ var (
157
+ Raven_ViewMode_name = map[int32]string{
158
+ 0: "RAVEN_VIEW_MODEL_UNSPECIFIED",
159
+ 1: "RAVEN_VIEW_MODEL_ONCE",
160
+ 2: "RAVEN_VIEW_MODEL_REPLAYABLE",
161
+ 3: "RAVEN_VIEW_MODEL_PERMANENT",
162
+ }
163
+ Raven_ViewMode_value = map[string]int32{
164
+ "RAVEN_VIEW_MODEL_UNSPECIFIED": 0,
165
+ "RAVEN_VIEW_MODEL_ONCE": 1,
166
+ "RAVEN_VIEW_MODEL_REPLAYABLE": 2,
167
+ "RAVEN_VIEW_MODEL_PERMANENT": 3,
168
+ }
169
+ )
170
+
171
+ func (x Raven_ViewMode) Enum() *Raven_ViewMode {
172
+ p := new(Raven_ViewMode)
173
+ *p = x
174
+ return p
175
+ }
176
+
177
+ func (x Raven_ViewMode) String() string {
178
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
179
+ }
180
+
181
+ func (Raven_ViewMode) Descriptor() protoreflect.EnumDescriptor {
182
+ return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_enumTypes[2].Descriptor()
183
+ }
184
+
185
+ func (Raven_ViewMode) Type() protoreflect.EnumType {
186
+ return &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_enumTypes[2]
187
+ }
188
+
189
+ func (x Raven_ViewMode) Number() protoreflect.EnumNumber {
190
+ return protoreflect.EnumNumber(x)
191
+ }
192
+
193
+ // Deprecated: Do not use.
194
+ func (x *Raven_ViewMode) UnmarshalJSON(b []byte) error {
195
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
196
+ if err != nil {
197
+ return err
198
+ }
199
+ *x = Raven_ViewMode(num)
200
+ return nil
201
+ }
202
+
203
+ // Deprecated: Use Raven_ViewMode.Descriptor instead.
204
+ func (Raven_ViewMode) EnumDescriptor() ([]byte, []int) {
205
+ return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{6, 0}
206
+ }
207
+
208
+ type Media struct {
209
+ state protoimpl.MessageState `protogen:"open.v1"`
210
+ // Types that are valid to be assigned to Media:
211
+ //
212
+ // *Media_StaticPhoto
213
+ // *Media_Voice
214
+ // *Media_Video
215
+ // *Media_Raven
216
+ // *Media_Gif
217
+ // *Media_AvatarSticker
218
+ Media isMedia_Media `protobuf_oneof:"media"`
219
+ unknownFields protoimpl.UnknownFields
220
+ sizeCache protoimpl.SizeCache
221
+ }
222
+
223
+ func (x *Media) Reset() {
224
+ *x = Media{}
225
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[0]
226
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
227
+ ms.StoreMessageInfo(mi)
228
+ }
229
+
230
+ func (x *Media) String() string {
231
+ return protoimpl.X.MessageStringOf(x)
232
+ }
233
+
234
+ func (*Media) ProtoMessage() {}
235
+
236
+ func (x *Media) ProtoReflect() protoreflect.Message {
237
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[0]
238
+ if x != nil {
239
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
240
+ if ms.LoadMessageInfo() == nil {
241
+ ms.StoreMessageInfo(mi)
242
+ }
243
+ return ms
244
+ }
245
+ return mi.MessageOf(x)
246
+ }
247
+
248
+ // Deprecated: Use Media.ProtoReflect.Descriptor instead.
249
+ func (*Media) Descriptor() ([]byte, []int) {
250
+ return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{0}
251
+ }
252
+
253
+ func (x *Media) GetMedia() isMedia_Media {
254
+ if x != nil {
255
+ return x.Media
256
+ }
257
+ return nil
258
+ }
259
+
260
+ func (x *Media) GetStaticPhoto() *StaticPhoto {
261
+ if x != nil {
262
+ if x, ok := x.Media.(*Media_StaticPhoto); ok {
263
+ return x.StaticPhoto
264
+ }
265
+ }
266
+ return nil
267
+ }
268
+
269
+ func (x *Media) GetVoice() *Voice {
270
+ if x != nil {
271
+ if x, ok := x.Media.(*Media_Voice); ok {
272
+ return x.Voice
273
+ }
274
+ }
275
+ return nil
276
+ }
277
+
278
+ func (x *Media) GetVideo() *Video {
279
+ if x != nil {
280
+ if x, ok := x.Media.(*Media_Video); ok {
281
+ return x.Video
282
+ }
283
+ }
284
+ return nil
285
+ }
286
+
287
+ func (x *Media) GetRaven() *Raven {
288
+ if x != nil {
289
+ if x, ok := x.Media.(*Media_Raven); ok {
290
+ return x.Raven
291
+ }
292
+ }
293
+ return nil
294
+ }
295
+
296
+ func (x *Media) GetGif() *Gif {
297
+ if x != nil {
298
+ if x, ok := x.Media.(*Media_Gif); ok {
299
+ return x.Gif
300
+ }
301
+ }
302
+ return nil
303
+ }
304
+
305
+ func (x *Media) GetAvatarSticker() *AvatarSticker {
306
+ if x != nil {
307
+ if x, ok := x.Media.(*Media_AvatarSticker); ok {
308
+ return x.AvatarSticker
309
+ }
310
+ }
311
+ return nil
312
+ }
313
+
314
+ type isMedia_Media interface {
315
+ isMedia_Media()
316
+ }
317
+
318
+ type Media_StaticPhoto struct {
319
+ StaticPhoto *StaticPhoto `protobuf:"bytes,1,opt,name=staticPhoto,oneof"`
320
+ }
321
+
322
+ type Media_Voice struct {
323
+ Voice *Voice `protobuf:"bytes,2,opt,name=voice,oneof"`
324
+ }
325
+
326
+ type Media_Video struct {
327
+ Video *Video `protobuf:"bytes,3,opt,name=video,oneof"`
328
+ }
329
+
330
+ type Media_Raven struct {
331
+ Raven *Raven `protobuf:"bytes,4,opt,name=raven,oneof"`
332
+ }
333
+
334
+ type Media_Gif struct {
335
+ Gif *Gif `protobuf:"bytes,5,opt,name=gif,oneof"`
336
+ }
337
+
338
+ type Media_AvatarSticker struct {
339
+ AvatarSticker *AvatarSticker `protobuf:"bytes,6,opt,name=avatarSticker,oneof"`
340
+ }
341
+
342
+ func (*Media_StaticPhoto) isMedia_Media() {}
343
+
344
+ func (*Media_Voice) isMedia_Media() {}
345
+
346
+ func (*Media_Video) isMedia_Media() {}
347
+
348
+ func (*Media_Raven) isMedia_Media() {}
349
+
350
+ func (*Media_Gif) isMedia_Media() {}
351
+
352
+ func (*Media_AvatarSticker) isMedia_Media() {}
353
+
354
+ type StaticPhoto struct {
355
+ state protoimpl.MessageState `protogen:"open.v1"`
356
+ MediaTransport *CommonMediaTransport `protobuf:"bytes,1,opt,name=mediaTransport" json:"mediaTransport,omitempty"`
357
+ Height *int32 `protobuf:"varint,2,opt,name=height" json:"height,omitempty"`
358
+ Width *int32 `protobuf:"varint,3,opt,name=width" json:"width,omitempty"`
359
+ ScanLengths []int32 `protobuf:"varint,4,rep,packed,name=scanLengths" json:"scanLengths,omitempty"`
360
+ Thumbnail *Thumbnail `protobuf:"bytes,5,opt,name=thumbnail" json:"thumbnail,omitempty"`
361
+ PjpegScanConfiguration *PjpegScanConfiguration `protobuf:"varint,6,opt,name=pjpegScanConfiguration,enum=InstamadilloCoreTypeMedia.PjpegScanConfiguration" json:"pjpegScanConfiguration,omitempty"`
362
+ unknownFields protoimpl.UnknownFields
363
+ sizeCache protoimpl.SizeCache
364
+ }
365
+
366
+ func (x *StaticPhoto) Reset() {
367
+ *x = StaticPhoto{}
368
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[1]
369
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
370
+ ms.StoreMessageInfo(mi)
371
+ }
372
+
373
+ func (x *StaticPhoto) String() string {
374
+ return protoimpl.X.MessageStringOf(x)
375
+ }
376
+
377
+ func (*StaticPhoto) ProtoMessage() {}
378
+
379
+ func (x *StaticPhoto) ProtoReflect() protoreflect.Message {
380
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[1]
381
+ if x != nil {
382
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
383
+ if ms.LoadMessageInfo() == nil {
384
+ ms.StoreMessageInfo(mi)
385
+ }
386
+ return ms
387
+ }
388
+ return mi.MessageOf(x)
389
+ }
390
+
391
+ // Deprecated: Use StaticPhoto.ProtoReflect.Descriptor instead.
392
+ func (*StaticPhoto) Descriptor() ([]byte, []int) {
393
+ return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{1}
394
+ }
395
+
396
+ func (x *StaticPhoto) GetMediaTransport() *CommonMediaTransport {
397
+ if x != nil {
398
+ return x.MediaTransport
399
+ }
400
+ return nil
401
+ }
402
+
403
+ func (x *StaticPhoto) GetHeight() int32 {
404
+ if x != nil && x.Height != nil {
405
+ return *x.Height
406
+ }
407
+ return 0
408
+ }
409
+
410
+ func (x *StaticPhoto) GetWidth() int32 {
411
+ if x != nil && x.Width != nil {
412
+ return *x.Width
413
+ }
414
+ return 0
415
+ }
416
+
417
+ func (x *StaticPhoto) GetScanLengths() []int32 {
418
+ if x != nil {
419
+ return x.ScanLengths
420
+ }
421
+ return nil
422
+ }
423
+
424
+ func (x *StaticPhoto) GetThumbnail() *Thumbnail {
425
+ if x != nil {
426
+ return x.Thumbnail
427
+ }
428
+ return nil
429
+ }
430
+
431
+ func (x *StaticPhoto) GetPjpegScanConfiguration() PjpegScanConfiguration {
432
+ if x != nil && x.PjpegScanConfiguration != nil {
433
+ return *x.PjpegScanConfiguration
434
+ }
435
+ return PjpegScanConfiguration_PJPEG_SCAN_CONFIGURATION_UNSPECIFIED
436
+ }
437
+
438
+ type Voice struct {
439
+ state protoimpl.MessageState `protogen:"open.v1"`
440
+ MediaTransport *CommonMediaTransport `protobuf:"bytes,1,opt,name=mediaTransport" json:"mediaTransport,omitempty"`
441
+ Duration *int32 `protobuf:"varint,2,opt,name=duration" json:"duration,omitempty"`
442
+ Waveforms []float32 `protobuf:"fixed32,3,rep,packed,name=waveforms" json:"waveforms,omitempty"`
443
+ WaveformSamplingFrequencyHz *int32 `protobuf:"varint,4,opt,name=waveformSamplingFrequencyHz" json:"waveformSamplingFrequencyHz,omitempty"`
444
+ unknownFields protoimpl.UnknownFields
445
+ sizeCache protoimpl.SizeCache
446
+ }
447
+
448
+ func (x *Voice) Reset() {
449
+ *x = Voice{}
450
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[2]
451
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
452
+ ms.StoreMessageInfo(mi)
453
+ }
454
+
455
+ func (x *Voice) String() string {
456
+ return protoimpl.X.MessageStringOf(x)
457
+ }
458
+
459
+ func (*Voice) ProtoMessage() {}
460
+
461
+ func (x *Voice) ProtoReflect() protoreflect.Message {
462
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[2]
463
+ if x != nil {
464
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
465
+ if ms.LoadMessageInfo() == nil {
466
+ ms.StoreMessageInfo(mi)
467
+ }
468
+ return ms
469
+ }
470
+ return mi.MessageOf(x)
471
+ }
472
+
473
+ // Deprecated: Use Voice.ProtoReflect.Descriptor instead.
474
+ func (*Voice) Descriptor() ([]byte, []int) {
475
+ return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{2}
476
+ }
477
+
478
+ func (x *Voice) GetMediaTransport() *CommonMediaTransport {
479
+ if x != nil {
480
+ return x.MediaTransport
481
+ }
482
+ return nil
483
+ }
484
+
485
+ func (x *Voice) GetDuration() int32 {
486
+ if x != nil && x.Duration != nil {
487
+ return *x.Duration
488
+ }
489
+ return 0
490
+ }
491
+
492
+ func (x *Voice) GetWaveforms() []float32 {
493
+ if x != nil {
494
+ return x.Waveforms
495
+ }
496
+ return nil
497
+ }
498
+
499
+ func (x *Voice) GetWaveformSamplingFrequencyHz() int32 {
500
+ if x != nil && x.WaveformSamplingFrequencyHz != nil {
501
+ return *x.WaveformSamplingFrequencyHz
502
+ }
503
+ return 0
504
+ }
505
+
506
+ type Video struct {
507
+ state protoimpl.MessageState `protogen:"open.v1"`
508
+ MediaTransport *CommonMediaTransport `protobuf:"bytes,1,opt,name=mediaTransport" json:"mediaTransport,omitempty"`
509
+ Height *int32 `protobuf:"varint,2,opt,name=height" json:"height,omitempty"`
510
+ Width *int32 `protobuf:"varint,3,opt,name=width" json:"width,omitempty"`
511
+ Thumbnail *Thumbnail `protobuf:"bytes,4,opt,name=thumbnail" json:"thumbnail,omitempty"`
512
+ VideoExtraMetadata *VideoExtraMetadata `protobuf:"bytes,5,opt,name=videoExtraMetadata" json:"videoExtraMetadata,omitempty"`
513
+ unknownFields protoimpl.UnknownFields
514
+ sizeCache protoimpl.SizeCache
515
+ }
516
+
517
+ func (x *Video) Reset() {
518
+ *x = Video{}
519
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[3]
520
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
521
+ ms.StoreMessageInfo(mi)
522
+ }
523
+
524
+ func (x *Video) String() string {
525
+ return protoimpl.X.MessageStringOf(x)
526
+ }
527
+
528
+ func (*Video) ProtoMessage() {}
529
+
530
+ func (x *Video) ProtoReflect() protoreflect.Message {
531
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[3]
532
+ if x != nil {
533
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
534
+ if ms.LoadMessageInfo() == nil {
535
+ ms.StoreMessageInfo(mi)
536
+ }
537
+ return ms
538
+ }
539
+ return mi.MessageOf(x)
540
+ }
541
+
542
+ // Deprecated: Use Video.ProtoReflect.Descriptor instead.
543
+ func (*Video) Descriptor() ([]byte, []int) {
544
+ return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{3}
545
+ }
546
+
547
+ func (x *Video) GetMediaTransport() *CommonMediaTransport {
548
+ if x != nil {
549
+ return x.MediaTransport
550
+ }
551
+ return nil
552
+ }
553
+
554
+ func (x *Video) GetHeight() int32 {
555
+ if x != nil && x.Height != nil {
556
+ return *x.Height
557
+ }
558
+ return 0
559
+ }
560
+
561
+ func (x *Video) GetWidth() int32 {
562
+ if x != nil && x.Width != nil {
563
+ return *x.Width
564
+ }
565
+ return 0
566
+ }
567
+
568
+ func (x *Video) GetThumbnail() *Thumbnail {
569
+ if x != nil {
570
+ return x.Thumbnail
571
+ }
572
+ return nil
573
+ }
574
+
575
+ func (x *Video) GetVideoExtraMetadata() *VideoExtraMetadata {
576
+ if x != nil {
577
+ return x.VideoExtraMetadata
578
+ }
579
+ return nil
580
+ }
581
+
582
+ type Gif struct {
583
+ state protoimpl.MessageState `protogen:"open.v1"`
584
+ MediaTransport *CommonMediaTransport `protobuf:"bytes,1,opt,name=mediaTransport" json:"mediaTransport,omitempty"`
585
+ Height *int32 `protobuf:"varint,2,opt,name=height" json:"height,omitempty"`
586
+ Width *int32 `protobuf:"varint,3,opt,name=width" json:"width,omitempty"`
587
+ IsSticker *bool `protobuf:"varint,4,opt,name=isSticker" json:"isSticker,omitempty"`
588
+ StickerID *string `protobuf:"bytes,5,opt,name=stickerID" json:"stickerID,omitempty"`
589
+ GifURL *string `protobuf:"bytes,6,opt,name=gifURL" json:"gifURL,omitempty"`
590
+ GifSize *int32 `protobuf:"varint,7,opt,name=gifSize" json:"gifSize,omitempty"`
591
+ IsRandom *bool `protobuf:"varint,8,opt,name=isRandom" json:"isRandom,omitempty"`
592
+ unknownFields protoimpl.UnknownFields
593
+ sizeCache protoimpl.SizeCache
594
+ }
595
+
596
+ func (x *Gif) Reset() {
597
+ *x = Gif{}
598
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[4]
599
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
600
+ ms.StoreMessageInfo(mi)
601
+ }
602
+
603
+ func (x *Gif) String() string {
604
+ return protoimpl.X.MessageStringOf(x)
605
+ }
606
+
607
+ func (*Gif) ProtoMessage() {}
608
+
609
+ func (x *Gif) ProtoReflect() protoreflect.Message {
610
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[4]
611
+ if x != nil {
612
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
613
+ if ms.LoadMessageInfo() == nil {
614
+ ms.StoreMessageInfo(mi)
615
+ }
616
+ return ms
617
+ }
618
+ return mi.MessageOf(x)
619
+ }
620
+
621
+ // Deprecated: Use Gif.ProtoReflect.Descriptor instead.
622
+ func (*Gif) Descriptor() ([]byte, []int) {
623
+ return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{4}
624
+ }
625
+
626
+ func (x *Gif) GetMediaTransport() *CommonMediaTransport {
627
+ if x != nil {
628
+ return x.MediaTransport
629
+ }
630
+ return nil
631
+ }
632
+
633
+ func (x *Gif) GetHeight() int32 {
634
+ if x != nil && x.Height != nil {
635
+ return *x.Height
636
+ }
637
+ return 0
638
+ }
639
+
640
+ func (x *Gif) GetWidth() int32 {
641
+ if x != nil && x.Width != nil {
642
+ return *x.Width
643
+ }
644
+ return 0
645
+ }
646
+
647
+ func (x *Gif) GetIsSticker() bool {
648
+ if x != nil && x.IsSticker != nil {
649
+ return *x.IsSticker
650
+ }
651
+ return false
652
+ }
653
+
654
+ func (x *Gif) GetStickerID() string {
655
+ if x != nil && x.StickerID != nil {
656
+ return *x.StickerID
657
+ }
658
+ return ""
659
+ }
660
+
661
+ func (x *Gif) GetGifURL() string {
662
+ if x != nil && x.GifURL != nil {
663
+ return *x.GifURL
664
+ }
665
+ return ""
666
+ }
667
+
668
+ func (x *Gif) GetGifSize() int32 {
669
+ if x != nil && x.GifSize != nil {
670
+ return *x.GifSize
671
+ }
672
+ return 0
673
+ }
674
+
675
+ func (x *Gif) GetIsRandom() bool {
676
+ if x != nil && x.IsRandom != nil {
677
+ return *x.IsRandom
678
+ }
679
+ return false
680
+ }
681
+
682
+ type AvatarSticker struct {
683
+ state protoimpl.MessageState `protogen:"open.v1"`
684
+ MediaTransport *CommonMediaTransport `protobuf:"bytes,1,opt,name=mediaTransport" json:"mediaTransport,omitempty"`
685
+ IsAnimated *bool `protobuf:"varint,2,opt,name=isAnimated" json:"isAnimated,omitempty"`
686
+ StickerID *string `protobuf:"bytes,3,opt,name=stickerID" json:"stickerID,omitempty"`
687
+ StickerTemplate *string `protobuf:"bytes,4,opt,name=stickerTemplate" json:"stickerTemplate,omitempty"`
688
+ NuxType *int32 `protobuf:"varint,5,opt,name=nuxType" json:"nuxType,omitempty"`
689
+ unknownFields protoimpl.UnknownFields
690
+ sizeCache protoimpl.SizeCache
691
+ }
692
+
693
+ func (x *AvatarSticker) Reset() {
694
+ *x = AvatarSticker{}
695
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[5]
696
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
697
+ ms.StoreMessageInfo(mi)
698
+ }
699
+
700
+ func (x *AvatarSticker) String() string {
701
+ return protoimpl.X.MessageStringOf(x)
702
+ }
703
+
704
+ func (*AvatarSticker) ProtoMessage() {}
705
+
706
+ func (x *AvatarSticker) ProtoReflect() protoreflect.Message {
707
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[5]
708
+ if x != nil {
709
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
710
+ if ms.LoadMessageInfo() == nil {
711
+ ms.StoreMessageInfo(mi)
712
+ }
713
+ return ms
714
+ }
715
+ return mi.MessageOf(x)
716
+ }
717
+
718
+ // Deprecated: Use AvatarSticker.ProtoReflect.Descriptor instead.
719
+ func (*AvatarSticker) Descriptor() ([]byte, []int) {
720
+ return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{5}
721
+ }
722
+
723
+ func (x *AvatarSticker) GetMediaTransport() *CommonMediaTransport {
724
+ if x != nil {
725
+ return x.MediaTransport
726
+ }
727
+ return nil
728
+ }
729
+
730
+ func (x *AvatarSticker) GetIsAnimated() bool {
731
+ if x != nil && x.IsAnimated != nil {
732
+ return *x.IsAnimated
733
+ }
734
+ return false
735
+ }
736
+
737
+ func (x *AvatarSticker) GetStickerID() string {
738
+ if x != nil && x.StickerID != nil {
739
+ return *x.StickerID
740
+ }
741
+ return ""
742
+ }
743
+
744
+ func (x *AvatarSticker) GetStickerTemplate() string {
745
+ if x != nil && x.StickerTemplate != nil {
746
+ return *x.StickerTemplate
747
+ }
748
+ return ""
749
+ }
750
+
751
+ func (x *AvatarSticker) GetNuxType() int32 {
752
+ if x != nil && x.NuxType != nil {
753
+ return *x.NuxType
754
+ }
755
+ return 0
756
+ }
757
+
758
+ type Raven struct {
759
+ state protoimpl.MessageState `protogen:"open.v1"`
760
+ ViewMode *Raven_ViewMode `protobuf:"varint,1,opt,name=viewMode,enum=InstamadilloCoreTypeMedia.Raven_ViewMode" json:"viewMode,omitempty"`
761
+ Content *RavenContent `protobuf:"bytes,2,opt,name=content" json:"content,omitempty"`
762
+ unknownFields protoimpl.UnknownFields
763
+ sizeCache protoimpl.SizeCache
764
+ }
765
+
766
+ func (x *Raven) Reset() {
767
+ *x = Raven{}
768
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[6]
769
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
770
+ ms.StoreMessageInfo(mi)
771
+ }
772
+
773
+ func (x *Raven) String() string {
774
+ return protoimpl.X.MessageStringOf(x)
775
+ }
776
+
777
+ func (*Raven) ProtoMessage() {}
778
+
779
+ func (x *Raven) ProtoReflect() protoreflect.Message {
780
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[6]
781
+ if x != nil {
782
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
783
+ if ms.LoadMessageInfo() == nil {
784
+ ms.StoreMessageInfo(mi)
785
+ }
786
+ return ms
787
+ }
788
+ return mi.MessageOf(x)
789
+ }
790
+
791
+ // Deprecated: Use Raven.ProtoReflect.Descriptor instead.
792
+ func (*Raven) Descriptor() ([]byte, []int) {
793
+ return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{6}
794
+ }
795
+
796
+ func (x *Raven) GetViewMode() Raven_ViewMode {
797
+ if x != nil && x.ViewMode != nil {
798
+ return *x.ViewMode
799
+ }
800
+ return Raven_RAVEN_VIEW_MODEL_UNSPECIFIED
801
+ }
802
+
803
+ func (x *Raven) GetContent() *RavenContent {
804
+ if x != nil {
805
+ return x.Content
806
+ }
807
+ return nil
808
+ }
809
+
810
+ type RavenContent struct {
811
+ state protoimpl.MessageState `protogen:"open.v1"`
812
+ // Types that are valid to be assigned to RavenContent:
813
+ //
814
+ // *RavenContent_StaticPhoto
815
+ // *RavenContent_Video
816
+ RavenContent isRavenContent_RavenContent `protobuf_oneof:"ravenContent"`
817
+ unknownFields protoimpl.UnknownFields
818
+ sizeCache protoimpl.SizeCache
819
+ }
820
+
821
+ func (x *RavenContent) Reset() {
822
+ *x = RavenContent{}
823
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[7]
824
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
825
+ ms.StoreMessageInfo(mi)
826
+ }
827
+
828
+ func (x *RavenContent) String() string {
829
+ return protoimpl.X.MessageStringOf(x)
830
+ }
831
+
832
+ func (*RavenContent) ProtoMessage() {}
833
+
834
+ func (x *RavenContent) ProtoReflect() protoreflect.Message {
835
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[7]
836
+ if x != nil {
837
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
838
+ if ms.LoadMessageInfo() == nil {
839
+ ms.StoreMessageInfo(mi)
840
+ }
841
+ return ms
842
+ }
843
+ return mi.MessageOf(x)
844
+ }
845
+
846
+ // Deprecated: Use RavenContent.ProtoReflect.Descriptor instead.
847
+ func (*RavenContent) Descriptor() ([]byte, []int) {
848
+ return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{7}
849
+ }
850
+
851
+ func (x *RavenContent) GetRavenContent() isRavenContent_RavenContent {
852
+ if x != nil {
853
+ return x.RavenContent
854
+ }
855
+ return nil
856
+ }
857
+
858
+ func (x *RavenContent) GetStaticPhoto() *StaticPhoto {
859
+ if x != nil {
860
+ if x, ok := x.RavenContent.(*RavenContent_StaticPhoto); ok {
861
+ return x.StaticPhoto
862
+ }
863
+ }
864
+ return nil
865
+ }
866
+
867
+ func (x *RavenContent) GetVideo() *Video {
868
+ if x != nil {
869
+ if x, ok := x.RavenContent.(*RavenContent_Video); ok {
870
+ return x.Video
871
+ }
872
+ }
873
+ return nil
874
+ }
875
+
876
+ type isRavenContent_RavenContent interface {
877
+ isRavenContent_RavenContent()
878
+ }
879
+
880
+ type RavenContent_StaticPhoto struct {
881
+ StaticPhoto *StaticPhoto `protobuf:"bytes,1,opt,name=staticPhoto,oneof"`
882
+ }
883
+
884
+ type RavenContent_Video struct {
885
+ Video *Video `protobuf:"bytes,2,opt,name=video,oneof"`
886
+ }
887
+
888
+ func (*RavenContent_StaticPhoto) isRavenContent_RavenContent() {}
889
+
890
+ func (*RavenContent_Video) isRavenContent_RavenContent() {}
891
+
892
+ type Thumbnail struct {
893
+ state protoimpl.MessageState `protogen:"open.v1"`
894
+ MediaTransport *CommonMediaTransport `protobuf:"bytes,1,opt,name=mediaTransport" json:"mediaTransport,omitempty"`
895
+ Height *int32 `protobuf:"varint,2,opt,name=height" json:"height,omitempty"`
896
+ Width *int32 `protobuf:"varint,3,opt,name=width" json:"width,omitempty"`
897
+ unknownFields protoimpl.UnknownFields
898
+ sizeCache protoimpl.SizeCache
899
+ }
900
+
901
+ func (x *Thumbnail) Reset() {
902
+ *x = Thumbnail{}
903
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[8]
904
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
905
+ ms.StoreMessageInfo(mi)
906
+ }
907
+
908
+ func (x *Thumbnail) String() string {
909
+ return protoimpl.X.MessageStringOf(x)
910
+ }
911
+
912
+ func (*Thumbnail) ProtoMessage() {}
913
+
914
+ func (x *Thumbnail) ProtoReflect() protoreflect.Message {
915
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[8]
916
+ if x != nil {
917
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
918
+ if ms.LoadMessageInfo() == nil {
919
+ ms.StoreMessageInfo(mi)
920
+ }
921
+ return ms
922
+ }
923
+ return mi.MessageOf(x)
924
+ }
925
+
926
+ // Deprecated: Use Thumbnail.ProtoReflect.Descriptor instead.
927
+ func (*Thumbnail) Descriptor() ([]byte, []int) {
928
+ return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{8}
929
+ }
930
+
931
+ func (x *Thumbnail) GetMediaTransport() *CommonMediaTransport {
932
+ if x != nil {
933
+ return x.MediaTransport
934
+ }
935
+ return nil
936
+ }
937
+
938
+ func (x *Thumbnail) GetHeight() int32 {
939
+ if x != nil && x.Height != nil {
940
+ return *x.Height
941
+ }
942
+ return 0
943
+ }
944
+
945
+ func (x *Thumbnail) GetWidth() int32 {
946
+ if x != nil && x.Width != nil {
947
+ return *x.Width
948
+ }
949
+ return 0
950
+ }
951
+
952
+ type CommonMediaTransport struct {
953
+ state protoimpl.MessageState `protogen:"open.v1"`
954
+ MediaID *string `protobuf:"bytes,1,opt,name=mediaID" json:"mediaID,omitempty"`
955
+ FileSHA256 *string `protobuf:"bytes,2,opt,name=fileSHA256" json:"fileSHA256,omitempty"`
956
+ MediaKey *string `protobuf:"bytes,3,opt,name=mediaKey" json:"mediaKey,omitempty"`
957
+ FileEncSHA256 *string `protobuf:"bytes,4,opt,name=fileEncSHA256" json:"fileEncSHA256,omitempty"`
958
+ DirectPath *string `protobuf:"bytes,5,opt,name=directPath" json:"directPath,omitempty"`
959
+ MediaKeyTimestamp *string `protobuf:"bytes,6,opt,name=mediaKeyTimestamp" json:"mediaKeyTimestamp,omitempty"`
960
+ Sidecar *string `protobuf:"bytes,7,opt,name=sidecar" json:"sidecar,omitempty"`
961
+ FileLength *int32 `protobuf:"varint,8,opt,name=fileLength" json:"fileLength,omitempty"`
962
+ Mimetype *string `protobuf:"bytes,9,opt,name=mimetype" json:"mimetype,omitempty"`
963
+ ObjectID *string `protobuf:"bytes,10,opt,name=objectID" json:"objectID,omitempty"`
964
+ unknownFields protoimpl.UnknownFields
965
+ sizeCache protoimpl.SizeCache
966
+ }
967
+
968
+ func (x *CommonMediaTransport) Reset() {
969
+ *x = CommonMediaTransport{}
970
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[9]
971
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
972
+ ms.StoreMessageInfo(mi)
973
+ }
974
+
975
+ func (x *CommonMediaTransport) String() string {
976
+ return protoimpl.X.MessageStringOf(x)
977
+ }
978
+
979
+ func (*CommonMediaTransport) ProtoMessage() {}
980
+
981
+ func (x *CommonMediaTransport) ProtoReflect() protoreflect.Message {
982
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[9]
983
+ if x != nil {
984
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
985
+ if ms.LoadMessageInfo() == nil {
986
+ ms.StoreMessageInfo(mi)
987
+ }
988
+ return ms
989
+ }
990
+ return mi.MessageOf(x)
991
+ }
992
+
993
+ // Deprecated: Use CommonMediaTransport.ProtoReflect.Descriptor instead.
994
+ func (*CommonMediaTransport) Descriptor() ([]byte, []int) {
995
+ return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{9}
996
+ }
997
+
998
+ func (x *CommonMediaTransport) GetMediaID() string {
999
+ if x != nil && x.MediaID != nil {
1000
+ return *x.MediaID
1001
+ }
1002
+ return ""
1003
+ }
1004
+
1005
+ func (x *CommonMediaTransport) GetFileSHA256() string {
1006
+ if x != nil && x.FileSHA256 != nil {
1007
+ return *x.FileSHA256
1008
+ }
1009
+ return ""
1010
+ }
1011
+
1012
+ func (x *CommonMediaTransport) GetMediaKey() string {
1013
+ if x != nil && x.MediaKey != nil {
1014
+ return *x.MediaKey
1015
+ }
1016
+ return ""
1017
+ }
1018
+
1019
+ func (x *CommonMediaTransport) GetFileEncSHA256() string {
1020
+ if x != nil && x.FileEncSHA256 != nil {
1021
+ return *x.FileEncSHA256
1022
+ }
1023
+ return ""
1024
+ }
1025
+
1026
+ func (x *CommonMediaTransport) GetDirectPath() string {
1027
+ if x != nil && x.DirectPath != nil {
1028
+ return *x.DirectPath
1029
+ }
1030
+ return ""
1031
+ }
1032
+
1033
+ func (x *CommonMediaTransport) GetMediaKeyTimestamp() string {
1034
+ if x != nil && x.MediaKeyTimestamp != nil {
1035
+ return *x.MediaKeyTimestamp
1036
+ }
1037
+ return ""
1038
+ }
1039
+
1040
+ func (x *CommonMediaTransport) GetSidecar() string {
1041
+ if x != nil && x.Sidecar != nil {
1042
+ return *x.Sidecar
1043
+ }
1044
+ return ""
1045
+ }
1046
+
1047
+ func (x *CommonMediaTransport) GetFileLength() int32 {
1048
+ if x != nil && x.FileLength != nil {
1049
+ return *x.FileLength
1050
+ }
1051
+ return 0
1052
+ }
1053
+
1054
+ func (x *CommonMediaTransport) GetMimetype() string {
1055
+ if x != nil && x.Mimetype != nil {
1056
+ return *x.Mimetype
1057
+ }
1058
+ return ""
1059
+ }
1060
+
1061
+ func (x *CommonMediaTransport) GetObjectID() string {
1062
+ if x != nil && x.ObjectID != nil {
1063
+ return *x.ObjectID
1064
+ }
1065
+ return ""
1066
+ }
1067
+
1068
+ type VideoExtraMetadata struct {
1069
+ state protoimpl.MessageState `protogen:"open.v1"`
1070
+ UploadMosClientScore *float32 `protobuf:"fixed32,1,opt,name=uploadMosClientScore" json:"uploadMosClientScore,omitempty"`
1071
+ unknownFields protoimpl.UnknownFields
1072
+ sizeCache protoimpl.SizeCache
1073
+ }
1074
+
1075
+ func (x *VideoExtraMetadata) Reset() {
1076
+ *x = VideoExtraMetadata{}
1077
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[10]
1078
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1079
+ ms.StoreMessageInfo(mi)
1080
+ }
1081
+
1082
+ func (x *VideoExtraMetadata) String() string {
1083
+ return protoimpl.X.MessageStringOf(x)
1084
+ }
1085
+
1086
+ func (*VideoExtraMetadata) ProtoMessage() {}
1087
+
1088
+ func (x *VideoExtraMetadata) ProtoReflect() protoreflect.Message {
1089
+ mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[10]
1090
+ if x != nil {
1091
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1092
+ if ms.LoadMessageInfo() == nil {
1093
+ ms.StoreMessageInfo(mi)
1094
+ }
1095
+ return ms
1096
+ }
1097
+ return mi.MessageOf(x)
1098
+ }
1099
+
1100
+ // Deprecated: Use VideoExtraMetadata.ProtoReflect.Descriptor instead.
1101
+ func (*VideoExtraMetadata) Descriptor() ([]byte, []int) {
1102
+ return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{10}
1103
+ }
1104
+
1105
+ func (x *VideoExtraMetadata) GetUploadMosClientScore() float32 {
1106
+ if x != nil && x.UploadMosClientScore != nil {
1107
+ return *x.UploadMosClientScore
1108
+ }
1109
+ return 0
1110
+ }
1111
+
1112
+ var File_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto protoreflect.FileDescriptor
1113
+
1114
+ const file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDesc = "" +
1115
+ "\n" +
1116
+ "9instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto\x12\x19InstamadilloCoreTypeMedia\"\xc3\x03\n" +
1117
+ "\x05Media\x12J\n" +
1118
+ "\vstaticPhoto\x18\x01 \x01(\v2&.InstamadilloCoreTypeMedia.StaticPhotoH\x00R\vstaticPhoto\x128\n" +
1119
+ "\x05voice\x18\x02 \x01(\v2 .InstamadilloCoreTypeMedia.VoiceH\x00R\x05voice\x128\n" +
1120
+ "\x05video\x18\x03 \x01(\v2 .InstamadilloCoreTypeMedia.VideoH\x00R\x05video\x128\n" +
1121
+ "\x05raven\x18\x04 \x01(\v2 .InstamadilloCoreTypeMedia.RavenH\x00R\x05raven\x122\n" +
1122
+ "\x03gif\x18\x05 \x01(\v2\x1e.InstamadilloCoreTypeMedia.GifH\x00R\x03gif\x12P\n" +
1123
+ "\ravatarSticker\x18\x06 \x01(\v2(.InstamadilloCoreTypeMedia.AvatarStickerH\x00R\ravatarSticker\"1\n" +
1124
+ "\x10InterventionType\x12\t\n" +
1125
+ "\x05UNSET\x10\x00\x12\b\n" +
1126
+ "\x04NONE\x10\x01\x12\b\n" +
1127
+ "\x04NUDE\x10\x02B\a\n" +
1128
+ "\x05media\"\xe9\x02\n" +
1129
+ "\vStaticPhoto\x12W\n" +
1130
+ "\x0emediaTransport\x18\x01 \x01(\v2/.InstamadilloCoreTypeMedia.CommonMediaTransportR\x0emediaTransport\x12\x16\n" +
1131
+ "\x06height\x18\x02 \x01(\x05R\x06height\x12\x14\n" +
1132
+ "\x05width\x18\x03 \x01(\x05R\x05width\x12$\n" +
1133
+ "\vscanLengths\x18\x04 \x03(\x05B\x02\x10\x01R\vscanLengths\x12B\n" +
1134
+ "\tthumbnail\x18\x05 \x01(\v2$.InstamadilloCoreTypeMedia.ThumbnailR\tthumbnail\x12i\n" +
1135
+ "\x16pjpegScanConfiguration\x18\x06 \x01(\x0e21.InstamadilloCoreTypeMedia.PjpegScanConfigurationR\x16pjpegScanConfiguration\"\xe0\x01\n" +
1136
+ "\x05Voice\x12W\n" +
1137
+ "\x0emediaTransport\x18\x01 \x01(\v2/.InstamadilloCoreTypeMedia.CommonMediaTransportR\x0emediaTransport\x12\x1a\n" +
1138
+ "\bduration\x18\x02 \x01(\x05R\bduration\x12 \n" +
1139
+ "\twaveforms\x18\x03 \x03(\x02B\x02\x10\x01R\twaveforms\x12@\n" +
1140
+ "\x1bwaveformSamplingFrequencyHz\x18\x04 \x01(\x05R\x1bwaveformSamplingFrequencyHz\"\xb1\x02\n" +
1141
+ "\x05Video\x12W\n" +
1142
+ "\x0emediaTransport\x18\x01 \x01(\v2/.InstamadilloCoreTypeMedia.CommonMediaTransportR\x0emediaTransport\x12\x16\n" +
1143
+ "\x06height\x18\x02 \x01(\x05R\x06height\x12\x14\n" +
1144
+ "\x05width\x18\x03 \x01(\x05R\x05width\x12B\n" +
1145
+ "\tthumbnail\x18\x04 \x01(\v2$.InstamadilloCoreTypeMedia.ThumbnailR\tthumbnail\x12]\n" +
1146
+ "\x12videoExtraMetadata\x18\x05 \x01(\v2-.InstamadilloCoreTypeMedia.VideoExtraMetadataR\x12videoExtraMetadata\"\x96\x02\n" +
1147
+ "\x03Gif\x12W\n" +
1148
+ "\x0emediaTransport\x18\x01 \x01(\v2/.InstamadilloCoreTypeMedia.CommonMediaTransportR\x0emediaTransport\x12\x16\n" +
1149
+ "\x06height\x18\x02 \x01(\x05R\x06height\x12\x14\n" +
1150
+ "\x05width\x18\x03 \x01(\x05R\x05width\x12\x1c\n" +
1151
+ "\tisSticker\x18\x04 \x01(\bR\tisSticker\x12\x1c\n" +
1152
+ "\tstickerID\x18\x05 \x01(\tR\tstickerID\x12\x16\n" +
1153
+ "\x06gifURL\x18\x06 \x01(\tR\x06gifURL\x12\x18\n" +
1154
+ "\agifSize\x18\a \x01(\x05R\agifSize\x12\x1a\n" +
1155
+ "\bisRandom\x18\b \x01(\bR\bisRandom\"\xea\x01\n" +
1156
+ "\rAvatarSticker\x12W\n" +
1157
+ "\x0emediaTransport\x18\x01 \x01(\v2/.InstamadilloCoreTypeMedia.CommonMediaTransportR\x0emediaTransport\x12\x1e\n" +
1158
+ "\n" +
1159
+ "isAnimated\x18\x02 \x01(\bR\n" +
1160
+ "isAnimated\x12\x1c\n" +
1161
+ "\tstickerID\x18\x03 \x01(\tR\tstickerID\x12(\n" +
1162
+ "\x0fstickerTemplate\x18\x04 \x01(\tR\x0fstickerTemplate\x12\x18\n" +
1163
+ "\anuxType\x18\x05 \x01(\x05R\anuxType\"\x9c\x02\n" +
1164
+ "\x05Raven\x12E\n" +
1165
+ "\bviewMode\x18\x01 \x01(\x0e2).InstamadilloCoreTypeMedia.Raven.ViewModeR\bviewMode\x12A\n" +
1166
+ "\acontent\x18\x02 \x01(\v2'.InstamadilloCoreTypeMedia.RavenContentR\acontent\"\x88\x01\n" +
1167
+ "\bViewMode\x12 \n" +
1168
+ "\x1cRAVEN_VIEW_MODEL_UNSPECIFIED\x10\x00\x12\x19\n" +
1169
+ "\x15RAVEN_VIEW_MODEL_ONCE\x10\x01\x12\x1f\n" +
1170
+ "\x1bRAVEN_VIEW_MODEL_REPLAYABLE\x10\x02\x12\x1e\n" +
1171
+ "\x1aRAVEN_VIEW_MODEL_PERMANENT\x10\x03\"\xa4\x01\n" +
1172
+ "\fRavenContent\x12J\n" +
1173
+ "\vstaticPhoto\x18\x01 \x01(\v2&.InstamadilloCoreTypeMedia.StaticPhotoH\x00R\vstaticPhoto\x128\n" +
1174
+ "\x05video\x18\x02 \x01(\v2 .InstamadilloCoreTypeMedia.VideoH\x00R\x05videoB\x0e\n" +
1175
+ "\fravenContent\"\x92\x01\n" +
1176
+ "\tThumbnail\x12W\n" +
1177
+ "\x0emediaTransport\x18\x01 \x01(\v2/.InstamadilloCoreTypeMedia.CommonMediaTransportR\x0emediaTransport\x12\x16\n" +
1178
+ "\x06height\x18\x02 \x01(\x05R\x06height\x12\x14\n" +
1179
+ "\x05width\x18\x03 \x01(\x05R\x05width\"\xd2\x02\n" +
1180
+ "\x14CommonMediaTransport\x12\x18\n" +
1181
+ "\amediaID\x18\x01 \x01(\tR\amediaID\x12\x1e\n" +
1182
+ "\n" +
1183
+ "fileSHA256\x18\x02 \x01(\tR\n" +
1184
+ "fileSHA256\x12\x1a\n" +
1185
+ "\bmediaKey\x18\x03 \x01(\tR\bmediaKey\x12$\n" +
1186
+ "\rfileEncSHA256\x18\x04 \x01(\tR\rfileEncSHA256\x12\x1e\n" +
1187
+ "\n" +
1188
+ "directPath\x18\x05 \x01(\tR\n" +
1189
+ "directPath\x12,\n" +
1190
+ "\x11mediaKeyTimestamp\x18\x06 \x01(\tR\x11mediaKeyTimestamp\x12\x18\n" +
1191
+ "\asidecar\x18\a \x01(\tR\asidecar\x12\x1e\n" +
1192
+ "\n" +
1193
+ "fileLength\x18\b \x01(\x05R\n" +
1194
+ "fileLength\x12\x1a\n" +
1195
+ "\bmimetype\x18\t \x01(\tR\bmimetype\x12\x1a\n" +
1196
+ "\bobjectID\x18\n" +
1197
+ " \x01(\tR\bobjectID\"H\n" +
1198
+ "\x12VideoExtraMetadata\x122\n" +
1199
+ "\x14uploadMosClientScore\x18\x01 \x01(\x02R\x14uploadMosClientScore*\xa7\x01\n" +
1200
+ "\x16PjpegScanConfiguration\x12(\n" +
1201
+ "$PJPEG_SCAN_CONFIGURATION_UNSPECIFIED\x10\x00\x12\x1f\n" +
1202
+ "\x1bPJPEG_SCAN_CONFIGURATION_WA\x10\x01\x12 \n" +
1203
+ "\x1cPJPEG_SCAN_CONFIGURATION_E15\x10\x02\x12 \n" +
1204
+ "\x1cPJPEG_SCAN_CONFIGURATION_E35\x10\x03B5Z3go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia"
1205
+
1206
+ var (
1207
+ file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescOnce sync.Once
1208
+ file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescData []byte
1209
+ )
1210
+
1211
+ func file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP() []byte {
1212
+ file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescOnce.Do(func() {
1213
+ file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDesc), len(file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDesc)))
1214
+ })
1215
+ return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescData
1216
+ }
1217
+
1218
+ var file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_enumTypes = make([]protoimpl.EnumInfo, 3)
1219
+ var file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes = make([]protoimpl.MessageInfo, 11)
1220
+ var file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_goTypes = []any{
1221
+ (PjpegScanConfiguration)(0), // 0: InstamadilloCoreTypeMedia.PjpegScanConfiguration
1222
+ (Media_InterventionType)(0), // 1: InstamadilloCoreTypeMedia.Media.InterventionType
1223
+ (Raven_ViewMode)(0), // 2: InstamadilloCoreTypeMedia.Raven.ViewMode
1224
+ (*Media)(nil), // 3: InstamadilloCoreTypeMedia.Media
1225
+ (*StaticPhoto)(nil), // 4: InstamadilloCoreTypeMedia.StaticPhoto
1226
+ (*Voice)(nil), // 5: InstamadilloCoreTypeMedia.Voice
1227
+ (*Video)(nil), // 6: InstamadilloCoreTypeMedia.Video
1228
+ (*Gif)(nil), // 7: InstamadilloCoreTypeMedia.Gif
1229
+ (*AvatarSticker)(nil), // 8: InstamadilloCoreTypeMedia.AvatarSticker
1230
+ (*Raven)(nil), // 9: InstamadilloCoreTypeMedia.Raven
1231
+ (*RavenContent)(nil), // 10: InstamadilloCoreTypeMedia.RavenContent
1232
+ (*Thumbnail)(nil), // 11: InstamadilloCoreTypeMedia.Thumbnail
1233
+ (*CommonMediaTransport)(nil), // 12: InstamadilloCoreTypeMedia.CommonMediaTransport
1234
+ (*VideoExtraMetadata)(nil), // 13: InstamadilloCoreTypeMedia.VideoExtraMetadata
1235
+ }
1236
+ var file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_depIdxs = []int32{
1237
+ 4, // 0: InstamadilloCoreTypeMedia.Media.staticPhoto:type_name -> InstamadilloCoreTypeMedia.StaticPhoto
1238
+ 5, // 1: InstamadilloCoreTypeMedia.Media.voice:type_name -> InstamadilloCoreTypeMedia.Voice
1239
+ 6, // 2: InstamadilloCoreTypeMedia.Media.video:type_name -> InstamadilloCoreTypeMedia.Video
1240
+ 9, // 3: InstamadilloCoreTypeMedia.Media.raven:type_name -> InstamadilloCoreTypeMedia.Raven
1241
+ 7, // 4: InstamadilloCoreTypeMedia.Media.gif:type_name -> InstamadilloCoreTypeMedia.Gif
1242
+ 8, // 5: InstamadilloCoreTypeMedia.Media.avatarSticker:type_name -> InstamadilloCoreTypeMedia.AvatarSticker
1243
+ 12, // 6: InstamadilloCoreTypeMedia.StaticPhoto.mediaTransport:type_name -> InstamadilloCoreTypeMedia.CommonMediaTransport
1244
+ 11, // 7: InstamadilloCoreTypeMedia.StaticPhoto.thumbnail:type_name -> InstamadilloCoreTypeMedia.Thumbnail
1245
+ 0, // 8: InstamadilloCoreTypeMedia.StaticPhoto.pjpegScanConfiguration:type_name -> InstamadilloCoreTypeMedia.PjpegScanConfiguration
1246
+ 12, // 9: InstamadilloCoreTypeMedia.Voice.mediaTransport:type_name -> InstamadilloCoreTypeMedia.CommonMediaTransport
1247
+ 12, // 10: InstamadilloCoreTypeMedia.Video.mediaTransport:type_name -> InstamadilloCoreTypeMedia.CommonMediaTransport
1248
+ 11, // 11: InstamadilloCoreTypeMedia.Video.thumbnail:type_name -> InstamadilloCoreTypeMedia.Thumbnail
1249
+ 13, // 12: InstamadilloCoreTypeMedia.Video.videoExtraMetadata:type_name -> InstamadilloCoreTypeMedia.VideoExtraMetadata
1250
+ 12, // 13: InstamadilloCoreTypeMedia.Gif.mediaTransport:type_name -> InstamadilloCoreTypeMedia.CommonMediaTransport
1251
+ 12, // 14: InstamadilloCoreTypeMedia.AvatarSticker.mediaTransport:type_name -> InstamadilloCoreTypeMedia.CommonMediaTransport
1252
+ 2, // 15: InstamadilloCoreTypeMedia.Raven.viewMode:type_name -> InstamadilloCoreTypeMedia.Raven.ViewMode
1253
+ 10, // 16: InstamadilloCoreTypeMedia.Raven.content:type_name -> InstamadilloCoreTypeMedia.RavenContent
1254
+ 4, // 17: InstamadilloCoreTypeMedia.RavenContent.staticPhoto:type_name -> InstamadilloCoreTypeMedia.StaticPhoto
1255
+ 6, // 18: InstamadilloCoreTypeMedia.RavenContent.video:type_name -> InstamadilloCoreTypeMedia.Video
1256
+ 12, // 19: InstamadilloCoreTypeMedia.Thumbnail.mediaTransport:type_name -> InstamadilloCoreTypeMedia.CommonMediaTransport
1257
+ 20, // [20:20] is the sub-list for method output_type
1258
+ 20, // [20:20] is the sub-list for method input_type
1259
+ 20, // [20:20] is the sub-list for extension type_name
1260
+ 20, // [20:20] is the sub-list for extension extendee
1261
+ 0, // [0:20] is the sub-list for field type_name
1262
+ }
1263
+
1264
+ func init() { file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_init() }
1265
+ func file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_init() {
1266
+ if File_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto != nil {
1267
+ return
1268
+ }
1269
+ file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[0].OneofWrappers = []any{
1270
+ (*Media_StaticPhoto)(nil),
1271
+ (*Media_Voice)(nil),
1272
+ (*Media_Video)(nil),
1273
+ (*Media_Raven)(nil),
1274
+ (*Media_Gif)(nil),
1275
+ (*Media_AvatarSticker)(nil),
1276
+ }
1277
+ file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[7].OneofWrappers = []any{
1278
+ (*RavenContent_StaticPhoto)(nil),
1279
+ (*RavenContent_Video)(nil),
1280
+ }
1281
+ type x struct{}
1282
+ out := protoimpl.TypeBuilder{
1283
+ File: protoimpl.DescBuilder{
1284
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
1285
+ RawDescriptor: unsafe.Slice(unsafe.StringData(file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDesc), len(file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDesc)),
1286
+ NumEnums: 3,
1287
+ NumMessages: 11,
1288
+ NumExtensions: 0,
1289
+ NumServices: 0,
1290
+ },
1291
+ GoTypes: file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_goTypes,
1292
+ DependencyIndexes: file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_depIdxs,
1293
+ EnumInfos: file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_enumTypes,
1294
+ MessageInfos: file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes,
1295
+ }.Build()
1296
+ File_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto = out.File
1297
+ file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_goTypes = nil
1298
+ file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_depIdxs = nil
1299
+ }