@atproto/api 0.4.4 → 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.
- package/README.md +81 -0
- package/definitions/labels.json +212 -0
- package/definitions/locale/en/label-groups.json +38 -0
- package/definitions/locale/en/labels.json +366 -0
- package/definitions/locale/en/proposed-label-groups.json +38 -0
- package/definitions/locale/en/proposed-labels.json +632 -0
- package/definitions/moderation-behaviors.d.ts +48 -0
- package/definitions/post-moderation-behaviors.json +879 -0
- package/definitions/profile-moderation-behaviors.json +447 -0
- package/definitions/proposed-labels.json +326 -0
- package/dist/client/index.d.ts +3 -0
- package/dist/client/lexicons.d.ts +27 -1
- package/dist/client/types/app/bsky/actor/updateProfile.d.ts +3 -10
- package/dist/client/types/app/bsky/{feed/getBookmarkedFeeds.d.ts → graph/getListBlocks.d.ts} +2 -2
- package/dist/client/types/app/bsky/graph/listblock.d.ts +8 -0
- package/dist/client/types/app/bsky/{feed/unbookmarkFeed.d.ts → graph/subscribeMuteList.d.ts} +1 -1
- package/dist/client/types/app/bsky/{feed/bookmarkFeed.d.ts → graph/unsubscribeMuteList.d.ts} +1 -1
- package/dist/{src/client/types/app/bsky/notification/updateSeen.d.ts → client/types/app/bsky/unspecced/applyLabels.d.ts} +2 -1
- package/dist/helpers/bsky.d.ts +20 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1401 -12
- package/dist/index.js.map +4 -4
- package/dist/mixins/bsky.d.ts +23 -0
- package/dist/moderation/accumulator.d.ts +14 -0
- package/dist/moderation/const/label-groups.d.ts +2 -0
- package/dist/moderation/const/labels.d.ts +2 -0
- package/dist/moderation/index.d.ts +44 -0
- package/dist/moderation/subjects/account.d.ts +3 -0
- package/dist/moderation/subjects/feed-generator.d.ts +2 -0
- package/dist/moderation/subjects/post.d.ts +2 -0
- package/dist/moderation/subjects/profile.d.ts +3 -0
- package/dist/moderation/subjects/quoted-post.d.ts +6 -0
- package/dist/moderation/subjects/user-list.d.ts +2 -0
- package/dist/moderation/types.d.ts +97 -0
- package/dist/moderation/util.d.ts +12 -0
- package/dist/rich-text/sanitize.d.ts +4 -0
- package/docs/labels.md +522 -0
- package/docs/moderation-behaviors/posts.md +1919 -0
- package/docs/moderation-behaviors/profiles.md +907 -0
- package/docs/moderation.md +144 -0
- package/package.json +6 -4
- package/scripts/code/label-groups.mjs +68 -0
- package/scripts/code/labels.mjs +68 -0
- package/scripts/docs/labels.mjs +164 -0
- package/scripts/docs/post-moderation-behaviors.mjs +122 -0
- package/scripts/docs/profile-moderation-behaviors.mjs +122 -0
- package/scripts/generate-code.mjs +4 -0
- package/scripts/generate-docs.mjs +5 -0
- package/src/client/index.ts +13 -0
- package/src/client/lexicons.ts +29 -3
- package/src/client/types/app/bsky/unspecced/applyLabels.ts +33 -0
- package/src/client/types/com/atproto/admin/enableAccountInvites.ts +1 -1
- package/src/client/types/com/atproto/moderation/defs.ts +1 -1
- package/src/index.ts +4 -0
- package/src/moderation/accumulator.ts +181 -0
- package/src/moderation/const/label-groups.ts +143 -0
- package/src/moderation/const/labels.ts +798 -0
- package/src/moderation/index.ts +343 -0
- package/src/moderation/subjects/account.ts +40 -0
- package/src/moderation/subjects/feed-generator.ts +13 -0
- package/src/moderation/subjects/post.ts +23 -0
- package/src/moderation/subjects/profile.ts +31 -0
- package/src/moderation/subjects/quoted-post.ts +62 -0
- package/src/moderation/subjects/user-list.ts +13 -0
- package/src/moderation/types.ts +141 -0
- package/src/moderation/util.ts +98 -0
- package/tests/post-moderation.test.ts +46 -0
- package/tests/profile-moderation.test.ts +46 -0
- package/tests/util/index.ts +176 -0
- package/tests/util/moderation-behavior.ts +180 -0
- package/dist/client/types/app/bsky/actor/searchActor.d.ts +0 -22
- package/dist/client/types/app/bsky/actor/searchActorTypeahead.d.ts +0 -20
- package/dist/client/types/com/atproto/admin/getInviteCodeUsage.d.ts +0 -29
- package/dist/client/types/com/atproto/repo/importRepo.d.ts +0 -19
- package/dist/client/types/com/atproto/repo/uploadRepo.d.ts +0 -19
- package/dist/client/types/com/atproto/server/getUserInviteCodes.d.ts +0 -31
- package/dist/src/client/index.d.ts +0 -462
- package/dist/src/client/lexicons.d.ts +0 -2910
- package/dist/src/client/schemas.d.ts +0 -17
- package/dist/src/client/types/app/bsky/actor/createScene.d.ts +0 -32
- package/dist/src/client/types/app/bsky/actor/getProfile.d.ts +0 -36
- package/dist/src/client/types/app/bsky/actor/getSuggestions.d.ts +0 -36
- package/dist/src/client/types/app/bsky/actor/profile.d.ts +0 -15
- package/dist/src/client/types/app/bsky/actor/ref.d.ts +0 -14
- package/dist/src/client/types/app/bsky/actor/search.d.ts +0 -32
- package/dist/src/client/types/app/bsky/actor/searchTypeahead.d.ts +0 -28
- package/dist/src/client/types/app/bsky/actor/updateProfile.d.ts +0 -48
- package/dist/src/client/types/app/bsky/badge.d.ts +0 -22
- package/dist/src/client/types/app/bsky/badgeAccept.d.ts +0 -11
- package/dist/src/client/types/app/bsky/badgeOffer.d.ts +0 -11
- package/dist/src/client/types/app/bsky/declaration.d.ts +0 -6
- package/dist/src/client/types/app/bsky/embed/external.d.ts +0 -26
- package/dist/src/client/types/app/bsky/embed/images.d.ts +0 -23
- package/dist/src/client/types/app/bsky/feed/embed.d.ts +0 -36
- package/dist/src/client/types/app/bsky/feed/feedViewPost.d.ts +0 -26
- package/dist/src/client/types/app/bsky/feed/getAuthorFeed.d.ts +0 -22
- package/dist/src/client/types/app/bsky/feed/getPostThread.d.ts +0 -43
- package/dist/src/client/types/app/bsky/feed/getRepostedBy.d.ts +0 -35
- package/dist/src/client/types/app/bsky/feed/getTimeline.d.ts +0 -22
- package/dist/src/client/types/app/bsky/feed/getVotes.d.ts +0 -33
- package/dist/src/client/types/app/bsky/feed/mediaEmbed.d.ts +0 -18
- package/dist/src/client/types/app/bsky/feed/post.d.ts +0 -54
- package/dist/src/client/types/app/bsky/feed/repost.d.ts +0 -6
- package/dist/src/client/types/app/bsky/feed/setVote.d.ts +0 -25
- package/dist/src/client/types/app/bsky/feed/trend.d.ts +0 -6
- package/dist/src/client/types/app/bsky/feed/vote.d.ts +0 -7
- package/dist/src/client/types/app/bsky/follow.d.ts +0 -9
- package/dist/src/client/types/app/bsky/getAuthorFeed.d.ts +0 -56
- package/dist/src/client/types/app/bsky/getBadgeMembers.d.ts +0 -29
- package/dist/src/client/types/app/bsky/getHomeFeed.d.ts +0 -56
- package/dist/src/client/types/app/bsky/getLikedBy.d.ts +0 -29
- package/dist/src/client/types/app/bsky/getNotificationCount.d.ts +0 -16
- package/dist/src/client/types/app/bsky/getNotifications.d.ts +0 -33
- package/dist/src/client/types/app/bsky/getPostThread.d.ts +0 -55
- package/dist/src/client/types/app/bsky/getProfile.d.ts +0 -26
- package/dist/src/client/types/app/bsky/getRepostedBy.d.ts +0 -29
- package/dist/src/client/types/app/bsky/getTimeline.d.ts +0 -56
- package/dist/src/client/types/app/bsky/getUserFollowers.d.ts +0 -31
- package/dist/src/client/types/app/bsky/getUserFollows.d.ts +0 -31
- package/dist/src/client/types/app/bsky/getUsersSearch.d.ts +0 -26
- package/dist/src/client/types/app/bsky/getUsersTypeahead.d.ts +0 -22
- package/dist/src/client/types/app/bsky/graph/assertCreator.d.ts +0 -1
- package/dist/src/client/types/app/bsky/graph/assertMember.d.ts +0 -1
- package/dist/src/client/types/app/bsky/graph/assertion.d.ts +0 -7
- package/dist/src/client/types/app/bsky/graph/confirmation.d.ts +0 -8
- package/dist/src/client/types/app/bsky/graph/follow.d.ts +0 -6
- package/dist/src/client/types/app/bsky/graph/getAssertions.d.ts +0 -43
- package/dist/src/client/types/app/bsky/graph/getFollowers.d.ts +0 -34
- package/dist/src/client/types/app/bsky/graph/getFollows.d.ts +0 -33
- package/dist/src/client/types/app/bsky/graph/getMembers.d.ts +0 -33
- package/dist/src/client/types/app/bsky/graph/getMemberships.d.ts +0 -33
- package/dist/src/client/types/app/bsky/invite.d.ts +0 -10
- package/dist/src/client/types/app/bsky/inviteAccept.d.ts +0 -14
- package/dist/src/client/types/app/bsky/like.d.ts +0 -10
- package/dist/src/client/types/app/bsky/mediaEmbed.d.ts +0 -15
- package/dist/src/client/types/app/bsky/notification/getCount.d.ts +0 -17
- package/dist/src/client/types/app/bsky/notification/list.d.ts +0 -32
- package/dist/src/client/types/app/bsky/post.d.ts +0 -23
- package/dist/src/client/types/app/bsky/postNotificationsSeen.d.ts +0 -20
- package/dist/src/client/types/app/bsky/profile.d.ts +0 -5
- package/dist/src/client/types/app/bsky/repost.d.ts +0 -10
- package/dist/src/client/types/app/bsky/system/actorScene.d.ts +0 -1
- package/dist/src/client/types/app/bsky/system/actorUser.d.ts +0 -1
- package/dist/src/client/types/app/bsky/system/declRef.d.ts +0 -5
- package/dist/src/client/types/app/bsky/system/declaration.d.ts +0 -4
- package/dist/src/client/types/app/bsky/updateProfile.d.ts +0 -23
- package/dist/src/client/types/com/atproto/account/create.d.ts +0 -41
- package/dist/src/client/types/com/atproto/account/createInviteCode.d.ts +0 -22
- package/dist/src/client/types/com/atproto/account/delete.d.ts +0 -13
- package/dist/src/client/types/com/atproto/account/get.d.ts +0 -12
- package/dist/src/client/types/com/atproto/account/requestPasswordReset.d.ts +0 -17
- package/dist/src/client/types/com/atproto/account/resetPassword.d.ts +0 -24
- package/dist/src/client/types/com/atproto/blob/upload.d.ts +0 -19
- package/dist/src/client/types/com/atproto/createAccount.d.ts +0 -40
- package/dist/src/client/types/com/atproto/createInviteCode.d.ts +0 -20
- package/dist/src/client/types/com/atproto/createSession.d.ts +0 -24
- package/dist/src/client/types/com/atproto/data/uploadFile.d.ts +0 -19
- package/dist/src/client/types/com/atproto/deleteAccount.d.ts +0 -20
- package/dist/src/client/types/com/atproto/deleteSession.d.ts +0 -17
- package/dist/src/client/types/com/atproto/getAccount.d.ts +0 -16
- package/dist/src/client/types/com/atproto/getAccountsConfig.d.ts +0 -17
- package/dist/src/client/types/com/atproto/getSession.d.ts +0 -17
- package/dist/src/client/types/com/atproto/handle/resolve.d.ts +0 -18
- package/dist/src/client/types/com/atproto/refreshSession.d.ts +0 -20
- package/dist/src/client/types/com/atproto/repo/batchWrite.d.ts +0 -39
- package/dist/src/client/types/com/atproto/repo/createRecord.d.ts +0 -26
- package/dist/src/client/types/com/atproto/repo/deleteRecord.d.ts +0 -19
- package/dist/src/client/types/com/atproto/repo/describe.d.ts +0 -22
- package/dist/src/client/types/com/atproto/repo/getRecord.d.ts +0 -23
- package/dist/src/client/types/com/atproto/repo/listRecords.d.ts +0 -30
- package/dist/src/client/types/com/atproto/repo/putRecord.d.ts +0 -27
- package/dist/src/client/types/com/atproto/repo/strongRef.d.ts +0 -5
- package/dist/src/client/types/com/atproto/repoBatchWrite.d.ts +0 -36
- package/dist/src/client/types/com/atproto/repoCreateRecord.d.ts +0 -24
- package/dist/src/client/types/com/atproto/repoDeleteRecord.d.ts +0 -18
- package/dist/src/client/types/com/atproto/repoDescribe.d.ts +0 -21
- package/dist/src/client/types/com/atproto/repoGetRecord.d.ts +0 -22
- package/dist/src/client/types/com/atproto/repoListRecords.d.ts +0 -27
- package/dist/src/client/types/com/atproto/repoPutRecord.d.ts +0 -25
- package/dist/src/client/types/com/atproto/requestAccountPasswordReset.d.ts +0 -19
- package/dist/src/client/types/com/atproto/resetAccountPassword.d.ts +0 -26
- package/dist/src/client/types/com/atproto/resolveHandle.d.ts +0 -17
- package/dist/src/client/types/com/atproto/resolveName.d.ts +0 -17
- package/dist/src/client/types/com/atproto/server/getAccountsConfig.d.ts +0 -24
- package/dist/src/client/types/com/atproto/session/create.d.ts +0 -26
- package/dist/src/client/types/com/atproto/session/delete.d.ts +0 -13
- package/dist/src/client/types/com/atproto/session/get.d.ts +0 -18
- package/dist/src/client/types/com/atproto/session/refresh.d.ts +0 -21
- package/dist/src/client/types/com/atproto/sync/getRepo.d.ts +0 -15
- package/dist/src/client/types/com/atproto/sync/getRoot.d.ts +0 -18
- package/dist/src/client/types/com/atproto/sync/updateRepo.d.ts +0 -15
- package/dist/src/client/types/com/atproto/syncGetRepo.d.ts +0 -15
- package/dist/src/client/types/com/atproto/syncGetRoot.d.ts +0 -17
- package/dist/src/client/types/com/atproto/syncUpdateRepo.d.ts +0 -15
- package/dist/src/index.d.ts +0 -4
- package/dist/src/schemas.d.ts +0 -19
- package/dist/src/session.d.ts +0 -42
- package/dist/src/types/app/bsky/acceptedBadge.d.ts +0 -10
- package/dist/src/types/app/bsky/badge.d.ts +0 -22
- package/dist/src/types/app/bsky/badgeAccept.d.ts +0 -11
- package/dist/src/types/app/bsky/badgeOffer.d.ts +0 -11
- package/dist/src/types/app/bsky/declaration.d.ts +0 -6
- package/dist/src/types/app/bsky/follow.d.ts +0 -9
- package/dist/src/types/app/bsky/getAuthorFeed.d.ts +0 -56
- package/dist/src/types/app/bsky/getBadgeMembers.d.ts +0 -29
- package/dist/src/types/app/bsky/getHomeFeed.d.ts +0 -56
- package/dist/src/types/app/bsky/getLikedBy.d.ts +0 -29
- package/dist/src/types/app/bsky/getNotificationCount.d.ts +0 -16
- package/dist/src/types/app/bsky/getNotifications.d.ts +0 -33
- package/dist/src/types/app/bsky/getPostThread.d.ts +0 -55
- package/dist/src/types/app/bsky/getProfile.d.ts +0 -42
- package/dist/src/types/app/bsky/getRepostedBy.d.ts +0 -29
- package/dist/src/types/app/bsky/getUserFollowers.d.ts +0 -31
- package/dist/src/types/app/bsky/getUserFollows.d.ts +0 -31
- package/dist/src/types/app/bsky/getUsersSearch.d.ts +0 -26
- package/dist/src/types/app/bsky/getUsersTypeahead.d.ts +0 -22
- package/dist/src/types/app/bsky/invite.d.ts +0 -10
- package/dist/src/types/app/bsky/inviteAccept.d.ts +0 -14
- package/dist/src/types/app/bsky/like.d.ts +0 -10
- package/dist/src/types/app/bsky/mediaEmbed.d.ts +0 -15
- package/dist/src/types/app/bsky/post.d.ts +0 -23
- package/dist/src/types/app/bsky/postNotificationsSeen.d.ts +0 -19
- package/dist/src/types/app/bsky/profile.d.ts +0 -11
- package/dist/src/types/app/bsky/repost.d.ts +0 -10
- package/dist/src/types/app/bsky/updateProfile.d.ts +0 -27
- package/dist/src/types/com/atproto/createAccount.d.ts +0 -39
- package/dist/src/types/com/atproto/createInviteCode.d.ts +0 -19
- package/dist/src/types/com/atproto/createSession.d.ts +0 -23
- package/dist/src/types/com/atproto/deleteAccount.d.ts +0 -19
- package/dist/src/types/com/atproto/deleteSession.d.ts +0 -16
- package/dist/src/types/com/atproto/getAccount.d.ts +0 -19
- package/dist/src/types/com/atproto/getAccountsConfig.d.ts +0 -17
- package/dist/src/types/com/atproto/getSession.d.ts +0 -17
- package/dist/src/types/com/atproto/refreshSession.d.ts +0 -19
- package/dist/src/types/com/atproto/repoBatchWrite.d.ts +0 -35
- package/dist/src/types/com/atproto/repoCreateRecord.d.ts +0 -23
- package/dist/src/types/com/atproto/repoDeleteRecord.d.ts +0 -15
- package/dist/src/types/com/atproto/repoDescribe.d.ts +0 -21
- package/dist/src/types/com/atproto/repoGetRecord.d.ts +0 -22
- package/dist/src/types/com/atproto/repoListRecords.d.ts +0 -27
- package/dist/src/types/com/atproto/repoPutRecord.d.ts +0 -24
- package/dist/src/types/com/atproto/requestAccountPasswordReset.d.ts +0 -18
- package/dist/src/types/com/atproto/resetAccountPassword.d.ts +0 -25
- package/dist/src/types/com/atproto/resolveName.d.ts +0 -17
- package/dist/src/types/com/atproto/syncGetRepo.d.ts +0 -15
- package/dist/src/types/com/atproto/syncGetRoot.d.ts +0 -17
- package/dist/src/types/com/atproto/syncUpdateRepo.d.ts +0 -14
- package/dist/src/types/todo/adx/createAccount.d.ts +0 -36
- package/dist/src/types/todo/adx/createInviteCode.d.ts +0 -19
- package/dist/src/types/todo/adx/createSession.d.ts +0 -22
- package/dist/src/types/todo/adx/deleteAccount.d.ts +0 -19
- package/dist/src/types/todo/adx/deleteSession.d.ts +0 -19
- package/dist/src/types/todo/adx/getAccount.d.ts +0 -19
- package/dist/src/types/todo/adx/getAccountsConfig.d.ts +0 -17
- package/dist/src/types/todo/adx/getSession.d.ts +0 -17
- package/dist/src/types/todo/adx/repoBatchWrite.d.ts +0 -34
- package/dist/src/types/todo/adx/repoCreateRecord.d.ts +0 -22
- package/dist/src/types/todo/adx/repoDeleteRecord.d.ts +0 -15
- package/dist/src/types/todo/adx/repoDescribe.d.ts +0 -21
- package/dist/src/types/todo/adx/repoGetRecord.d.ts +0 -20
- package/dist/src/types/todo/adx/repoListRecords.d.ts +0 -25
- package/dist/src/types/todo/adx/repoPutRecord.d.ts +0 -23
- package/dist/src/types/todo/adx/requestAccountPasswordReset.d.ts +0 -18
- package/dist/src/types/todo/adx/resetAccountPassword.d.ts +0 -25
- package/dist/src/types/todo/adx/resolveName.d.ts +0 -17
- package/dist/src/types/todo/adx/syncGetRepo.d.ts +0 -15
- package/dist/src/types/todo/adx/syncGetRoot.d.ts +0 -17
- package/dist/src/types/todo/adx/syncUpdateRepo.d.ts +0 -14
- package/dist/src/types/todo/social/badge.d.ts +0 -23
- package/dist/src/types/todo/social/follow.d.ts +0 -5
- package/dist/src/types/todo/social/getAuthorFeed.d.ts +0 -55
- package/dist/src/types/todo/social/getFeed.d.ts +0 -55
- package/dist/src/types/todo/social/getHomeFeed.d.ts +0 -55
- package/dist/src/types/todo/social/getLikedBy.d.ts +0 -26
- package/dist/src/types/todo/social/getNotificationCount.d.ts +0 -16
- package/dist/src/types/todo/social/getNotifications.d.ts +0 -31
- package/dist/src/types/todo/social/getPostThread.d.ts +0 -54
- package/dist/src/types/todo/social/getProfile.d.ts +0 -40
- package/dist/src/types/todo/social/getRepostedBy.d.ts +0 -26
- package/dist/src/types/todo/social/getUserFollowers.d.ts +0 -30
- package/dist/src/types/todo/social/getUserFollows.d.ts +0 -30
- package/dist/src/types/todo/social/like.d.ts +0 -5
- package/dist/src/types/todo/social/mediaEmbed.d.ts +0 -15
- package/dist/src/types/todo/social/post.d.ts +0 -18
- package/dist/src/types/todo/social/postNotificationsSeen.d.ts +0 -19
- package/dist/src/types/todo/social/profile.d.ts +0 -10
- package/dist/src/types/todo/social/repost.d.ts +0 -5
- package/dist/tsconfig.build.tsbuildinfo +0 -1
- package/tests/_util.ts +0 -26
- package/tsconfig.build.tsbuildinfo +0 -1
|
@@ -0,0 +1,632 @@
|
|
|
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
|
+
"nudity-nonconsensual": {
|
|
45
|
+
"settings": {
|
|
46
|
+
"name": "Nonconsensual Nudity",
|
|
47
|
+
"description": "Nudity or sexual material which has been identified as being shared without the consent of the subjects."
|
|
48
|
+
},
|
|
49
|
+
"account": {
|
|
50
|
+
"name": "Nonconsensual Nudity",
|
|
51
|
+
"description": "This account has triggered the Nonconsensual Nudity Review systems. This may be in error, so please do not jump to conclusions while the account is under review. This warning will be lifted if the review was triggered incorrectly. Otherwise, the account will be removed from the network."
|
|
52
|
+
},
|
|
53
|
+
"content": {
|
|
54
|
+
"name": "Nonconsensual Nudity",
|
|
55
|
+
"description": "This content has triggered the Nonconsensual Nudity Review systems. This may be in error, so please do not jump to conclusions while the account is under review. This warning will be lifted if the review was triggered incorrectly. Otherwise, the account will be removed from the network."
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"dmca-violation": {
|
|
59
|
+
"settings": {
|
|
60
|
+
"name": "Copyright Violation",
|
|
61
|
+
"description": "The content has received a DMCA takedown request."
|
|
62
|
+
},
|
|
63
|
+
"account": {
|
|
64
|
+
"name": "Copyright Violation",
|
|
65
|
+
"description": "This account has received a DMCA takedown request. It will be restored if the concerns can be resolved."
|
|
66
|
+
},
|
|
67
|
+
"content": {
|
|
68
|
+
"name": "Copyright Violation",
|
|
69
|
+
"description": "This content has received a DMCA takedown request. It will be restored if the concerns can be resolved."
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"doxxing": {
|
|
73
|
+
"settings": {
|
|
74
|
+
"name": "Doxxing",
|
|
75
|
+
"description": "Information that reveals private information about someone which has been shared without the consent of the subject."
|
|
76
|
+
},
|
|
77
|
+
"account": {
|
|
78
|
+
"name": "Doxxing",
|
|
79
|
+
"description": "This account has been reported to publish private information about someone without their consent. This report is currently under review."
|
|
80
|
+
},
|
|
81
|
+
"content": {
|
|
82
|
+
"name": "Doxxing",
|
|
83
|
+
"description": "This content has been reported to include private information about someone without their consent."
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"porn": {
|
|
87
|
+
"settings": {
|
|
88
|
+
"name": "Pornography",
|
|
89
|
+
"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)."
|
|
90
|
+
},
|
|
91
|
+
"account": {
|
|
92
|
+
"name": "Pornography",
|
|
93
|
+
"description": "This account contains imagery of full-frontal nudity or explicit sexual activity."
|
|
94
|
+
},
|
|
95
|
+
"content": {
|
|
96
|
+
"name": "Pornography",
|
|
97
|
+
"description": "This content contains imagery of full-frontal nudity or explicit sexual activity."
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"sexual": {
|
|
101
|
+
"settings": {
|
|
102
|
+
"name": "Sexually Suggestive",
|
|
103
|
+
"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."
|
|
104
|
+
},
|
|
105
|
+
"account": {
|
|
106
|
+
"name": "Sexually Suggestive",
|
|
107
|
+
"description": "This account contains imagery which is sexually suggestive. Common examples include selfies in underwear or in partial undress."
|
|
108
|
+
},
|
|
109
|
+
"content": {
|
|
110
|
+
"name": "Sexually Suggestive",
|
|
111
|
+
"description": "This content contains imagery which is sexually suggestive. Common examples include selfies in underwear or in partial undress."
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
"nudity": {
|
|
115
|
+
"settings": {
|
|
116
|
+
"name": "Nudity",
|
|
117
|
+
"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."
|
|
118
|
+
},
|
|
119
|
+
"account": {
|
|
120
|
+
"name": "Nudity",
|
|
121
|
+
"description": "This account contains imagery which portrays nudity in a non-sexual or artistic setting."
|
|
122
|
+
},
|
|
123
|
+
"content": {
|
|
124
|
+
"name": "Nudity",
|
|
125
|
+
"description": "This content contains imagery which portrays nudity in a non-sexual or artistic setting."
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"nsfl": {
|
|
129
|
+
"settings": {
|
|
130
|
+
"name": "NSFL",
|
|
131
|
+
"description": "\"Not Suitable For Life.\" This includes graphic images like the infamous \"goatse\" (don't look it up)."
|
|
132
|
+
},
|
|
133
|
+
"account": {
|
|
134
|
+
"name": "Graphic Imagery (NSFL)",
|
|
135
|
+
"description": "This account contains graphic images which are often referred to as \"Not Suitable For Life.\""
|
|
136
|
+
},
|
|
137
|
+
"content": {
|
|
138
|
+
"name": "Graphic Imagery (NSFL)",
|
|
139
|
+
"description": "This content contains graphic images which are often referred to as \"Not Suitable For Life.\""
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"corpse": {
|
|
143
|
+
"settings": {
|
|
144
|
+
"name": "Corpse",
|
|
145
|
+
"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."
|
|
146
|
+
},
|
|
147
|
+
"account": {
|
|
148
|
+
"name": "Graphic Imagery (Corpse)",
|
|
149
|
+
"description": "This account contains images of a dead human body in any context. Includes war images, hanging, funeral caskets."
|
|
150
|
+
},
|
|
151
|
+
"content": {
|
|
152
|
+
"name": "Graphic Imagery (Corpse)",
|
|
153
|
+
"description": "This content contains images of a dead human body in any context. Includes war images, hanging, funeral caskets."
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"gore": {
|
|
157
|
+
"settings": {
|
|
158
|
+
"name": "Gore",
|
|
159
|
+
"description": "Intended for shocking images, typically involving blood or visible wounds."
|
|
160
|
+
},
|
|
161
|
+
"account": {
|
|
162
|
+
"name": "Graphic Imagery (Gore)",
|
|
163
|
+
"description": "This account contains shocking images involving blood or visible wounds."
|
|
164
|
+
},
|
|
165
|
+
"content": {
|
|
166
|
+
"name": "Graphic Imagery (Gore)",
|
|
167
|
+
"description": "This content contains shocking images involving blood or visible wounds."
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"torture": {
|
|
171
|
+
"settings": {
|
|
172
|
+
"name": "Torture",
|
|
173
|
+
"description": "Depictions of torture of a human or animal (animal cruelty)."
|
|
174
|
+
},
|
|
175
|
+
"account": {
|
|
176
|
+
"name": "Graphic Imagery (Torture)",
|
|
177
|
+
"description": "This account contains depictions of torture of a human or animal."
|
|
178
|
+
},
|
|
179
|
+
"content": {
|
|
180
|
+
"name": "Graphic Imagery (Torture)",
|
|
181
|
+
"description": "This content contains depictions of torture of a human or animal."
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
"self-harm": {
|
|
185
|
+
"settings": {
|
|
186
|
+
"name": "Self-Harm",
|
|
187
|
+
"description": "A visual depiction (photo or figurative) of cutting, suicide, or similar."
|
|
188
|
+
},
|
|
189
|
+
"account": {
|
|
190
|
+
"name": "Graphic Imagery (Self-Harm)",
|
|
191
|
+
"description": "This account includes depictions of cutting, suicide, or other forms of self-harm."
|
|
192
|
+
},
|
|
193
|
+
"content": {
|
|
194
|
+
"name": "Graphic Imagery (Self-Harm)",
|
|
195
|
+
"description": "This content includes depictions of cutting, suicide, or other forms of self-harm."
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
"intolerant-race": {
|
|
199
|
+
"settings": {
|
|
200
|
+
"name": "Racial Intolerance",
|
|
201
|
+
"description": "Hateful or intolerant content related to race."
|
|
202
|
+
},
|
|
203
|
+
"account": {
|
|
204
|
+
"name": "Intolerance (Racial)",
|
|
205
|
+
"description": "This account includes hateful or intolerant content related to race."
|
|
206
|
+
},
|
|
207
|
+
"content": {
|
|
208
|
+
"name": "Intolerance (Racial)",
|
|
209
|
+
"description": "This content includes hateful or intolerant views related to race."
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"intolerant-gender": {
|
|
213
|
+
"settings": {
|
|
214
|
+
"name": "Gender Intolerance",
|
|
215
|
+
"description": "Hateful or intolerant content related to gender or gender identity."
|
|
216
|
+
},
|
|
217
|
+
"account": {
|
|
218
|
+
"name": "Intolerance (Gender)",
|
|
219
|
+
"description": "This account includes hateful or intolerant content related to gender or gender identity."
|
|
220
|
+
},
|
|
221
|
+
"content": {
|
|
222
|
+
"name": "Intolerance (Gender)",
|
|
223
|
+
"description": "This content includes hateful or intolerant views related to gender or gender identity."
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
"intolerant-sexual-orientation": {
|
|
227
|
+
"settings": {
|
|
228
|
+
"name": "Sexual Orientation Intolerance",
|
|
229
|
+
"description": "Hateful or intolerant content related to sexual preferences."
|
|
230
|
+
},
|
|
231
|
+
"account": {
|
|
232
|
+
"name": "Intolerance (Orientation)",
|
|
233
|
+
"description": "This account includes hateful or intolerant content related to sexual preferences."
|
|
234
|
+
},
|
|
235
|
+
"content": {
|
|
236
|
+
"name": "Intolerance (Orientation)",
|
|
237
|
+
"description": "This content includes hateful or intolerant views related to sexual preferences."
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
"intolerant-religion": {
|
|
241
|
+
"settings": {
|
|
242
|
+
"name": "Religious Intolerance",
|
|
243
|
+
"description": "Hateful or intolerant content related to religious views or practices."
|
|
244
|
+
},
|
|
245
|
+
"account": {
|
|
246
|
+
"name": "Intolerance (Religious)",
|
|
247
|
+
"description": "This account includes hateful or intolerant content related to religious views or practices."
|
|
248
|
+
},
|
|
249
|
+
"content": {
|
|
250
|
+
"name": "Intolerance (Religious)",
|
|
251
|
+
"description": "This content includes hateful or intolerant views related to religious views or practices."
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
"intolerant": {
|
|
255
|
+
"settings": {
|
|
256
|
+
"name": "Intolerance",
|
|
257
|
+
"description": "A catchall for hateful or intolerant content which is not covered elsewhere."
|
|
258
|
+
},
|
|
259
|
+
"account": {
|
|
260
|
+
"name": "Intolerance",
|
|
261
|
+
"description": "This account includes hateful or intolerant content."
|
|
262
|
+
},
|
|
263
|
+
"content": {
|
|
264
|
+
"name": "Intolerance",
|
|
265
|
+
"description": "This content includes hateful or intolerant views."
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
"icon-intolerant": {
|
|
269
|
+
"settings": {
|
|
270
|
+
"name": "Intolerant Iconography",
|
|
271
|
+
"description": "Visual imagery associated with a hate group, such as the KKK or Nazi, in any context (supportive, critical, documentary, etc)."
|
|
272
|
+
},
|
|
273
|
+
"account": {
|
|
274
|
+
"name": "Intolerant Iconography",
|
|
275
|
+
"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."
|
|
276
|
+
},
|
|
277
|
+
"content": {
|
|
278
|
+
"name": "Intolerant Iconography",
|
|
279
|
+
"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."
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
"trolling": {
|
|
283
|
+
"settings": {
|
|
284
|
+
"name": "Trolling",
|
|
285
|
+
"description": "Content which is intended to produce a negative reaction from other users."
|
|
286
|
+
},
|
|
287
|
+
"account": {
|
|
288
|
+
"name": "Trolling",
|
|
289
|
+
"description": "The moderators believe this account has published content intended to inflame users."
|
|
290
|
+
},
|
|
291
|
+
"content": {
|
|
292
|
+
"name": "Trolling",
|
|
293
|
+
"description": "The moderators believe this content is intended to inflame users."
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"harassment": {
|
|
297
|
+
"settings": {
|
|
298
|
+
"name": "Harassment",
|
|
299
|
+
"description": "Repeated posts directed at a user or a group of users with the intent to produce a negative reaction."
|
|
300
|
+
},
|
|
301
|
+
"account": {
|
|
302
|
+
"name": "Harassment",
|
|
303
|
+
"description": "The moderators believe this account has published content directed at a user or a group of users with the intent to inflame."
|
|
304
|
+
},
|
|
305
|
+
"content": {
|
|
306
|
+
"name": "Harassment",
|
|
307
|
+
"description": "The moderators believe this content is directed at a user or a group of users with the intent to inflame."
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
"bullying": {
|
|
311
|
+
"settings": {
|
|
312
|
+
"name": "Bullying",
|
|
313
|
+
"description": "Statements or imagery published with the intent to bully, humiliate, or degrade."
|
|
314
|
+
},
|
|
315
|
+
"account": {
|
|
316
|
+
"name": "Bullying",
|
|
317
|
+
"description": "The moderators believe this account has published statements or imagery published with the intent to bully, humiliate, or degrade others."
|
|
318
|
+
},
|
|
319
|
+
"content": {
|
|
320
|
+
"name": "Bullying",
|
|
321
|
+
"description": "The moderators believe this content was published with the intent to bully, humiliate, or degrade others."
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
"threat": {
|
|
325
|
+
"settings": {
|
|
326
|
+
"name": "Threats",
|
|
327
|
+
"description": "Statements or imagery published with the intent to threaten, intimidate, or harm."
|
|
328
|
+
},
|
|
329
|
+
"account": {
|
|
330
|
+
"name": "Threats",
|
|
331
|
+
"description": "The moderators believe this account has published statements or imagery with the intent to threaten, intimidate, or harm others."
|
|
332
|
+
},
|
|
333
|
+
"content": {
|
|
334
|
+
"name": "Threats",
|
|
335
|
+
"description": "The moderators believe this content was published with the intent to threaten, intimidate, or harm others."
|
|
336
|
+
}
|
|
337
|
+
},
|
|
338
|
+
"disgusting": {
|
|
339
|
+
"settings": {
|
|
340
|
+
"name": "Disgusting",
|
|
341
|
+
"description": "Content which is gross, like an image of poop."
|
|
342
|
+
},
|
|
343
|
+
"account": {
|
|
344
|
+
"name": "Warning: Disgusting",
|
|
345
|
+
"description": "The moderators believe this account contains content which users may find disgusting."
|
|
346
|
+
},
|
|
347
|
+
"content": {
|
|
348
|
+
"name": "Warning: Disgusting",
|
|
349
|
+
"description": "The moderators believe users may find this content disgusting."
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
"upsetting": {
|
|
353
|
+
"settings": {
|
|
354
|
+
"name": "Upsetting",
|
|
355
|
+
"description": "Content which is upsetting, like a video of an accident."
|
|
356
|
+
},
|
|
357
|
+
"account": {
|
|
358
|
+
"name": "Warning: Upsetting",
|
|
359
|
+
"description": "The moderators believe this account contains content which users may find upsetting."
|
|
360
|
+
},
|
|
361
|
+
"content": {
|
|
362
|
+
"name": "Warning: Upsetting",
|
|
363
|
+
"description": "The moderators believe users may find this content upsetting."
|
|
364
|
+
}
|
|
365
|
+
},
|
|
366
|
+
"profane": {
|
|
367
|
+
"settings": {
|
|
368
|
+
"name": "Profane",
|
|
369
|
+
"description": "Content which includes excessive swearing or violates common sensibilities."
|
|
370
|
+
},
|
|
371
|
+
"account": {
|
|
372
|
+
"name": "Warning: Profane",
|
|
373
|
+
"description": "The moderators believe this account contains content which users may find profane."
|
|
374
|
+
},
|
|
375
|
+
"content": {
|
|
376
|
+
"name": "Warning: Profane",
|
|
377
|
+
"description": "The moderators believe users may find this content profane."
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
"politics": {
|
|
381
|
+
"settings": {
|
|
382
|
+
"name": "Politics",
|
|
383
|
+
"description": "Anything that discusses politics or political discourse."
|
|
384
|
+
},
|
|
385
|
+
"account": {
|
|
386
|
+
"name": "Warning: Politics",
|
|
387
|
+
"description": "This is not a violation. The moderators believe this account discusses politics or political discourse. This warning is only provided for users who wish to reduce the amount of politics in their experience."
|
|
388
|
+
},
|
|
389
|
+
"content": {
|
|
390
|
+
"name": "Warning: Politics",
|
|
391
|
+
"description": "This is not a violation. The moderators believe this content discusses politics or political discourse. This warning is only provided for users who wish to reduce the amount of politics in their experience."
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
"troubling": {
|
|
395
|
+
"settings": {
|
|
396
|
+
"name": "Troubling",
|
|
397
|
+
"description": "Content which can be difficult to process such as bad news."
|
|
398
|
+
},
|
|
399
|
+
"account": {
|
|
400
|
+
"name": "Warning: Troubling",
|
|
401
|
+
"description": "This is not a violation. The moderators believe this account discusses topics which can be difficult to process. This warning is only provided for users who wish to reduce the amount of troubling discussion in their experience."
|
|
402
|
+
},
|
|
403
|
+
"content": {
|
|
404
|
+
"name": "Warning: Troubling",
|
|
405
|
+
"description": "This is not a violation. The moderators believe this content discusses topics which can be difficult to process. This warning is only provided for users who wish to reduce the amount of troubling discussion in their experience."
|
|
406
|
+
}
|
|
407
|
+
},
|
|
408
|
+
"negative": {
|
|
409
|
+
"settings": {
|
|
410
|
+
"name": "Negative",
|
|
411
|
+
"description": "Statements which are critical, pessimistic, or generally negative."
|
|
412
|
+
},
|
|
413
|
+
"account": {
|
|
414
|
+
"name": "Warning: Negative",
|
|
415
|
+
"description": "This is not a violation. The moderators believe this account publishes statements which are critical, pessimistic, or generally negative. This warning is only provided for users who wish to reduce the amount of negativity in their experience."
|
|
416
|
+
},
|
|
417
|
+
"content": {
|
|
418
|
+
"name": "Warning: Negative",
|
|
419
|
+
"description": "This is not a violation. The moderators believe this content is critical, pessimistic, or generally negative. This warning is only provided for users who wish to reduce the amount of negativity in their experience."
|
|
420
|
+
}
|
|
421
|
+
},
|
|
422
|
+
"discourse": {
|
|
423
|
+
"settings": {
|
|
424
|
+
"name": "Discourse",
|
|
425
|
+
"description": "Drama, typically about some topic which is currently active in the network."
|
|
426
|
+
},
|
|
427
|
+
"account": {
|
|
428
|
+
"name": "Warning: Discourse",
|
|
429
|
+
"description": "This is not a violation. The moderators believe this account publishes statements regarding in-network drama or disputes (aka \"discourse\"). This warning is only provided for users who wish to reduce the amount of negativity in their experience."
|
|
430
|
+
},
|
|
431
|
+
"content": {
|
|
432
|
+
"name": "Warning: Discourse",
|
|
433
|
+
"description": "This is not a violation. The moderators believe this content relates to in-network drama or disputes (aka \"discourse\"). This warning is only provided for users who wish to reduce the amount of negativity in their experience."
|
|
434
|
+
}
|
|
435
|
+
},
|
|
436
|
+
"spoiler": {
|
|
437
|
+
"settings": {
|
|
438
|
+
"name": "Spoiler",
|
|
439
|
+
"description": "Discussion about film, TV, etc which gives away plot points."
|
|
440
|
+
},
|
|
441
|
+
"account": {
|
|
442
|
+
"name": "Spoiler Warning",
|
|
443
|
+
"description": "This account contains discussion about film, TV, etc which gives away plot points."
|
|
444
|
+
},
|
|
445
|
+
"content": {
|
|
446
|
+
"name": "Spoiler Warning",
|
|
447
|
+
"description": "This content contains discussion about film, TV, etc which gives away plot points."
|
|
448
|
+
}
|
|
449
|
+
},
|
|
450
|
+
"spam": {
|
|
451
|
+
"settings": {
|
|
452
|
+
"name": "Spam",
|
|
453
|
+
"description": "Repeat, low-quality messages which are clearly not designed to add to a conversation or space."
|
|
454
|
+
},
|
|
455
|
+
"account": {
|
|
456
|
+
"name": "Spam",
|
|
457
|
+
"description": "This account publishes repeat, low-quality messages which are clearly not designed to add to a conversation or space."
|
|
458
|
+
},
|
|
459
|
+
"content": {
|
|
460
|
+
"name": "Spam",
|
|
461
|
+
"description": "This content is a part of repeat, low-quality messages which are clearly not designed to add to a conversation or space."
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
"clickbait": {
|
|
465
|
+
"settings": {
|
|
466
|
+
"name": "Clickbait",
|
|
467
|
+
"description": "Low-quality content that's designed to get users to open an external link by appearing more engaging than it is."
|
|
468
|
+
},
|
|
469
|
+
"account": {
|
|
470
|
+
"name": "Clickbait",
|
|
471
|
+
"description": "The moderators believe this account publishes low-quality content that's designed to get users to open an external link by appearing more engaging than it is."
|
|
472
|
+
},
|
|
473
|
+
"content": {
|
|
474
|
+
"name": "Clickbait",
|
|
475
|
+
"description": "The moderators believe this is low-quality content that's designed to get users to open an external link by appearing more engaging than it is."
|
|
476
|
+
}
|
|
477
|
+
},
|
|
478
|
+
"shill": {
|
|
479
|
+
"settings": {
|
|
480
|
+
"name": "Shilling",
|
|
481
|
+
"description": "Over-enthusiastic promotion of a technology, product, or service, especially when there is a financial conflict of interest."
|
|
482
|
+
},
|
|
483
|
+
"account": {
|
|
484
|
+
"name": "Shill",
|
|
485
|
+
"description": "The moderators believe this account participates in over-enthusiastic promotion of a technology, product, or service."
|
|
486
|
+
},
|
|
487
|
+
"content": {
|
|
488
|
+
"name": "Shilling",
|
|
489
|
+
"description": "The moderators believe this content is in over-enthusiastic promotion of a technology, product, or service."
|
|
490
|
+
}
|
|
491
|
+
},
|
|
492
|
+
"promotion": {
|
|
493
|
+
"settings": {
|
|
494
|
+
"name": "Promotion",
|
|
495
|
+
"description": "Advertising or blunt marketing of a commercial service or product."
|
|
496
|
+
},
|
|
497
|
+
"account": {
|
|
498
|
+
"name": "Promotion",
|
|
499
|
+
"description": "The moderators believe this account engages in advertising or blunt marketing of a commercial service or product."
|
|
500
|
+
},
|
|
501
|
+
"content": {
|
|
502
|
+
"name": "Promotion",
|
|
503
|
+
"description": "The moderators believe this content is advertising or blunt marketing of a commercial service or product."
|
|
504
|
+
}
|
|
505
|
+
},
|
|
506
|
+
"account-security": {
|
|
507
|
+
"settings": {
|
|
508
|
+
"name": "Security Concerns",
|
|
509
|
+
"description": "Content designed to hijack user accounts such as a phishing attack."
|
|
510
|
+
},
|
|
511
|
+
"account": {
|
|
512
|
+
"name": "Security Warning",
|
|
513
|
+
"description": "This account has published content designed to hijack user accounts such as a phishing attack."
|
|
514
|
+
},
|
|
515
|
+
"content": {
|
|
516
|
+
"name": "Security Warning",
|
|
517
|
+
"description": "This content is designed to hijack user accounts such as a phishing attack."
|
|
518
|
+
}
|
|
519
|
+
},
|
|
520
|
+
"net-abuse": {
|
|
521
|
+
"settings": {
|
|
522
|
+
"name": "Network Attacks",
|
|
523
|
+
"description": "Content designed to attack network systems such as denial-of-service attacks."
|
|
524
|
+
},
|
|
525
|
+
"account": {
|
|
526
|
+
"name": "Network Attack Warning",
|
|
527
|
+
"description": "This account has published content designed to attack network systems such as denial-of-service attacks."
|
|
528
|
+
},
|
|
529
|
+
"content": {
|
|
530
|
+
"name": "Network Attack Warning",
|
|
531
|
+
"description": "This content is designed to attack network systems such as denial-of-service attacks."
|
|
532
|
+
}
|
|
533
|
+
},
|
|
534
|
+
"impersonation": {
|
|
535
|
+
"settings": {
|
|
536
|
+
"name": "Impersonation",
|
|
537
|
+
"description": "Accounts which falsely assert some identity."
|
|
538
|
+
},
|
|
539
|
+
"account": {
|
|
540
|
+
"name": "Impersonation Warning",
|
|
541
|
+
"description": "The moderators believe this account is lying about their identity."
|
|
542
|
+
},
|
|
543
|
+
"content": {
|
|
544
|
+
"name": "Impersonation Warning",
|
|
545
|
+
"description": "The moderators believe this account is lying about their identity."
|
|
546
|
+
}
|
|
547
|
+
},
|
|
548
|
+
"scam": {
|
|
549
|
+
"settings": {
|
|
550
|
+
"name": "Scam",
|
|
551
|
+
"description": "Fraudulent content."
|
|
552
|
+
},
|
|
553
|
+
"account": {
|
|
554
|
+
"name": "Scam Warning",
|
|
555
|
+
"description": "The moderators believe this account publishes fraudulent content."
|
|
556
|
+
},
|
|
557
|
+
"content": {
|
|
558
|
+
"name": "Scam Warning",
|
|
559
|
+
"description": "The moderators believe this is fraudulent content."
|
|
560
|
+
}
|
|
561
|
+
},
|
|
562
|
+
"misinformation": {
|
|
563
|
+
"settings": {
|
|
564
|
+
"name": "Misinformation",
|
|
565
|
+
"description": "Lies with the intent to deceive."
|
|
566
|
+
},
|
|
567
|
+
"account": {
|
|
568
|
+
"name": "Misinformation Warning",
|
|
569
|
+
"description": "The moderators believe this account has published lies with the intent to deceive."
|
|
570
|
+
},
|
|
571
|
+
"content": {
|
|
572
|
+
"name": "Misinformation Warning",
|
|
573
|
+
"description": "The moderators believe this content contains lies with the intent to deceive."
|
|
574
|
+
}
|
|
575
|
+
},
|
|
576
|
+
"unverified": {
|
|
577
|
+
"settings": {
|
|
578
|
+
"name": "Unverified Claims",
|
|
579
|
+
"description": "Assertions which have not been verified by a trusted source."
|
|
580
|
+
},
|
|
581
|
+
"account": {
|
|
582
|
+
"name": "Unverified Claims Warning",
|
|
583
|
+
"description": "The moderators believe this account has published claims which have not been verified by a trusted source."
|
|
584
|
+
},
|
|
585
|
+
"content": {
|
|
586
|
+
"name": "Unverified Claims Warning",
|
|
587
|
+
"description": "The moderators believe this content contains claims which have not been verified by a trusted source."
|
|
588
|
+
}
|
|
589
|
+
},
|
|
590
|
+
"manipulated": {
|
|
591
|
+
"settings": {
|
|
592
|
+
"name": "Manipulated Media",
|
|
593
|
+
"description": "Content which misrepresents a person or event by modifying the source material."
|
|
594
|
+
},
|
|
595
|
+
"account": {
|
|
596
|
+
"name": "Manipulated Media Warning",
|
|
597
|
+
"description": "The moderators believe this account has published content which misrepresents a person or event by modifying the source material."
|
|
598
|
+
},
|
|
599
|
+
"content": {
|
|
600
|
+
"name": "Manipulated Media Warning",
|
|
601
|
+
"description": "The moderators believe this content contains misrepresentations of a person or event by modifying the source material."
|
|
602
|
+
}
|
|
603
|
+
},
|
|
604
|
+
"fringe": {
|
|
605
|
+
"settings": {
|
|
606
|
+
"name": "Conspiracy Theories",
|
|
607
|
+
"description": "Fringe views which lack evidence."
|
|
608
|
+
},
|
|
609
|
+
"account": {
|
|
610
|
+
"name": "Conspiracy Theories Warning",
|
|
611
|
+
"description": "The moderators believe this account has published fringe views which lack evidence."
|
|
612
|
+
},
|
|
613
|
+
"content": {
|
|
614
|
+
"name": "Conspiracy Theories Warning",
|
|
615
|
+
"description": "The moderators believe this content contains fringe views which lack evidence."
|
|
616
|
+
}
|
|
617
|
+
},
|
|
618
|
+
"bullshit": {
|
|
619
|
+
"settings": {
|
|
620
|
+
"name": "Bullshit",
|
|
621
|
+
"description": "Content which is not technically wrong or lying, but misleading through omission or re-contextualization."
|
|
622
|
+
},
|
|
623
|
+
"account": {
|
|
624
|
+
"name": "Bullshit Warning",
|
|
625
|
+
"description": "The moderators believe this account has published content which is not technically wrong or lying, but misleading through omission or re-contextualization."
|
|
626
|
+
},
|
|
627
|
+
"content": {
|
|
628
|
+
"name": "Bullshit Warning",
|
|
629
|
+
"description": "The moderators believe this content includes statements which are not technically wrong or lying, but are misleading through omission or re-contextualization."
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import type { LabelPreference } from '../src'
|
|
2
|
+
|
|
3
|
+
export interface ModerationBehaviorResult {
|
|
4
|
+
cause?: string
|
|
5
|
+
filter?: boolean
|
|
6
|
+
blur?: boolean
|
|
7
|
+
alert?: boolean
|
|
8
|
+
noOverride?: boolean
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface ModerationBehaviorScenario {
|
|
12
|
+
cfg: string
|
|
13
|
+
subject: 'post' | 'profile' | 'userlist' | 'feedgen'
|
|
14
|
+
author: string
|
|
15
|
+
quoteAuthor?: string
|
|
16
|
+
labels: {
|
|
17
|
+
post?: string[]
|
|
18
|
+
profile?: string[]
|
|
19
|
+
account?: string[]
|
|
20
|
+
quotedPost?: string[]
|
|
21
|
+
quotedAccount?: string[]
|
|
22
|
+
}
|
|
23
|
+
behaviors: {
|
|
24
|
+
content?: ModerationBehaviorResult
|
|
25
|
+
avatar?: ModerationBehaviorResult
|
|
26
|
+
embed?: ModerationBehaviorResult
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export interface ModerationBehaviors {
|
|
31
|
+
users: Record<
|
|
32
|
+
string,
|
|
33
|
+
{
|
|
34
|
+
blocking: boolean
|
|
35
|
+
blockedBy: boolean
|
|
36
|
+
muted: boolean
|
|
37
|
+
mutedByList: boolean
|
|
38
|
+
}
|
|
39
|
+
>
|
|
40
|
+
configurations: Record<
|
|
41
|
+
string,
|
|
42
|
+
{
|
|
43
|
+
adultContentEnabled: boolean
|
|
44
|
+
settings: Record<string, LabelPreference>
|
|
45
|
+
}
|
|
46
|
+
>
|
|
47
|
+
scenarios: Record<string, ModerationBehaviorScenario>
|
|
48
|
+
}
|