@atproto/api 0.4.3 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (295) hide show
  1. package/README.md +81 -0
  2. package/definitions/labels.json +212 -0
  3. package/definitions/locale/en/label-groups.json +38 -0
  4. package/definitions/locale/en/labels.json +366 -0
  5. package/definitions/locale/en/proposed-label-groups.json +38 -0
  6. package/definitions/locale/en/proposed-labels.json +632 -0
  7. package/definitions/moderation-behaviors.d.ts +48 -0
  8. package/definitions/post-moderation-behaviors.json +879 -0
  9. package/definitions/profile-moderation-behaviors.json +447 -0
  10. package/definitions/proposed-labels.json +326 -0
  11. package/dist/client/index.d.ts +3 -0
  12. package/dist/client/lexicons.d.ts +41 -1
  13. package/dist/client/types/app/bsky/actor/updateProfile.d.ts +3 -10
  14. package/dist/client/types/app/bsky/{feed/getBookmarkedFeeds.d.ts → graph/getListBlocks.d.ts} +2 -2
  15. package/dist/client/types/app/bsky/graph/listblock.d.ts +8 -0
  16. package/dist/client/types/app/bsky/{feed/unbookmarkFeed.d.ts → graph/subscribeMuteList.d.ts} +1 -1
  17. package/dist/client/types/app/bsky/{feed/bookmarkFeed.d.ts → graph/unsubscribeMuteList.d.ts} +1 -1
  18. package/dist/{src/client/types/app/bsky/notification/updateSeen.d.ts → client/types/app/bsky/unspecced/applyLabels.d.ts} +2 -1
  19. package/dist/client/types/com/atproto/admin/defs.d.ts +2 -0
  20. package/dist/client/types/com/atproto/admin/disableAccountInvites.d.ts +1 -0
  21. package/dist/client/types/com/atproto/admin/enableAccountInvites.d.ts +1 -0
  22. package/dist/helpers/bsky.d.ts +20 -0
  23. package/dist/index.d.ts +4 -0
  24. package/dist/index.js +1417 -14
  25. package/dist/index.js.map +4 -4
  26. package/dist/mixins/bsky.d.ts +23 -0
  27. package/dist/moderation/accumulator.d.ts +14 -0
  28. package/dist/moderation/const/label-groups.d.ts +2 -0
  29. package/dist/moderation/const/labels.d.ts +2 -0
  30. package/dist/moderation/index.d.ts +44 -0
  31. package/dist/moderation/subjects/account.d.ts +3 -0
  32. package/dist/moderation/subjects/feed-generator.d.ts +2 -0
  33. package/dist/moderation/subjects/post.d.ts +2 -0
  34. package/dist/moderation/subjects/profile.d.ts +3 -0
  35. package/dist/moderation/subjects/quoted-post.d.ts +6 -0
  36. package/dist/moderation/subjects/user-list.d.ts +2 -0
  37. package/dist/moderation/types.d.ts +97 -0
  38. package/dist/moderation/util.d.ts +12 -0
  39. package/dist/rich-text/sanitize.d.ts +4 -0
  40. package/docs/labels.md +522 -0
  41. package/docs/moderation-behaviors/posts.md +1919 -0
  42. package/docs/moderation-behaviors/profiles.md +907 -0
  43. package/docs/moderation.md +144 -0
  44. package/package.json +6 -4
  45. package/scripts/code/label-groups.mjs +68 -0
  46. package/scripts/code/labels.mjs +68 -0
  47. package/scripts/docs/labels.mjs +164 -0
  48. package/scripts/docs/post-moderation-behaviors.mjs +122 -0
  49. package/scripts/docs/profile-moderation-behaviors.mjs +122 -0
  50. package/scripts/generate-code.mjs +4 -0
  51. package/scripts/generate-docs.mjs +5 -0
  52. package/src/client/index.ts +13 -0
  53. package/src/client/lexicons.ts +44 -2
  54. package/src/client/types/app/bsky/unspecced/applyLabels.ts +33 -0
  55. package/src/client/types/com/atproto/admin/defs.ts +2 -0
  56. package/src/client/types/com/atproto/admin/disableAccountInvites.ts +2 -0
  57. package/src/client/types/com/atproto/admin/enableAccountInvites.ts +2 -0
  58. package/src/client/types/com/atproto/moderation/defs.ts +1 -1
  59. package/src/index.ts +4 -0
  60. package/src/moderation/accumulator.ts +181 -0
  61. package/src/moderation/const/label-groups.ts +143 -0
  62. package/src/moderation/const/labels.ts +798 -0
  63. package/src/moderation/index.ts +343 -0
  64. package/src/moderation/subjects/account.ts +40 -0
  65. package/src/moderation/subjects/feed-generator.ts +13 -0
  66. package/src/moderation/subjects/post.ts +23 -0
  67. package/src/moderation/subjects/profile.ts +31 -0
  68. package/src/moderation/subjects/quoted-post.ts +62 -0
  69. package/src/moderation/subjects/user-list.ts +13 -0
  70. package/src/moderation/types.ts +141 -0
  71. package/src/moderation/util.ts +98 -0
  72. package/tests/post-moderation.test.ts +46 -0
  73. package/tests/profile-moderation.test.ts +46 -0
  74. package/tests/util/index.ts +176 -0
  75. package/tests/util/moderation-behavior.ts +180 -0
  76. package/dist/client/types/app/bsky/actor/searchActor.d.ts +0 -22
  77. package/dist/client/types/app/bsky/actor/searchActorTypeahead.d.ts +0 -20
  78. package/dist/client/types/com/atproto/admin/getInviteCodeUsage.d.ts +0 -29
  79. package/dist/client/types/com/atproto/repo/importRepo.d.ts +0 -19
  80. package/dist/client/types/com/atproto/repo/uploadRepo.d.ts +0 -19
  81. package/dist/client/types/com/atproto/server/getUserInviteCodes.d.ts +0 -31
  82. package/dist/src/client/index.d.ts +0 -462
  83. package/dist/src/client/lexicons.d.ts +0 -2910
  84. package/dist/src/client/schemas.d.ts +0 -17
  85. package/dist/src/client/types/app/bsky/actor/createScene.d.ts +0 -32
  86. package/dist/src/client/types/app/bsky/actor/getProfile.d.ts +0 -36
  87. package/dist/src/client/types/app/bsky/actor/getSuggestions.d.ts +0 -36
  88. package/dist/src/client/types/app/bsky/actor/profile.d.ts +0 -15
  89. package/dist/src/client/types/app/bsky/actor/ref.d.ts +0 -14
  90. package/dist/src/client/types/app/bsky/actor/search.d.ts +0 -32
  91. package/dist/src/client/types/app/bsky/actor/searchTypeahead.d.ts +0 -28
  92. package/dist/src/client/types/app/bsky/actor/updateProfile.d.ts +0 -48
  93. package/dist/src/client/types/app/bsky/badge.d.ts +0 -22
  94. package/dist/src/client/types/app/bsky/badgeAccept.d.ts +0 -11
  95. package/dist/src/client/types/app/bsky/badgeOffer.d.ts +0 -11
  96. package/dist/src/client/types/app/bsky/declaration.d.ts +0 -6
  97. package/dist/src/client/types/app/bsky/embed/external.d.ts +0 -26
  98. package/dist/src/client/types/app/bsky/embed/images.d.ts +0 -23
  99. package/dist/src/client/types/app/bsky/feed/embed.d.ts +0 -36
  100. package/dist/src/client/types/app/bsky/feed/feedViewPost.d.ts +0 -26
  101. package/dist/src/client/types/app/bsky/feed/getAuthorFeed.d.ts +0 -22
  102. package/dist/src/client/types/app/bsky/feed/getPostThread.d.ts +0 -43
  103. package/dist/src/client/types/app/bsky/feed/getRepostedBy.d.ts +0 -35
  104. package/dist/src/client/types/app/bsky/feed/getTimeline.d.ts +0 -22
  105. package/dist/src/client/types/app/bsky/feed/getVotes.d.ts +0 -33
  106. package/dist/src/client/types/app/bsky/feed/mediaEmbed.d.ts +0 -18
  107. package/dist/src/client/types/app/bsky/feed/post.d.ts +0 -54
  108. package/dist/src/client/types/app/bsky/feed/repost.d.ts +0 -6
  109. package/dist/src/client/types/app/bsky/feed/setVote.d.ts +0 -25
  110. package/dist/src/client/types/app/bsky/feed/trend.d.ts +0 -6
  111. package/dist/src/client/types/app/bsky/feed/vote.d.ts +0 -7
  112. package/dist/src/client/types/app/bsky/follow.d.ts +0 -9
  113. package/dist/src/client/types/app/bsky/getAuthorFeed.d.ts +0 -56
  114. package/dist/src/client/types/app/bsky/getBadgeMembers.d.ts +0 -29
  115. package/dist/src/client/types/app/bsky/getHomeFeed.d.ts +0 -56
  116. package/dist/src/client/types/app/bsky/getLikedBy.d.ts +0 -29
  117. package/dist/src/client/types/app/bsky/getNotificationCount.d.ts +0 -16
  118. package/dist/src/client/types/app/bsky/getNotifications.d.ts +0 -33
  119. package/dist/src/client/types/app/bsky/getPostThread.d.ts +0 -55
  120. package/dist/src/client/types/app/bsky/getProfile.d.ts +0 -26
  121. package/dist/src/client/types/app/bsky/getRepostedBy.d.ts +0 -29
  122. package/dist/src/client/types/app/bsky/getTimeline.d.ts +0 -56
  123. package/dist/src/client/types/app/bsky/getUserFollowers.d.ts +0 -31
  124. package/dist/src/client/types/app/bsky/getUserFollows.d.ts +0 -31
  125. package/dist/src/client/types/app/bsky/getUsersSearch.d.ts +0 -26
  126. package/dist/src/client/types/app/bsky/getUsersTypeahead.d.ts +0 -22
  127. package/dist/src/client/types/app/bsky/graph/assertCreator.d.ts +0 -1
  128. package/dist/src/client/types/app/bsky/graph/assertMember.d.ts +0 -1
  129. package/dist/src/client/types/app/bsky/graph/assertion.d.ts +0 -7
  130. package/dist/src/client/types/app/bsky/graph/confirmation.d.ts +0 -8
  131. package/dist/src/client/types/app/bsky/graph/follow.d.ts +0 -6
  132. package/dist/src/client/types/app/bsky/graph/getAssertions.d.ts +0 -43
  133. package/dist/src/client/types/app/bsky/graph/getFollowers.d.ts +0 -34
  134. package/dist/src/client/types/app/bsky/graph/getFollows.d.ts +0 -33
  135. package/dist/src/client/types/app/bsky/graph/getMembers.d.ts +0 -33
  136. package/dist/src/client/types/app/bsky/graph/getMemberships.d.ts +0 -33
  137. package/dist/src/client/types/app/bsky/invite.d.ts +0 -10
  138. package/dist/src/client/types/app/bsky/inviteAccept.d.ts +0 -14
  139. package/dist/src/client/types/app/bsky/like.d.ts +0 -10
  140. package/dist/src/client/types/app/bsky/mediaEmbed.d.ts +0 -15
  141. package/dist/src/client/types/app/bsky/notification/getCount.d.ts +0 -17
  142. package/dist/src/client/types/app/bsky/notification/list.d.ts +0 -32
  143. package/dist/src/client/types/app/bsky/post.d.ts +0 -23
  144. package/dist/src/client/types/app/bsky/postNotificationsSeen.d.ts +0 -20
  145. package/dist/src/client/types/app/bsky/profile.d.ts +0 -5
  146. package/dist/src/client/types/app/bsky/repost.d.ts +0 -10
  147. package/dist/src/client/types/app/bsky/system/actorScene.d.ts +0 -1
  148. package/dist/src/client/types/app/bsky/system/actorUser.d.ts +0 -1
  149. package/dist/src/client/types/app/bsky/system/declRef.d.ts +0 -5
  150. package/dist/src/client/types/app/bsky/system/declaration.d.ts +0 -4
  151. package/dist/src/client/types/app/bsky/updateProfile.d.ts +0 -23
  152. package/dist/src/client/types/com/atproto/account/create.d.ts +0 -41
  153. package/dist/src/client/types/com/atproto/account/createInviteCode.d.ts +0 -22
  154. package/dist/src/client/types/com/atproto/account/delete.d.ts +0 -13
  155. package/dist/src/client/types/com/atproto/account/get.d.ts +0 -12
  156. package/dist/src/client/types/com/atproto/account/requestPasswordReset.d.ts +0 -17
  157. package/dist/src/client/types/com/atproto/account/resetPassword.d.ts +0 -24
  158. package/dist/src/client/types/com/atproto/blob/upload.d.ts +0 -19
  159. package/dist/src/client/types/com/atproto/createAccount.d.ts +0 -40
  160. package/dist/src/client/types/com/atproto/createInviteCode.d.ts +0 -20
  161. package/dist/src/client/types/com/atproto/createSession.d.ts +0 -24
  162. package/dist/src/client/types/com/atproto/data/uploadFile.d.ts +0 -19
  163. package/dist/src/client/types/com/atproto/deleteAccount.d.ts +0 -20
  164. package/dist/src/client/types/com/atproto/deleteSession.d.ts +0 -17
  165. package/dist/src/client/types/com/atproto/getAccount.d.ts +0 -16
  166. package/dist/src/client/types/com/atproto/getAccountsConfig.d.ts +0 -17
  167. package/dist/src/client/types/com/atproto/getSession.d.ts +0 -17
  168. package/dist/src/client/types/com/atproto/handle/resolve.d.ts +0 -18
  169. package/dist/src/client/types/com/atproto/refreshSession.d.ts +0 -20
  170. package/dist/src/client/types/com/atproto/repo/batchWrite.d.ts +0 -39
  171. package/dist/src/client/types/com/atproto/repo/createRecord.d.ts +0 -26
  172. package/dist/src/client/types/com/atproto/repo/deleteRecord.d.ts +0 -19
  173. package/dist/src/client/types/com/atproto/repo/describe.d.ts +0 -22
  174. package/dist/src/client/types/com/atproto/repo/getRecord.d.ts +0 -23
  175. package/dist/src/client/types/com/atproto/repo/listRecords.d.ts +0 -30
  176. package/dist/src/client/types/com/atproto/repo/putRecord.d.ts +0 -27
  177. package/dist/src/client/types/com/atproto/repo/strongRef.d.ts +0 -5
  178. package/dist/src/client/types/com/atproto/repoBatchWrite.d.ts +0 -36
  179. package/dist/src/client/types/com/atproto/repoCreateRecord.d.ts +0 -24
  180. package/dist/src/client/types/com/atproto/repoDeleteRecord.d.ts +0 -18
  181. package/dist/src/client/types/com/atproto/repoDescribe.d.ts +0 -21
  182. package/dist/src/client/types/com/atproto/repoGetRecord.d.ts +0 -22
  183. package/dist/src/client/types/com/atproto/repoListRecords.d.ts +0 -27
  184. package/dist/src/client/types/com/atproto/repoPutRecord.d.ts +0 -25
  185. package/dist/src/client/types/com/atproto/requestAccountPasswordReset.d.ts +0 -19
  186. package/dist/src/client/types/com/atproto/resetAccountPassword.d.ts +0 -26
  187. package/dist/src/client/types/com/atproto/resolveHandle.d.ts +0 -17
  188. package/dist/src/client/types/com/atproto/resolveName.d.ts +0 -17
  189. package/dist/src/client/types/com/atproto/server/getAccountsConfig.d.ts +0 -24
  190. package/dist/src/client/types/com/atproto/session/create.d.ts +0 -26
  191. package/dist/src/client/types/com/atproto/session/delete.d.ts +0 -13
  192. package/dist/src/client/types/com/atproto/session/get.d.ts +0 -18
  193. package/dist/src/client/types/com/atproto/session/refresh.d.ts +0 -21
  194. package/dist/src/client/types/com/atproto/sync/getRepo.d.ts +0 -15
  195. package/dist/src/client/types/com/atproto/sync/getRoot.d.ts +0 -18
  196. package/dist/src/client/types/com/atproto/sync/updateRepo.d.ts +0 -15
  197. package/dist/src/client/types/com/atproto/syncGetRepo.d.ts +0 -15
  198. package/dist/src/client/types/com/atproto/syncGetRoot.d.ts +0 -17
  199. package/dist/src/client/types/com/atproto/syncUpdateRepo.d.ts +0 -15
  200. package/dist/src/index.d.ts +0 -4
  201. package/dist/src/schemas.d.ts +0 -19
  202. package/dist/src/session.d.ts +0 -42
  203. package/dist/src/types/app/bsky/acceptedBadge.d.ts +0 -10
  204. package/dist/src/types/app/bsky/badge.d.ts +0 -22
  205. package/dist/src/types/app/bsky/badgeAccept.d.ts +0 -11
  206. package/dist/src/types/app/bsky/badgeOffer.d.ts +0 -11
  207. package/dist/src/types/app/bsky/declaration.d.ts +0 -6
  208. package/dist/src/types/app/bsky/follow.d.ts +0 -9
  209. package/dist/src/types/app/bsky/getAuthorFeed.d.ts +0 -56
  210. package/dist/src/types/app/bsky/getBadgeMembers.d.ts +0 -29
  211. package/dist/src/types/app/bsky/getHomeFeed.d.ts +0 -56
  212. package/dist/src/types/app/bsky/getLikedBy.d.ts +0 -29
  213. package/dist/src/types/app/bsky/getNotificationCount.d.ts +0 -16
  214. package/dist/src/types/app/bsky/getNotifications.d.ts +0 -33
  215. package/dist/src/types/app/bsky/getPostThread.d.ts +0 -55
  216. package/dist/src/types/app/bsky/getProfile.d.ts +0 -42
  217. package/dist/src/types/app/bsky/getRepostedBy.d.ts +0 -29
  218. package/dist/src/types/app/bsky/getUserFollowers.d.ts +0 -31
  219. package/dist/src/types/app/bsky/getUserFollows.d.ts +0 -31
  220. package/dist/src/types/app/bsky/getUsersSearch.d.ts +0 -26
  221. package/dist/src/types/app/bsky/getUsersTypeahead.d.ts +0 -22
  222. package/dist/src/types/app/bsky/invite.d.ts +0 -10
  223. package/dist/src/types/app/bsky/inviteAccept.d.ts +0 -14
  224. package/dist/src/types/app/bsky/like.d.ts +0 -10
  225. package/dist/src/types/app/bsky/mediaEmbed.d.ts +0 -15
  226. package/dist/src/types/app/bsky/post.d.ts +0 -23
  227. package/dist/src/types/app/bsky/postNotificationsSeen.d.ts +0 -19
  228. package/dist/src/types/app/bsky/profile.d.ts +0 -11
  229. package/dist/src/types/app/bsky/repost.d.ts +0 -10
  230. package/dist/src/types/app/bsky/updateProfile.d.ts +0 -27
  231. package/dist/src/types/com/atproto/createAccount.d.ts +0 -39
  232. package/dist/src/types/com/atproto/createInviteCode.d.ts +0 -19
  233. package/dist/src/types/com/atproto/createSession.d.ts +0 -23
  234. package/dist/src/types/com/atproto/deleteAccount.d.ts +0 -19
  235. package/dist/src/types/com/atproto/deleteSession.d.ts +0 -16
  236. package/dist/src/types/com/atproto/getAccount.d.ts +0 -19
  237. package/dist/src/types/com/atproto/getAccountsConfig.d.ts +0 -17
  238. package/dist/src/types/com/atproto/getSession.d.ts +0 -17
  239. package/dist/src/types/com/atproto/refreshSession.d.ts +0 -19
  240. package/dist/src/types/com/atproto/repoBatchWrite.d.ts +0 -35
  241. package/dist/src/types/com/atproto/repoCreateRecord.d.ts +0 -23
  242. package/dist/src/types/com/atproto/repoDeleteRecord.d.ts +0 -15
  243. package/dist/src/types/com/atproto/repoDescribe.d.ts +0 -21
  244. package/dist/src/types/com/atproto/repoGetRecord.d.ts +0 -22
  245. package/dist/src/types/com/atproto/repoListRecords.d.ts +0 -27
  246. package/dist/src/types/com/atproto/repoPutRecord.d.ts +0 -24
  247. package/dist/src/types/com/atproto/requestAccountPasswordReset.d.ts +0 -18
  248. package/dist/src/types/com/atproto/resetAccountPassword.d.ts +0 -25
  249. package/dist/src/types/com/atproto/resolveName.d.ts +0 -17
  250. package/dist/src/types/com/atproto/syncGetRepo.d.ts +0 -15
  251. package/dist/src/types/com/atproto/syncGetRoot.d.ts +0 -17
  252. package/dist/src/types/com/atproto/syncUpdateRepo.d.ts +0 -14
  253. package/dist/src/types/todo/adx/createAccount.d.ts +0 -36
  254. package/dist/src/types/todo/adx/createInviteCode.d.ts +0 -19
  255. package/dist/src/types/todo/adx/createSession.d.ts +0 -22
  256. package/dist/src/types/todo/adx/deleteAccount.d.ts +0 -19
  257. package/dist/src/types/todo/adx/deleteSession.d.ts +0 -19
  258. package/dist/src/types/todo/adx/getAccount.d.ts +0 -19
  259. package/dist/src/types/todo/adx/getAccountsConfig.d.ts +0 -17
  260. package/dist/src/types/todo/adx/getSession.d.ts +0 -17
  261. package/dist/src/types/todo/adx/repoBatchWrite.d.ts +0 -34
  262. package/dist/src/types/todo/adx/repoCreateRecord.d.ts +0 -22
  263. package/dist/src/types/todo/adx/repoDeleteRecord.d.ts +0 -15
  264. package/dist/src/types/todo/adx/repoDescribe.d.ts +0 -21
  265. package/dist/src/types/todo/adx/repoGetRecord.d.ts +0 -20
  266. package/dist/src/types/todo/adx/repoListRecords.d.ts +0 -25
  267. package/dist/src/types/todo/adx/repoPutRecord.d.ts +0 -23
  268. package/dist/src/types/todo/adx/requestAccountPasswordReset.d.ts +0 -18
  269. package/dist/src/types/todo/adx/resetAccountPassword.d.ts +0 -25
  270. package/dist/src/types/todo/adx/resolveName.d.ts +0 -17
  271. package/dist/src/types/todo/adx/syncGetRepo.d.ts +0 -15
  272. package/dist/src/types/todo/adx/syncGetRoot.d.ts +0 -17
  273. package/dist/src/types/todo/adx/syncUpdateRepo.d.ts +0 -14
  274. package/dist/src/types/todo/social/badge.d.ts +0 -23
  275. package/dist/src/types/todo/social/follow.d.ts +0 -5
  276. package/dist/src/types/todo/social/getAuthorFeed.d.ts +0 -55
  277. package/dist/src/types/todo/social/getFeed.d.ts +0 -55
  278. package/dist/src/types/todo/social/getHomeFeed.d.ts +0 -55
  279. package/dist/src/types/todo/social/getLikedBy.d.ts +0 -26
  280. package/dist/src/types/todo/social/getNotificationCount.d.ts +0 -16
  281. package/dist/src/types/todo/social/getNotifications.d.ts +0 -31
  282. package/dist/src/types/todo/social/getPostThread.d.ts +0 -54
  283. package/dist/src/types/todo/social/getProfile.d.ts +0 -40
  284. package/dist/src/types/todo/social/getRepostedBy.d.ts +0 -26
  285. package/dist/src/types/todo/social/getUserFollowers.d.ts +0 -30
  286. package/dist/src/types/todo/social/getUserFollows.d.ts +0 -30
  287. package/dist/src/types/todo/social/like.d.ts +0 -5
  288. package/dist/src/types/todo/social/mediaEmbed.d.ts +0 -15
  289. package/dist/src/types/todo/social/post.d.ts +0 -18
  290. package/dist/src/types/todo/social/postNotificationsSeen.d.ts +0 -19
  291. package/dist/src/types/todo/social/profile.d.ts +0 -10
  292. package/dist/src/types/todo/social/repost.d.ts +0 -5
  293. package/dist/tsconfig.build.tsbuildinfo +0 -1
  294. package/tests/_util.ts +0 -26
  295. package/tsconfig.build.tsbuildinfo +0 -1
@@ -0,0 +1,366 @@
1
+ {
2
+ "!hide": {
3
+ "settings": {
4
+ "name": "Moderator Hide",
5
+ "description": "Moderator has chosen to hide the content."
6
+ },
7
+ "account": {
8
+ "name": "Content Blocked",
9
+ "description": "This account has been hidden by the moderators."
10
+ },
11
+ "content": {
12
+ "name": "Content Blocked",
13
+ "description": "This content has been hidden by the moderators."
14
+ }
15
+ },
16
+ "!no-promote": {
17
+ "settings": {
18
+ "name": "Moderator Filter",
19
+ "description": "Moderator has chosen to filter the content from feeds."
20
+ },
21
+ "account": {
22
+ "name": "N/A",
23
+ "description": "N/A"
24
+ },
25
+ "content": {
26
+ "name": "N/A",
27
+ "description": "N/A"
28
+ }
29
+ },
30
+ "!warn": {
31
+ "settings": {
32
+ "name": "Moderator Warn",
33
+ "description": "Moderator has chosen to set a general warning on the content."
34
+ },
35
+ "account": {
36
+ "name": "Content Warning",
37
+ "description": "This account has received a general warning from moderators."
38
+ },
39
+ "content": {
40
+ "name": "Content Warning",
41
+ "description": "This content has received a general warning from moderators."
42
+ }
43
+ },
44
+ "dmca-violation": {
45
+ "settings": {
46
+ "name": "Copyright Violation",
47
+ "description": "The content has received a DMCA takedown request."
48
+ },
49
+ "account": {
50
+ "name": "Copyright Violation",
51
+ "description": "This account has received a DMCA takedown request. It will be restored if the concerns can be resolved."
52
+ },
53
+ "content": {
54
+ "name": "Copyright Violation",
55
+ "description": "This content has received a DMCA takedown request. It will be restored if the concerns can be resolved."
56
+ }
57
+ },
58
+ "doxxing": {
59
+ "settings": {
60
+ "name": "Doxxing",
61
+ "description": "Information that reveals private information about someone which has been shared without the consent of the subject."
62
+ },
63
+ "account": {
64
+ "name": "Doxxing",
65
+ "description": "This account has been reported to publish private information about someone without their consent. This report is currently under review."
66
+ },
67
+ "content": {
68
+ "name": "Doxxing",
69
+ "description": "This content has been reported to include private information about someone without their consent."
70
+ }
71
+ },
72
+ "porn": {
73
+ "settings": {
74
+ "name": "Pornography",
75
+ "description": "Images of full-frontal nudity (genitalia) in any sexualized context, or explicit sexual activity (meaning contact with genitalia or breasts) even if partially covered. Includes graphic sexual cartoons (often jokes/memes)."
76
+ },
77
+ "account": {
78
+ "name": "Pornography",
79
+ "description": "This account contains imagery of full-frontal nudity or explicit sexual activity."
80
+ },
81
+ "content": {
82
+ "name": "Pornography",
83
+ "description": "This content contains imagery of full-frontal nudity or explicit sexual activity."
84
+ }
85
+ },
86
+ "sexual": {
87
+ "settings": {
88
+ "name": "Sexually Suggestive",
89
+ "description": "Content that does not meet the level of \"pornography\", but is still sexual. Some common examples have been selfies and \"hornyposting\" with underwear on, or partially naked (naked but covered, eg with hands or from side perspective). Sheer/see-through nipples may end up in this category."
90
+ },
91
+ "account": {
92
+ "name": "Sexually Suggestive",
93
+ "description": "This account contains imagery which is sexually suggestive. Common examples include selfies in underwear or in partial undress."
94
+ },
95
+ "content": {
96
+ "name": "Sexually Suggestive",
97
+ "description": "This content contains imagery which is sexually suggestive. Common examples include selfies in underwear or in partial undress."
98
+ }
99
+ },
100
+ "nudity": {
101
+ "settings": {
102
+ "name": "Nudity",
103
+ "description": "Nudity which is not sexual, or that is primarily \"artistic\" in nature. For example: breastfeeding; classic art paintings and sculptures; newspaper images with some nudity; fashion modeling. \"Erotic photography\" is likely to end up in sexual or porn."
104
+ },
105
+ "account": {
106
+ "name": "Nudity",
107
+ "description": "This account contains imagery which portrays nudity in a non-sexual or artistic setting."
108
+ },
109
+ "content": {
110
+ "name": "Nudity",
111
+ "description": "This content contains imagery which portrays nudity in a non-sexual or artistic setting."
112
+ }
113
+ },
114
+ "nsfl": {
115
+ "settings": {
116
+ "name": "NSFL",
117
+ "description": "\"Not Suitable For Life.\" This includes graphic images like the infamous \"goatse\" (don't look it up)."
118
+ },
119
+ "account": {
120
+ "name": "Graphic Imagery (NSFL)",
121
+ "description": "This account contains graphic images which are often referred to as \"Not Suitable For Life.\""
122
+ },
123
+ "content": {
124
+ "name": "Graphic Imagery (NSFL)",
125
+ "description": "This content contains graphic images which are often referred to as \"Not Suitable For Life.\""
126
+ }
127
+ },
128
+ "corpse": {
129
+ "settings": {
130
+ "name": "Corpse",
131
+ "description": "Visual image of a dead human body in any context. Includes war images, hanging, funeral caskets. Does not include all figurative cases (cartoons), but can include realistic figurative images or renderings."
132
+ },
133
+ "account": {
134
+ "name": "Graphic Imagery (Corpse)",
135
+ "description": "This account contains images of a dead human body in any context. Includes war images, hanging, funeral caskets."
136
+ },
137
+ "content": {
138
+ "name": "Graphic Imagery (Corpse)",
139
+ "description": "This content contains images of a dead human body in any context. Includes war images, hanging, funeral caskets."
140
+ }
141
+ },
142
+ "gore": {
143
+ "settings": {
144
+ "name": "Gore",
145
+ "description": "Intended for shocking images, typically involving blood or visible wounds."
146
+ },
147
+ "account": {
148
+ "name": "Graphic Imagery (Gore)",
149
+ "description": "This account contains shocking images involving blood or visible wounds."
150
+ },
151
+ "content": {
152
+ "name": "Graphic Imagery (Gore)",
153
+ "description": "This content contains shocking images involving blood or visible wounds."
154
+ }
155
+ },
156
+ "torture": {
157
+ "settings": {
158
+ "name": "Torture",
159
+ "description": "Depictions of torture of a human or animal (animal cruelty)."
160
+ },
161
+ "account": {
162
+ "name": "Graphic Imagery (Torture)",
163
+ "description": "This account contains depictions of torture of a human or animal."
164
+ },
165
+ "content": {
166
+ "name": "Graphic Imagery (Torture)",
167
+ "description": "This content contains depictions of torture of a human or animal."
168
+ }
169
+ },
170
+ "self-harm": {
171
+ "settings": {
172
+ "name": "Self-Harm",
173
+ "description": "A visual depiction (photo or figurative) of cutting, suicide, or similar."
174
+ },
175
+ "account": {
176
+ "name": "Graphic Imagery (Self-Harm)",
177
+ "description": "This account includes depictions of cutting, suicide, or other forms of self-harm."
178
+ },
179
+ "content": {
180
+ "name": "Graphic Imagery (Self-Harm)",
181
+ "description": "This content includes depictions of cutting, suicide, or other forms of self-harm."
182
+ }
183
+ },
184
+ "intolerant-race": {
185
+ "settings": {
186
+ "name": "Racial Intolerance",
187
+ "description": "Hateful or intolerant content related to race."
188
+ },
189
+ "account": {
190
+ "name": "Intolerance (Racial)",
191
+ "description": "This account includes hateful or intolerant content related to race."
192
+ },
193
+ "content": {
194
+ "name": "Intolerance (Racial)",
195
+ "description": "This content includes hateful or intolerant views related to race."
196
+ }
197
+ },
198
+ "intolerant-gender": {
199
+ "settings": {
200
+ "name": "Gender Intolerance",
201
+ "description": "Hateful or intolerant content related to gender or gender identity."
202
+ },
203
+ "account": {
204
+ "name": "Intolerance (Gender)",
205
+ "description": "This account includes hateful or intolerant content related to gender or gender identity."
206
+ },
207
+ "content": {
208
+ "name": "Intolerance (Gender)",
209
+ "description": "This content includes hateful or intolerant views related to gender or gender identity."
210
+ }
211
+ },
212
+ "intolerant-sexual-orientation": {
213
+ "settings": {
214
+ "name": "Sexual Orientation Intolerance",
215
+ "description": "Hateful or intolerant content related to sexual preferences."
216
+ },
217
+ "account": {
218
+ "name": "Intolerance (Orientation)",
219
+ "description": "This account includes hateful or intolerant content related to sexual preferences."
220
+ },
221
+ "content": {
222
+ "name": "Intolerance (Orientation)",
223
+ "description": "This content includes hateful or intolerant views related to sexual preferences."
224
+ }
225
+ },
226
+ "intolerant-religion": {
227
+ "settings": {
228
+ "name": "Religious Intolerance",
229
+ "description": "Hateful or intolerant content related to religious views or practices."
230
+ },
231
+ "account": {
232
+ "name": "Intolerance (Religious)",
233
+ "description": "This account includes hateful or intolerant content related to religious views or practices."
234
+ },
235
+ "content": {
236
+ "name": "Intolerance (Religious)",
237
+ "description": "This content includes hateful or intolerant views related to religious views or practices."
238
+ }
239
+ },
240
+ "intolerant": {
241
+ "settings": {
242
+ "name": "Intolerance",
243
+ "description": "A catchall for hateful or intolerant content which is not covered elsewhere."
244
+ },
245
+ "account": {
246
+ "name": "Intolerance",
247
+ "description": "This account includes hateful or intolerant content."
248
+ },
249
+ "content": {
250
+ "name": "Intolerance",
251
+ "description": "This content includes hateful or intolerant views."
252
+ }
253
+ },
254
+ "icon-intolerant": {
255
+ "settings": {
256
+ "name": "Intolerant Iconography",
257
+ "description": "Visual imagery associated with a hate group, such as the KKK or Nazi, in any context (supportive, critical, documentary, etc)."
258
+ },
259
+ "account": {
260
+ "name": "Intolerant Iconography",
261
+ "description": "This account includes imagery associated with a hate group such as the KKK or Nazis. This warning may apply to content any context, including critical or documentary purposes."
262
+ },
263
+ "content": {
264
+ "name": "Intolerant Iconography",
265
+ "description": "This content includes imagery associated with a hate group such as the KKK or Nazis. This warning may apply to content any context, including critical or documentary purposes."
266
+ }
267
+ },
268
+ "threat": {
269
+ "settings": {
270
+ "name": "Threats",
271
+ "description": "Statements or imagery published with the intent to threaten, intimidate, or harm."
272
+ },
273
+ "account": {
274
+ "name": "Threats",
275
+ "description": "The moderators believe this account has published statements or imagery with the intent to threaten, intimidate, or harm others."
276
+ },
277
+ "content": {
278
+ "name": "Threats",
279
+ "description": "The moderators believe this content was published with the intent to threaten, intimidate, or harm others."
280
+ }
281
+ },
282
+ "spoiler": {
283
+ "settings": {
284
+ "name": "Spoiler",
285
+ "description": "Discussion about film, TV, etc which gives away plot points."
286
+ },
287
+ "account": {
288
+ "name": "Spoiler Warning",
289
+ "description": "This account contains discussion about film, TV, etc which gives away plot points."
290
+ },
291
+ "content": {
292
+ "name": "Spoiler Warning",
293
+ "description": "This content contains discussion about film, TV, etc which gives away plot points."
294
+ }
295
+ },
296
+ "spam": {
297
+ "settings": {
298
+ "name": "Spam",
299
+ "description": "Repeat, low-quality messages which are clearly not designed to add to a conversation or space."
300
+ },
301
+ "account": {
302
+ "name": "Spam",
303
+ "description": "This account publishes repeat, low-quality messages which are clearly not designed to add to a conversation or space."
304
+ },
305
+ "content": {
306
+ "name": "Spam",
307
+ "description": "This content is a part of repeat, low-quality messages which are clearly not designed to add to a conversation or space."
308
+ }
309
+ },
310
+ "account-security": {
311
+ "settings": {
312
+ "name": "Security Concerns",
313
+ "description": "Content designed to hijack user accounts such as a phishing attack."
314
+ },
315
+ "account": {
316
+ "name": "Security Warning",
317
+ "description": "This account has published content designed to hijack user accounts such as a phishing attack."
318
+ },
319
+ "content": {
320
+ "name": "Security Warning",
321
+ "description": "This content is designed to hijack user accounts such as a phishing attack."
322
+ }
323
+ },
324
+ "net-abuse": {
325
+ "settings": {
326
+ "name": "Network Attacks",
327
+ "description": "Content designed to attack network systems such as denial-of-service attacks."
328
+ },
329
+ "account": {
330
+ "name": "Network Attack Warning",
331
+ "description": "This account has published content designed to attack network systems such as denial-of-service attacks."
332
+ },
333
+ "content": {
334
+ "name": "Network Attack Warning",
335
+ "description": "This content is designed to attack network systems such as denial-of-service attacks."
336
+ }
337
+ },
338
+ "impersonation": {
339
+ "settings": {
340
+ "name": "Impersonation",
341
+ "description": "Accounts which falsely assert some identity."
342
+ },
343
+ "account": {
344
+ "name": "Impersonation Warning",
345
+ "description": "The moderators believe this account is lying about their identity."
346
+ },
347
+ "content": {
348
+ "name": "Impersonation Warning",
349
+ "description": "The moderators believe this account is lying about their identity."
350
+ }
351
+ },
352
+ "scam": {
353
+ "settings": {
354
+ "name": "Scam",
355
+ "description": "Fraudulent content."
356
+ },
357
+ "account": {
358
+ "name": "Scam Warning",
359
+ "description": "The moderators believe this account publishes fraudulent content."
360
+ },
361
+ "content": {
362
+ "name": "Scam Warning",
363
+ "description": "The moderators believe this is fraudulent content."
364
+ }
365
+ }
366
+ }
@@ -0,0 +1,38 @@
1
+ {
2
+ "system": {
3
+ "name": "System",
4
+ "description": "Moderator overrides for special cases."
5
+ },
6
+ "legal": {
7
+ "name": "Legal",
8
+ "description": "Content removed for legal reasons."
9
+ },
10
+ "sexual": {
11
+ "name": "Adult Content",
12
+ "description": "Content which is sexual in nature."
13
+ },
14
+ "violence": {
15
+ "name": "Violence",
16
+ "description": "Content which is violent or deeply disturbing."
17
+ },
18
+ "intolerance": {
19
+ "name": "Intolerance",
20
+ "description": "Content or behavior which is hateful or intolerant toward a group of people."
21
+ },
22
+ "rude": {
23
+ "name": "Rude",
24
+ "description": "Behavior which is rude toward other users."
25
+ },
26
+ "curation": {
27
+ "name": "Curational",
28
+ "description": "Subjective moderation geared towards curating a more positive environment."
29
+ },
30
+ "spam": {
31
+ "name": "Spam",
32
+ "description": "Content which doesn't add to the conversation."
33
+ },
34
+ "misinfo": {
35
+ "name": "Misinformation",
36
+ "description": "Content which misleads or defrauds users."
37
+ }
38
+ }