@atproto/api 0.10.5 → 0.11.0-next

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 (422) hide show
  1. package/definitions/labels.json +191 -189
  2. package/dist/agent.d.ts +3 -1
  3. package/dist/bsky-agent.d.ts +6 -2
  4. package/dist/client/index.d.ts +94 -38
  5. package/dist/client/lexicons.d.ts +5091 -4833
  6. package/dist/client/types/app/bsky/actor/createScene.d.ts +32 -0
  7. package/dist/client/types/app/bsky/actor/defs.d.ts +23 -1
  8. package/dist/client/types/app/bsky/actor/ref.d.ts +28 -0
  9. package/dist/client/types/app/bsky/actor/search.d.ts +22 -0
  10. package/dist/client/types/app/bsky/actor/searchActor.d.ts +22 -0
  11. package/dist/client/types/app/bsky/actor/searchActorTypeahead.d.ts +20 -0
  12. package/dist/client/types/app/bsky/actor/searchTypeahead.d.ts +20 -0
  13. package/dist/client/types/app/bsky/actor/updateProfile.d.ts +47 -0
  14. package/dist/client/types/app/bsky/embed/record.d.ts +2 -1
  15. package/dist/client/types/app/bsky/feed/bookmarkFeed.d.ts +17 -0
  16. package/dist/client/types/app/bsky/feed/feedViewPost.d.ts +28 -0
  17. package/dist/client/types/app/bsky/feed/getBookmarkedFeeds.d.ts +21 -0
  18. package/dist/client/types/app/bsky/feed/getSavedFeeds.d.ts +21 -0
  19. package/dist/client/types/app/bsky/feed/getVotes.d.ts +36 -0
  20. package/dist/client/types/app/bsky/feed/saveFeed.d.ts +17 -0
  21. package/dist/client/types/app/bsky/feed/setVote.d.ts +25 -0
  22. package/dist/client/types/app/bsky/feed/trend.d.ts +9 -0
  23. package/dist/client/types/app/bsky/feed/unbookmarkFeed.d.ts +17 -0
  24. package/dist/client/types/app/bsky/feed/unsaveFeed.d.ts +17 -0
  25. package/dist/client/types/app/bsky/feed/vote.d.ts +10 -0
  26. package/dist/client/types/app/bsky/graph/assertCreator.d.ts +1 -0
  27. package/dist/client/types/app/bsky/graph/assertMember.d.ts +1 -0
  28. package/dist/client/types/app/bsky/graph/assertion.d.ts +10 -0
  29. package/dist/client/types/app/bsky/graph/confirmation.d.ts +11 -0
  30. package/dist/client/types/app/bsky/graph/getAssertions.d.ts +48 -0
  31. package/dist/client/types/app/bsky/graph/getMembers.d.ts +36 -0
  32. package/dist/client/types/app/bsky/graph/getMemberships.d.ts +36 -0
  33. package/dist/client/types/app/bsky/graph/mute.d.ts +17 -0
  34. package/dist/client/types/app/bsky/graph/unmute.d.ts +17 -0
  35. package/dist/client/types/app/bsky/labeler/defs.d.ts +41 -0
  36. package/dist/client/types/app/bsky/labeler/getServices.d.ts +23 -0
  37. package/dist/client/types/app/bsky/labeler/service.d.ts +14 -0
  38. package/dist/client/types/app/bsky/moderation/defs.d.ts +41 -0
  39. package/dist/client/types/app/bsky/moderation/getService.d.ts +16 -0
  40. package/dist/client/types/app/bsky/moderation/getServices.d.ts +23 -0
  41. package/dist/client/types/app/bsky/moderation/service.d.ts +14 -0
  42. package/dist/client/types/app/bsky/notification/getCount.d.ts +17 -0
  43. package/dist/client/types/app/bsky/notification/list.d.ts +35 -0
  44. package/dist/client/types/app/bsky/system/actorScene.d.ts +1 -0
  45. package/dist/client/types/app/bsky/system/actorUser.d.ts +1 -0
  46. package/dist/client/types/app/bsky/system/declRef.d.ts +8 -0
  47. package/dist/client/types/app/bsky/system/declaration.d.ts +7 -0
  48. package/dist/client/types/app/bsky/unspecced/applyLabels.d.ts +18 -0
  49. package/dist/client/types/app/bsky/unspecced/getPopular.d.ts +22 -0
  50. package/dist/client/types/app/bsky/unspecced/getTimelineSkeleton.d.ts +24 -0
  51. package/dist/client/types/com/atproto/account/create.d.ts +41 -0
  52. package/dist/client/types/com/atproto/account/createInviteCode.d.ts +22 -0
  53. package/dist/client/types/com/atproto/account/delete.d.ts +25 -0
  54. package/dist/client/types/com/atproto/account/get.d.ts +12 -0
  55. package/dist/client/types/com/atproto/account/requestDelete.d.ts +13 -0
  56. package/dist/client/types/com/atproto/account/requestPasswordReset.d.ts +17 -0
  57. package/dist/client/types/com/atproto/account/resetPassword.d.ts +24 -0
  58. package/dist/client/types/com/atproto/admin/blob.d.ts +37 -0
  59. package/dist/client/types/com/atproto/admin/defs.d.ts +0 -304
  60. package/dist/client/types/com/atproto/admin/getInviteCodeUsage.d.ts +29 -0
  61. package/dist/client/types/com/atproto/admin/getModerationAction.d.ts +16 -0
  62. package/dist/client/types/com/atproto/admin/getModerationActions.d.ts +22 -0
  63. package/dist/client/types/com/atproto/admin/getModerationReport.d.ts +16 -0
  64. package/dist/client/types/com/atproto/admin/getModerationReports.d.ts +28 -0
  65. package/dist/client/types/com/atproto/admin/getSubjectState.d.ts +26 -0
  66. package/dist/client/types/com/atproto/admin/getUserAccountInfo.d.ts +16 -0
  67. package/dist/client/types/com/atproto/admin/moderationAction.d.ts +60 -0
  68. package/dist/client/types/com/atproto/admin/moderationReport.d.ts +37 -0
  69. package/dist/client/types/com/atproto/admin/rebaseRepo.d.ts +24 -0
  70. package/dist/client/types/com/atproto/admin/record.d.ts +43 -0
  71. package/dist/client/types/com/atproto/admin/repo.d.ts +45 -0
  72. package/dist/client/types/com/atproto/admin/resolveModerationReports.d.ts +22 -0
  73. package/dist/client/types/com/atproto/admin/reverseModerationAction.d.ts +22 -0
  74. package/dist/client/types/com/atproto/admin/takeModerationAction.d.ts +34 -0
  75. package/dist/client/types/com/atproto/admin/updateSubjectState.d.ts +32 -0
  76. package/dist/client/types/com/atproto/blob/upload.d.ts +19 -0
  77. package/dist/client/types/com/atproto/handle/resolve.d.ts +18 -0
  78. package/dist/client/types/com/atproto/handle/update.d.ts +17 -0
  79. package/dist/client/types/com/atproto/label/defs.d.ts +21 -0
  80. package/dist/client/types/com/atproto/repo/batchWrite.d.ts +46 -0
  81. package/dist/client/types/com/atproto/repo/describe.d.ts +22 -0
  82. package/dist/client/types/com/atproto/repo/rebaseRepo.d.ts +24 -0
  83. package/dist/client/types/com/atproto/repo/recordRef.d.ts +8 -0
  84. package/dist/client/types/com/atproto/repo/repoRef.d.ts +7 -0
  85. package/dist/client/types/com/atproto/repo/uploadRepo.d.ts +19 -0
  86. package/dist/client/types/com/atproto/report/create.d.ts +39 -0
  87. package/dist/client/types/com/atproto/report/reasonType.d.ts +3 -0
  88. package/dist/client/types/com/atproto/report/subject.d.ts +23 -0
  89. package/dist/client/types/com/atproto/server/getAccountsConfig.d.ts +27 -0
  90. package/dist/client/types/com/atproto/server/getUserInviteCodes.d.ts +31 -0
  91. package/dist/client/types/com/atproto/session/create.d.ts +29 -0
  92. package/dist/client/types/com/atproto/session/delete.d.ts +13 -0
  93. package/dist/client/types/com/atproto/session/get.d.ts +18 -0
  94. package/dist/client/types/com/atproto/session/refresh.d.ts +24 -0
  95. package/dist/client/types/com/atproto/sync/getCommitPath.d.ts +20 -0
  96. package/dist/client/types/com/atproto/sync/getCurrent.d.ts +22 -0
  97. package/dist/client/types/com/atproto/sync/getRoot.d.ts +21 -0
  98. package/dist/client/types/com/atproto/sync/importRepo.d.ts +16 -0
  99. package/dist/client/types/com/atproto/sync/subscribeAllRepos.d.ts +9 -0
  100. package/dist/client/types/com/atproto/sync/updateRepo.d.ts +15 -0
  101. package/dist/client/types/com/atproto/temp/importRepo.d.ts +16 -0
  102. package/dist/client/types/com/atproto/temp/pushBlob.d.ts +15 -0
  103. package/dist/client/types/com/atproto/temp/transferAccount.d.ts +48 -0
  104. package/dist/client/types/com/atproto/temp/upgradeRepoVersion.d.ts +18 -0
  105. package/dist/client/types/tools/ozone/communication/createTemplate.d.ts +23 -0
  106. package/dist/client/types/tools/ozone/communication/defs.d.ts +14 -0
  107. package/dist/client/types/tools/ozone/communication/deleteTemplate.d.ts +17 -0
  108. package/dist/client/types/tools/ozone/communication/listTemplates.d.ts +18 -0
  109. package/dist/client/types/tools/ozone/communication/updateTemplate.d.ts +25 -0
  110. package/dist/client/types/tools/ozone/moderation/defs.d.ts +269 -0
  111. package/dist/client/types/tools/ozone/moderation/emitEvent.d.ts +34 -0
  112. package/dist/client/types/tools/ozone/moderation/getEvent.d.ts +16 -0
  113. package/dist/client/types/tools/ozone/moderation/getRecord.d.ts +20 -0
  114. package/dist/client/types/tools/ozone/moderation/getRepo.d.ts +19 -0
  115. package/dist/client/types/tools/ozone/moderation/queryEvents.d.ts +35 -0
  116. package/dist/client/types/tools/ozone/moderation/queryStatuses.d.ts +37 -0
  117. package/dist/client/types/tools/ozone/moderation/searchRepos.d.ts +23 -0
  118. package/dist/const.d.ts +1 -0
  119. package/dist/index.d.ts +3 -2
  120. package/dist/index.js +7865 -7922
  121. package/dist/index.js.map +3 -3
  122. package/dist/mocker.d.ts +57 -0
  123. package/dist/moderation/const/labels.d.ts +4 -2
  124. package/dist/moderation/decision.d.ts +26 -0
  125. package/dist/moderation/index.d.ts +10 -44
  126. package/dist/moderation/subjects/account.d.ts +2 -1
  127. package/dist/moderation/subjects/feed-generator.d.ts +2 -1
  128. package/dist/moderation/subjects/notification.d.ts +3 -0
  129. package/dist/moderation/subjects/post.d.ts +2 -1
  130. package/dist/moderation/subjects/profile.d.ts +2 -1
  131. package/dist/moderation/subjects/user-list.d.ts +2 -1
  132. package/dist/moderation/types.d.ts +47 -61
  133. package/dist/moderation/ui.d.ts +12 -0
  134. package/dist/moderation/util.d.ts +4 -8
  135. package/dist/session.d.ts +42 -0
  136. package/dist/src/client/index.d.ts +462 -0
  137. package/dist/src/client/lexicons.d.ts +2910 -0
  138. package/dist/src/client/schemas.d.ts +17 -0
  139. package/dist/src/client/types/app/bsky/actor/createScene.d.ts +32 -0
  140. package/dist/src/client/types/app/bsky/actor/getProfile.d.ts +36 -0
  141. package/dist/src/client/types/app/bsky/actor/getSuggestions.d.ts +36 -0
  142. package/dist/src/client/types/app/bsky/actor/profile.d.ts +15 -0
  143. package/dist/src/client/types/app/bsky/actor/ref.d.ts +14 -0
  144. package/dist/src/client/types/app/bsky/actor/search.d.ts +32 -0
  145. package/dist/src/client/types/app/bsky/actor/searchTypeahead.d.ts +28 -0
  146. package/dist/src/client/types/app/bsky/actor/updateProfile.d.ts +48 -0
  147. package/dist/src/client/types/app/bsky/badge.d.ts +22 -0
  148. package/dist/src/client/types/app/bsky/badgeAccept.d.ts +11 -0
  149. package/dist/src/client/types/app/bsky/badgeOffer.d.ts +11 -0
  150. package/dist/src/client/types/app/bsky/declaration.d.ts +6 -0
  151. package/dist/src/client/types/app/bsky/embed/external.d.ts +26 -0
  152. package/dist/src/client/types/app/bsky/embed/images.d.ts +23 -0
  153. package/dist/src/client/types/app/bsky/feed/embed.d.ts +36 -0
  154. package/dist/src/client/types/app/bsky/feed/feedViewPost.d.ts +26 -0
  155. package/dist/src/client/types/app/bsky/feed/getAuthorFeed.d.ts +22 -0
  156. package/dist/src/client/types/app/bsky/feed/getPostThread.d.ts +43 -0
  157. package/dist/src/client/types/app/bsky/feed/getRepostedBy.d.ts +35 -0
  158. package/dist/src/client/types/app/bsky/feed/getTimeline.d.ts +22 -0
  159. package/dist/src/client/types/app/bsky/feed/getVotes.d.ts +33 -0
  160. package/dist/src/client/types/app/bsky/feed/mediaEmbed.d.ts +18 -0
  161. package/dist/src/client/types/app/bsky/feed/post.d.ts +54 -0
  162. package/dist/src/client/types/app/bsky/feed/repost.d.ts +6 -0
  163. package/dist/src/client/types/app/bsky/feed/setVote.d.ts +25 -0
  164. package/dist/src/client/types/app/bsky/feed/trend.d.ts +6 -0
  165. package/dist/src/client/types/app/bsky/feed/vote.d.ts +7 -0
  166. package/dist/src/client/types/app/bsky/follow.d.ts +9 -0
  167. package/dist/src/client/types/app/bsky/getAuthorFeed.d.ts +56 -0
  168. package/dist/src/client/types/app/bsky/getBadgeMembers.d.ts +29 -0
  169. package/dist/src/client/types/app/bsky/getHomeFeed.d.ts +56 -0
  170. package/dist/src/client/types/app/bsky/getLikedBy.d.ts +29 -0
  171. package/dist/src/client/types/app/bsky/getNotificationCount.d.ts +16 -0
  172. package/dist/src/client/types/app/bsky/getNotifications.d.ts +33 -0
  173. package/dist/src/client/types/app/bsky/getPostThread.d.ts +55 -0
  174. package/dist/src/client/types/app/bsky/getProfile.d.ts +26 -0
  175. package/dist/src/client/types/app/bsky/getRepostedBy.d.ts +29 -0
  176. package/dist/src/client/types/app/bsky/getTimeline.d.ts +56 -0
  177. package/dist/src/client/types/app/bsky/getUserFollowers.d.ts +31 -0
  178. package/dist/src/client/types/app/bsky/getUserFollows.d.ts +31 -0
  179. package/dist/src/client/types/app/bsky/getUsersSearch.d.ts +26 -0
  180. package/dist/src/client/types/app/bsky/getUsersTypeahead.d.ts +22 -0
  181. package/dist/src/client/types/app/bsky/graph/assertCreator.d.ts +1 -0
  182. package/dist/src/client/types/app/bsky/graph/assertMember.d.ts +1 -0
  183. package/dist/src/client/types/app/bsky/graph/assertion.d.ts +7 -0
  184. package/dist/src/client/types/app/bsky/graph/confirmation.d.ts +8 -0
  185. package/dist/src/client/types/app/bsky/graph/follow.d.ts +6 -0
  186. package/dist/src/client/types/app/bsky/graph/getAssertions.d.ts +43 -0
  187. package/dist/src/client/types/app/bsky/graph/getFollowers.d.ts +34 -0
  188. package/dist/src/client/types/app/bsky/graph/getFollows.d.ts +33 -0
  189. package/dist/src/client/types/app/bsky/graph/getMembers.d.ts +33 -0
  190. package/dist/src/client/types/app/bsky/graph/getMemberships.d.ts +33 -0
  191. package/dist/src/client/types/app/bsky/invite.d.ts +10 -0
  192. package/dist/src/client/types/app/bsky/inviteAccept.d.ts +14 -0
  193. package/dist/src/client/types/app/bsky/like.d.ts +10 -0
  194. package/dist/src/client/types/app/bsky/mediaEmbed.d.ts +15 -0
  195. package/dist/src/client/types/app/bsky/notification/getCount.d.ts +17 -0
  196. package/dist/src/client/types/app/bsky/notification/list.d.ts +32 -0
  197. package/dist/src/client/types/app/bsky/notification/updateSeen.d.ts +17 -0
  198. package/dist/src/client/types/app/bsky/post.d.ts +23 -0
  199. package/dist/src/client/types/app/bsky/postNotificationsSeen.d.ts +20 -0
  200. package/dist/src/client/types/app/bsky/profile.d.ts +5 -0
  201. package/dist/src/client/types/app/bsky/repost.d.ts +10 -0
  202. package/dist/src/client/types/app/bsky/system/actorScene.d.ts +1 -0
  203. package/dist/src/client/types/app/bsky/system/actorUser.d.ts +1 -0
  204. package/dist/src/client/types/app/bsky/system/declRef.d.ts +5 -0
  205. package/dist/src/client/types/app/bsky/system/declaration.d.ts +4 -0
  206. package/dist/src/client/types/app/bsky/updateProfile.d.ts +23 -0
  207. package/dist/src/client/types/com/atproto/account/create.d.ts +41 -0
  208. package/dist/src/client/types/com/atproto/account/createInviteCode.d.ts +22 -0
  209. package/dist/src/client/types/com/atproto/account/delete.d.ts +13 -0
  210. package/dist/src/client/types/com/atproto/account/get.d.ts +12 -0
  211. package/dist/src/client/types/com/atproto/account/requestPasswordReset.d.ts +17 -0
  212. package/dist/src/client/types/com/atproto/account/resetPassword.d.ts +24 -0
  213. package/dist/src/client/types/com/atproto/blob/upload.d.ts +19 -0
  214. package/dist/src/client/types/com/atproto/createAccount.d.ts +40 -0
  215. package/dist/src/client/types/com/atproto/createInviteCode.d.ts +20 -0
  216. package/dist/src/client/types/com/atproto/createSession.d.ts +24 -0
  217. package/dist/src/client/types/com/atproto/data/uploadFile.d.ts +19 -0
  218. package/dist/src/client/types/com/atproto/deleteAccount.d.ts +20 -0
  219. package/dist/src/client/types/com/atproto/deleteSession.d.ts +17 -0
  220. package/dist/src/client/types/com/atproto/getAccount.d.ts +16 -0
  221. package/dist/src/client/types/com/atproto/getAccountsConfig.d.ts +17 -0
  222. package/dist/src/client/types/com/atproto/getSession.d.ts +17 -0
  223. package/dist/src/client/types/com/atproto/handle/resolve.d.ts +18 -0
  224. package/dist/src/client/types/com/atproto/refreshSession.d.ts +20 -0
  225. package/dist/src/client/types/com/atproto/repo/batchWrite.d.ts +39 -0
  226. package/dist/src/client/types/com/atproto/repo/createRecord.d.ts +26 -0
  227. package/dist/src/client/types/com/atproto/repo/deleteRecord.d.ts +19 -0
  228. package/dist/src/client/types/com/atproto/repo/describe.d.ts +22 -0
  229. package/dist/src/client/types/com/atproto/repo/getRecord.d.ts +23 -0
  230. package/dist/src/client/types/com/atproto/repo/listRecords.d.ts +30 -0
  231. package/dist/src/client/types/com/atproto/repo/putRecord.d.ts +27 -0
  232. package/dist/src/client/types/com/atproto/repo/strongRef.d.ts +5 -0
  233. package/dist/src/client/types/com/atproto/repoBatchWrite.d.ts +36 -0
  234. package/dist/src/client/types/com/atproto/repoCreateRecord.d.ts +24 -0
  235. package/dist/src/client/types/com/atproto/repoDeleteRecord.d.ts +18 -0
  236. package/dist/src/client/types/com/atproto/repoDescribe.d.ts +21 -0
  237. package/dist/src/client/types/com/atproto/repoGetRecord.d.ts +22 -0
  238. package/dist/src/client/types/com/atproto/repoListRecords.d.ts +27 -0
  239. package/dist/src/client/types/com/atproto/repoPutRecord.d.ts +25 -0
  240. package/dist/src/client/types/com/atproto/requestAccountPasswordReset.d.ts +19 -0
  241. package/dist/src/client/types/com/atproto/resetAccountPassword.d.ts +26 -0
  242. package/dist/src/client/types/com/atproto/resolveHandle.d.ts +17 -0
  243. package/dist/src/client/types/com/atproto/resolveName.d.ts +17 -0
  244. package/dist/src/client/types/com/atproto/server/getAccountsConfig.d.ts +24 -0
  245. package/dist/src/client/types/com/atproto/session/create.d.ts +26 -0
  246. package/dist/src/client/types/com/atproto/session/delete.d.ts +13 -0
  247. package/dist/src/client/types/com/atproto/session/get.d.ts +18 -0
  248. package/dist/src/client/types/com/atproto/session/refresh.d.ts +21 -0
  249. package/dist/src/client/types/com/atproto/sync/getRepo.d.ts +15 -0
  250. package/dist/src/client/types/com/atproto/sync/getRoot.d.ts +18 -0
  251. package/dist/src/client/types/com/atproto/sync/updateRepo.d.ts +15 -0
  252. package/dist/src/client/types/com/atproto/syncGetRepo.d.ts +15 -0
  253. package/dist/src/client/types/com/atproto/syncGetRoot.d.ts +17 -0
  254. package/dist/src/client/types/com/atproto/syncUpdateRepo.d.ts +15 -0
  255. package/dist/src/index.d.ts +4 -0
  256. package/dist/src/schemas.d.ts +19 -0
  257. package/dist/src/session.d.ts +42 -0
  258. package/dist/src/types/app/bsky/acceptedBadge.d.ts +10 -0
  259. package/dist/src/types/app/bsky/badge.d.ts +22 -0
  260. package/dist/src/types/app/bsky/badgeAccept.d.ts +11 -0
  261. package/dist/src/types/app/bsky/badgeOffer.d.ts +11 -0
  262. package/dist/src/types/app/bsky/declaration.d.ts +6 -0
  263. package/dist/src/types/app/bsky/follow.d.ts +9 -0
  264. package/dist/src/types/app/bsky/getAuthorFeed.d.ts +56 -0
  265. package/dist/src/types/app/bsky/getBadgeMembers.d.ts +29 -0
  266. package/dist/src/types/app/bsky/getHomeFeed.d.ts +56 -0
  267. package/dist/src/types/app/bsky/getLikedBy.d.ts +29 -0
  268. package/dist/src/types/app/bsky/getNotificationCount.d.ts +16 -0
  269. package/dist/src/types/app/bsky/getNotifications.d.ts +33 -0
  270. package/dist/src/types/app/bsky/getPostThread.d.ts +55 -0
  271. package/dist/src/types/app/bsky/getProfile.d.ts +42 -0
  272. package/dist/src/types/app/bsky/getRepostedBy.d.ts +29 -0
  273. package/dist/src/types/app/bsky/getUserFollowers.d.ts +31 -0
  274. package/dist/src/types/app/bsky/getUserFollows.d.ts +31 -0
  275. package/dist/src/types/app/bsky/getUsersSearch.d.ts +26 -0
  276. package/dist/src/types/app/bsky/getUsersTypeahead.d.ts +22 -0
  277. package/dist/src/types/app/bsky/invite.d.ts +10 -0
  278. package/dist/src/types/app/bsky/inviteAccept.d.ts +14 -0
  279. package/dist/src/types/app/bsky/like.d.ts +10 -0
  280. package/dist/src/types/app/bsky/mediaEmbed.d.ts +15 -0
  281. package/dist/src/types/app/bsky/post.d.ts +23 -0
  282. package/dist/src/types/app/bsky/postNotificationsSeen.d.ts +19 -0
  283. package/dist/src/types/app/bsky/profile.d.ts +11 -0
  284. package/dist/src/types/app/bsky/repost.d.ts +10 -0
  285. package/dist/src/types/app/bsky/updateProfile.d.ts +27 -0
  286. package/dist/src/types/com/atproto/createAccount.d.ts +39 -0
  287. package/dist/src/types/com/atproto/createInviteCode.d.ts +19 -0
  288. package/dist/src/types/com/atproto/createSession.d.ts +23 -0
  289. package/dist/src/types/com/atproto/deleteAccount.d.ts +19 -0
  290. package/dist/src/types/com/atproto/deleteSession.d.ts +16 -0
  291. package/dist/src/types/com/atproto/getAccount.d.ts +19 -0
  292. package/dist/src/types/com/atproto/getAccountsConfig.d.ts +17 -0
  293. package/dist/src/types/com/atproto/getSession.d.ts +17 -0
  294. package/dist/src/types/com/atproto/refreshSession.d.ts +19 -0
  295. package/dist/src/types/com/atproto/repoBatchWrite.d.ts +35 -0
  296. package/dist/src/types/com/atproto/repoCreateRecord.d.ts +23 -0
  297. package/dist/src/types/com/atproto/repoDeleteRecord.d.ts +15 -0
  298. package/dist/src/types/com/atproto/repoDescribe.d.ts +21 -0
  299. package/dist/src/types/com/atproto/repoGetRecord.d.ts +22 -0
  300. package/dist/src/types/com/atproto/repoListRecords.d.ts +27 -0
  301. package/dist/src/types/com/atproto/repoPutRecord.d.ts +24 -0
  302. package/dist/src/types/com/atproto/requestAccountPasswordReset.d.ts +18 -0
  303. package/dist/src/types/com/atproto/resetAccountPassword.d.ts +25 -0
  304. package/dist/src/types/com/atproto/resolveName.d.ts +17 -0
  305. package/dist/src/types/com/atproto/syncGetRepo.d.ts +15 -0
  306. package/dist/src/types/com/atproto/syncGetRoot.d.ts +17 -0
  307. package/dist/src/types/com/atproto/syncUpdateRepo.d.ts +14 -0
  308. package/dist/src/types/todo/adx/createAccount.d.ts +36 -0
  309. package/dist/src/types/todo/adx/createInviteCode.d.ts +19 -0
  310. package/dist/src/types/todo/adx/createSession.d.ts +22 -0
  311. package/dist/src/types/todo/adx/deleteAccount.d.ts +19 -0
  312. package/dist/src/types/todo/adx/deleteSession.d.ts +19 -0
  313. package/dist/src/types/todo/adx/getAccount.d.ts +19 -0
  314. package/dist/src/types/todo/adx/getAccountsConfig.d.ts +17 -0
  315. package/dist/src/types/todo/adx/getSession.d.ts +17 -0
  316. package/dist/src/types/todo/adx/repoBatchWrite.d.ts +34 -0
  317. package/dist/src/types/todo/adx/repoCreateRecord.d.ts +22 -0
  318. package/dist/src/types/todo/adx/repoDeleteRecord.d.ts +15 -0
  319. package/dist/src/types/todo/adx/repoDescribe.d.ts +21 -0
  320. package/dist/src/types/todo/adx/repoGetRecord.d.ts +20 -0
  321. package/dist/src/types/todo/adx/repoListRecords.d.ts +25 -0
  322. package/dist/src/types/todo/adx/repoPutRecord.d.ts +23 -0
  323. package/dist/src/types/todo/adx/requestAccountPasswordReset.d.ts +18 -0
  324. package/dist/src/types/todo/adx/resetAccountPassword.d.ts +25 -0
  325. package/dist/src/types/todo/adx/resolveName.d.ts +17 -0
  326. package/dist/src/types/todo/adx/syncGetRepo.d.ts +15 -0
  327. package/dist/src/types/todo/adx/syncGetRoot.d.ts +17 -0
  328. package/dist/src/types/todo/adx/syncUpdateRepo.d.ts +14 -0
  329. package/dist/src/types/todo/social/badge.d.ts +23 -0
  330. package/dist/src/types/todo/social/follow.d.ts +5 -0
  331. package/dist/src/types/todo/social/getAuthorFeed.d.ts +55 -0
  332. package/dist/src/types/todo/social/getFeed.d.ts +55 -0
  333. package/dist/src/types/todo/social/getHomeFeed.d.ts +55 -0
  334. package/dist/src/types/todo/social/getLikedBy.d.ts +26 -0
  335. package/dist/src/types/todo/social/getNotificationCount.d.ts +16 -0
  336. package/dist/src/types/todo/social/getNotifications.d.ts +31 -0
  337. package/dist/src/types/todo/social/getPostThread.d.ts +54 -0
  338. package/dist/src/types/todo/social/getProfile.d.ts +40 -0
  339. package/dist/src/types/todo/social/getRepostedBy.d.ts +26 -0
  340. package/dist/src/types/todo/social/getUserFollowers.d.ts +30 -0
  341. package/dist/src/types/todo/social/getUserFollows.d.ts +30 -0
  342. package/dist/src/types/todo/social/like.d.ts +5 -0
  343. package/dist/src/types/todo/social/mediaEmbed.d.ts +15 -0
  344. package/dist/src/types/todo/social/post.d.ts +18 -0
  345. package/dist/src/types/todo/social/postNotificationsSeen.d.ts +19 -0
  346. package/dist/src/types/todo/social/profile.d.ts +10 -0
  347. package/dist/src/types/todo/social/repost.d.ts +5 -0
  348. package/dist/types.d.ts +2 -4
  349. package/docs/labels.md +22 -468
  350. package/docs/moderation.md +0 -2
  351. package/package.json +5 -5
  352. package/scripts/code/labels.mjs +17 -35
  353. package/scripts/docs/labels.mjs +8 -85
  354. package/scripts/generate-code.mjs +0 -1
  355. package/scripts/generate-docs.mjs +0 -2
  356. package/src/agent.ts +24 -4
  357. package/src/bsky-agent.ts +184 -24
  358. package/src/client/index.ts +292 -173
  359. package/src/client/lexicons.ts +6192 -5926
  360. package/src/client/types/app/bsky/actor/defs.ts +57 -1
  361. package/src/client/types/app/bsky/embed/record.ts +2 -0
  362. package/src/client/types/app/bsky/labeler/defs.ts +93 -0
  363. package/src/client/types/app/bsky/labeler/getServices.ts +41 -0
  364. package/src/client/types/app/bsky/labeler/service.ts +31 -0
  365. package/src/client/types/com/atproto/admin/defs.ts +0 -694
  366. package/src/client/types/com/atproto/label/defs.ts +74 -0
  367. package/src/client/types/{com/atproto/admin/createCommunicationTemplate.ts → tools/ozone/communication/createTemplate.ts} +2 -2
  368. package/src/client/types/tools/ozone/communication/defs.ts +35 -0
  369. package/src/client/types/{com/atproto/admin/listCommunicationTemplates.ts → tools/ozone/communication/listTemplates.ts} +2 -2
  370. package/src/client/types/{com/atproto/admin/updateCommunicationTemplate.ts → tools/ozone/communication/updateTemplate.ts} +2 -2
  371. package/src/client/types/tools/ozone/moderation/defs.ts +641 -0
  372. package/src/client/types/{com/atproto/admin/emitModerationEvent.ts → tools/ozone/moderation/emitEvent.ts} +15 -14
  373. package/src/client/types/{com/atproto/admin/getModerationEvent.ts → tools/ozone/moderation/getEvent.ts} +2 -2
  374. package/src/client/types/{com/atproto/admin → tools/ozone/moderation}/getRecord.ts +2 -2
  375. package/src/client/types/{com/atproto/admin → tools/ozone/moderation}/getRepo.ts +2 -2
  376. package/src/client/types/{com/atproto/admin/queryModerationEvents.ts → tools/ozone/moderation/queryEvents.ts} +3 -3
  377. package/src/client/types/{com/atproto/admin/queryModerationStatuses.ts → tools/ozone/moderation/queryStatuses.ts} +2 -2
  378. package/src/client/types/{com/atproto/admin → tools/ozone/moderation}/searchRepos.ts +2 -2
  379. package/src/const.ts +1 -0
  380. package/src/index.ts +3 -2
  381. package/src/mocker.ts +214 -0
  382. package/src/moderation/const/labels.ts +247 -847
  383. package/src/moderation/decision.ts +337 -0
  384. package/src/moderation/index.ts +38 -304
  385. package/src/moderation/subjects/account.ts +6 -10
  386. package/src/moderation/subjects/feed-generator.ts +3 -6
  387. package/src/moderation/subjects/notification.ts +19 -0
  388. package/src/moderation/subjects/post.ts +6 -10
  389. package/src/moderation/subjects/profile.ts +6 -11
  390. package/src/moderation/subjects/user-list.ts +3 -6
  391. package/src/moderation/types.ts +81 -77
  392. package/src/moderation/ui.ts +21 -0
  393. package/src/moderation/util.ts +82 -72
  394. package/src/types.ts +3 -10
  395. package/tests/agent.test.ts +20 -0
  396. package/tests/bsky-agent.test.ts +401 -98
  397. package/tests/moderation-behaviors.test.ts +969 -0
  398. package/tests/moderation-custom-labels.test.ts +358 -0
  399. package/tests/moderation-prefs.test.ts +276 -0
  400. package/tests/moderation.test.ts +303 -201
  401. package/tests/util/echo-server.ts +21 -0
  402. package/tests/util/index.ts +1 -154
  403. package/tests/util/moderation-behavior.ts +129 -55
  404. package/definitions/locale/en/label-groups.json +0 -38
  405. package/definitions/locale/en/labels.json +0 -394
  406. package/definitions/locale/en/proposed-label-groups.json +0 -38
  407. package/definitions/locale/en/proposed-labels.json +0 -632
  408. package/definitions/moderation-behaviors.d.ts +0 -50
  409. package/definitions/post-moderation-behaviors.json +0 -1222
  410. package/definitions/profile-moderation-behaviors.json +0 -597
  411. package/definitions/proposed-labels.json +0 -326
  412. package/docs/moderation-behaviors/posts.md +0 -1813
  413. package/docs/moderation-behaviors/profiles.md +0 -833
  414. package/scripts/code/label-groups.mjs +0 -68
  415. package/scripts/docs/post-moderation-behaviors.mjs +0 -117
  416. package/scripts/docs/profile-moderation-behaviors.mjs +0 -122
  417. package/src/moderation/accumulator.ts +0 -217
  418. package/src/moderation/const/label-groups.ts +0 -149
  419. package/src/moderation/subjects/quoted-post.ts +0 -80
  420. package/tests/post-moderation.test.ts +0 -46
  421. package/tests/profile-moderation.test.ts +0 -46
  422. /package/src/client/types/{com/atproto/admin/deleteCommunicationTemplate.ts → tools/ozone/communication/deleteTemplate.ts} +0 -0
@@ -1,224 +1,226 @@
1
1
  [
2
2
  {
3
- "id": "system",
3
+ "identifier": "!hide",
4
4
  "configurable": false,
5
- "labels": [
6
- {
7
- "id": "!hide",
8
- "preferences": ["hide"],
9
- "flags": ["no-override"],
10
- "onwarn": "blur"
11
- },
12
- {
13
- "id": "!no-promote",
14
- "preferences": ["hide"],
15
- "flags": [],
16
- "onwarn": null
17
- },
18
- {
19
- "id": "!warn",
20
- "preferences": ["warn"],
21
- "flags": [],
22
- "onwarn": "blur"
23
- },
24
- {
25
- "id": "!no-unauthenticated",
26
- "preferences": ["hide"],
27
- "flags": ["no-override", "unauthed"],
28
- "onwarn": "blur"
5
+ "defaultSetting": "hide",
6
+ "flags": ["no-override", "no-self"],
7
+ "severity": "alert",
8
+ "blurs": "content",
9
+ "behaviors": {
10
+ "account": {
11
+ "profileList": "blur",
12
+ "profileView": "blur",
13
+ "avatar": "blur",
14
+ "banner": "blur",
15
+ "displayName": "blur",
16
+ "contentList": "blur",
17
+ "contentView": "blur"
18
+ },
19
+ "profile": {
20
+ "avatar": "blur",
21
+ "banner": "blur",
22
+ "displayName": "blur"
23
+ },
24
+ "content": {
25
+ "contentList": "blur",
26
+ "contentView": "blur"
29
27
  }
30
- ]
28
+ }
31
29
  },
32
30
  {
33
- "id": "legal",
31
+ "identifier": "!no-promote",
34
32
  "configurable": false,
35
- "labels": [
36
- {
37
- "id": "dmca-violation",
38
- "preferences": ["hide"],
39
- "flags": ["no-override"],
40
- "onwarn": "blur"
41
- },
42
- {
43
- "id": "doxxing",
44
- "preferences": ["hide"],
45
- "flags": ["no-override"],
46
- "onwarn": "blur"
33
+ "defaultSetting": "hide",
34
+ "flags": ["no-self"],
35
+ "severity": "none",
36
+ "blurs": "none",
37
+ "behaviors": {}
38
+ },
39
+ {
40
+ "identifier": "!warn",
41
+ "configurable": false,
42
+ "defaultSetting": "warn",
43
+ "flags": ["no-self"],
44
+ "severity": "none",
45
+ "blurs": "content",
46
+ "behaviors": {
47
+ "account": {
48
+ "profileList": "blur",
49
+ "profileView": "blur",
50
+ "avatar": "blur",
51
+ "banner": "blur",
52
+ "contentList": "blur",
53
+ "contentView": "blur"
54
+ },
55
+ "profile": {
56
+ "avatar": "blur",
57
+ "banner": "blur",
58
+ "displayName": "blur"
59
+ },
60
+ "content": {
61
+ "contentList": "blur",
62
+ "contentView": "blur"
47
63
  }
48
- ]
64
+ }
49
65
  },
50
66
  {
51
- "id": "sexual",
52
- "configurable": true,
53
- "labels": [
54
- {
55
- "id": "porn",
56
- "preferences": ["ignore", "warn", "hide"],
57
- "flags": ["adult"],
58
- "onwarn": "blur-media"
59
- },
60
- {
61
- "id": "sexual",
62
- "preferences": ["ignore", "warn", "hide"],
63
- "flags": ["adult"],
64
- "onwarn": "blur-media"
65
- },
66
- {
67
- "id": "nudity",
68
- "preferences": ["ignore", "warn", "hide"],
69
- "flags": ["adult"],
70
- "onwarn": "blur-media"
67
+ "identifier": "!no-unauthenticated",
68
+ "configurable": false,
69
+ "defaultSetting": "hide",
70
+ "flags": ["no-override", "unauthed"],
71
+ "severity": "none",
72
+ "blurs": "content",
73
+ "behaviors": {
74
+ "account": {
75
+ "profileList": "blur",
76
+ "profileView": "blur",
77
+ "avatar": "blur",
78
+ "banner": "blur",
79
+ "displayName": "blur",
80
+ "contentList": "blur",
81
+ "contentView": "blur"
82
+ },
83
+ "profile": {
84
+ "avatar": "blur",
85
+ "banner": "blur",
86
+ "displayName": "blur"
87
+ },
88
+ "content": {
89
+ "contentList": "blur",
90
+ "contentView": "blur"
71
91
  }
72
- ]
92
+ }
73
93
  },
74
94
  {
75
- "id": "violence",
76
- "configurable": true,
77
- "labels": [
78
- {
79
- "id": "nsfl",
80
- "preferences": ["ignore", "warn", "hide"],
81
- "flags": ["adult"],
82
- "onwarn": "blur-media"
83
- },
84
- {
85
- "id": "corpse",
86
- "preferences": ["ignore", "warn", "hide"],
87
- "flags": ["adult"],
88
- "onwarn": "blur-media"
89
- },
90
- {
91
- "id": "gore",
92
- "preferences": ["ignore", "warn", "hide"],
93
- "flags": ["adult"],
94
- "onwarn": "blur-media"
95
- },
96
- {
97
- "id": "torture",
98
- "preferences": ["ignore", "warn", "hide"],
99
- "flags": ["adult"],
100
- "onwarn": "blur"
101
- },
102
- {
103
- "id": "self-harm",
104
- "preferences": ["ignore", "warn", "hide"],
105
- "flags": ["adult"],
106
- "onwarn": "blur-media"
95
+ "identifier": "dmca-violation",
96
+ "configurable": false,
97
+ "defaultSetting": "hide",
98
+ "flags": ["no-override", "no-self"],
99
+ "severity": "none",
100
+ "blurs": "content",
101
+ "behaviors": {
102
+ "account": {
103
+ "profileList": "blur",
104
+ "profileView": "blur",
105
+ "contentList": "blur",
106
+ "contentView": "blur"
107
+ },
108
+ "profile": {
109
+ "profileList": "blur",
110
+ "profileView": "blur"
111
+ },
112
+ "content": {
113
+ "contentList": "blur",
114
+ "contentView": "blur"
107
115
  }
108
- ]
116
+ }
109
117
  },
110
118
  {
111
- "id": "intolerance",
112
- "configurable": true,
113
- "labels": [
114
- {
115
- "id": "intolerant-race",
116
- "preferences": ["ignore", "warn", "hide"],
117
- "flags": [],
118
- "onwarn": "blur"
119
- },
120
- {
121
- "id": "intolerant-gender",
122
- "preferences": ["ignore", "warn", "hide"],
123
- "flags": [],
124
- "onwarn": "blur"
125
- },
126
- {
127
- "id": "intolerant-sexual-orientation",
128
- "preferences": ["ignore", "warn", "hide"],
129
- "flags": [],
130
- "onwarn": "blur"
131
- },
132
- {
133
- "id": "intolerant-religion",
134
- "preferences": ["ignore", "warn", "hide"],
135
- "flags": [],
136
- "onwarn": "blur"
137
- },
138
- {
139
- "id": "intolerant",
140
- "preferences": ["ignore", "warn", "hide"],
141
- "flags": [],
142
- "onwarn": "blur"
143
- },
144
- {
145
- "id": "icon-intolerant",
146
- "preferences": ["ignore", "warn", "hide"],
147
- "flags": [],
148
- "onwarn": "blur-media"
119
+ "identifier": "doxxing",
120
+ "configurable": false,
121
+ "defaultSetting": "hide",
122
+ "flags": ["no-override", "no-self"],
123
+ "severity": "none",
124
+ "blurs": "content",
125
+ "behaviors": {
126
+ "account": {
127
+ "profileList": "blur",
128
+ "profileView": "blur",
129
+ "contentList": "blur",
130
+ "contentView": "blur"
131
+ },
132
+ "profile": {
133
+ "profileList": "blur",
134
+ "profileView": "blur"
135
+ },
136
+ "content": {
137
+ "contentList": "blur",
138
+ "contentView": "blur"
149
139
  }
150
- ]
140
+ }
151
141
  },
152
142
  {
153
- "id": "rude",
143
+ "identifier": "porn",
154
144
  "configurable": true,
155
- "labels": [
156
- {
157
- "id": "threat",
158
- "preferences": ["ignore", "warn", "hide"],
159
- "flags": [],
160
- "onwarn": "blur"
145
+ "defaultSetting": "hide",
146
+ "flags": ["adult"],
147
+ "severity": "none",
148
+ "blurs": "media",
149
+ "behaviors": {
150
+ "account": {
151
+ "avatar": "blur",
152
+ "banner": "blur"
153
+ },
154
+ "profile": {
155
+ "avatar": "blur",
156
+ "banner": "blur"
157
+ },
158
+ "content": {
159
+ "contentMedia": "blur"
161
160
  }
162
- ]
161
+ }
163
162
  },
164
163
  {
165
- "id": "curation",
164
+ "identifier": "sexual",
166
165
  "configurable": true,
167
- "labels": [
168
- {
169
- "id": "spoiler",
170
- "preferences": ["ignore", "warn", "hide"],
171
- "flags": [],
172
- "onwarn": "blur"
166
+ "defaultSetting": "warn",
167
+ "flags": ["adult"],
168
+ "severity": "none",
169
+ "blurs": "media",
170
+ "behaviors": {
171
+ "account": {
172
+ "avatar": "blur",
173
+ "banner": "blur"
174
+ },
175
+ "profile": {
176
+ "avatar": "blur",
177
+ "banner": "blur"
178
+ },
179
+ "content": {
180
+ "contentMedia": "blur"
173
181
  }
174
- ]
182
+ }
175
183
  },
176
184
  {
177
- "id": "spam",
185
+ "identifier": "nudity",
178
186
  "configurable": true,
179
- "labels": [
180
- {
181
- "id": "spam",
182
- "preferences": ["ignore", "warn", "hide"],
183
- "flags": [],
184
- "onwarn": "blur"
187
+ "defaultSetting": "warn",
188
+ "flags": ["adult"],
189
+ "severity": "none",
190
+ "blurs": "media",
191
+ "behaviors": {
192
+ "account": {
193
+ "avatar": "blur",
194
+ "banner": "blur"
195
+ },
196
+ "profile": {
197
+ "avatar": "blur",
198
+ "banner": "blur"
199
+ },
200
+ "content": {
201
+ "contentMedia": "blur"
185
202
  }
186
- ]
203
+ }
187
204
  },
188
205
  {
189
- "id": "misinfo",
206
+ "identifier": "gore",
207
+ "flags": ["adult"],
190
208
  "configurable": true,
191
- "labels": [
192
- {
193
- "id": "account-security",
194
- "preferences": ["ignore", "warn", "hide"],
195
- "flags": [],
196
- "onwarn": "blur"
197
- },
198
- {
199
- "id": "net-abuse",
200
- "preferences": ["ignore", "warn", "hide"],
201
- "flags": [],
202
- "onwarn": "blur"
203
- },
204
- {
205
- "id": "impersonation",
206
- "preferences": ["ignore", "warn", "hide"],
207
- "flags": [],
208
- "onwarn": "alert"
209
- },
210
- {
211
- "id": "scam",
212
- "preferences": ["ignore", "warn", "hide"],
213
- "flags": [],
214
- "onwarn": "alert"
215
- },
216
- {
217
- "id": "misleading",
218
- "preferences": ["ignore", "warn", "hide"],
219
- "flags": [],
220
- "onwarn": "alert"
209
+ "defaultSetting": "warn",
210
+ "severity": "none",
211
+ "blurs": "media",
212
+ "behaviors": {
213
+ "account": {
214
+ "avatar": "blur",
215
+ "banner": "blur"
216
+ },
217
+ "profile": {
218
+ "avatar": "blur",
219
+ "banner": "blur"
220
+ },
221
+ "content": {
222
+ "contentMedia": "blur"
221
223
  }
222
- ]
224
+ }
223
225
  }
224
226
  ]
package/dist/agent.d.ts CHANGED
@@ -4,6 +4,7 @@ export declare class AtpAgent {
4
4
  service: URL;
5
5
  api: AtpServiceClient;
6
6
  session?: AtpSessionData;
7
+ labelersHeader: string[];
7
8
  pdsUrl: URL | undefined;
8
9
  private _baseClient;
9
10
  private _persistSession?;
@@ -14,10 +15,11 @@ export declare class AtpAgent {
14
15
  constructor(opts: AtpAgentOpts);
15
16
  get hasSession(): boolean;
16
17
  setPersistSessionHandler(handler?: AtpPersistSessionHandler): void;
18
+ configureLabelersHeader(labelerDids: string[]): void;
17
19
  createAccount(opts: ComAtprotoServerCreateAccount.InputSchema): Promise<ComAtprotoServerCreateAccount.Response>;
18
20
  login(opts: AtpAgentLoginOpts): Promise<ComAtprotoServerCreateSession.Response>;
19
21
  resumeSession(session: AtpSessionData): Promise<ComAtprotoServerGetSession.Response>;
20
- private _addAuthHeader;
22
+ private _addHeaders;
21
23
  private _fetch;
22
24
  refreshSession(): Promise<void>;
23
25
  private _refreshSessionInner;
@@ -1,6 +1,7 @@
1
1
  import { AtpAgent } from './agent';
2
2
  import { AppBskyFeedPost, AppBskyActorProfile, AppBskyActorDefs } from './client';
3
- import { BskyPreferences, BskyLabelPreference, BskyFeedViewPreference, BskyThreadViewPreference, BskyInterestsPreference } from './types';
3
+ import { BskyPreferences, BskyFeedViewPreference, BskyThreadViewPreference, BskyInterestsPreference } from './types';
4
+ import { LabelPreference } from './moderation/types';
4
5
  declare global {
5
6
  interface Array<T> {
6
7
  findLast(predicate: (value: T, index: number, obj: T[]) => unknown, thisArg?: any): T;
@@ -25,6 +26,7 @@ export declare class BskyAgent extends AtpAgent {
25
26
  searchActorsTypeahead: typeof this.api.app.bsky.actor.searchActorsTypeahead;
26
27
  listNotifications: typeof this.api.app.bsky.notification.listNotifications;
27
28
  countUnreadNotifications: typeof this.api.app.bsky.notification.getUnreadCount;
29
+ getLabelers: typeof this.api.app.bsky.labeler.getServices;
28
30
  post(record: Partial<AppBskyFeedPost.Record> & Omit<AppBskyFeedPost.Record, 'createdAt'>): Promise<{
29
31
  uri: string;
30
32
  cid: string;
@@ -78,7 +80,9 @@ export declare class BskyAgent extends AtpAgent {
78
80
  pinned: string[];
79
81
  }>;
80
82
  setAdultContentEnabled(v: boolean): Promise<void>;
81
- setContentLabelPref(key: string, value: BskyLabelPreference): Promise<void>;
83
+ setContentLabelPref(key: string, value: LabelPreference, labelerDid?: string): Promise<void>;
84
+ addModService(did: string): Promise<void>;
85
+ removeModService(did: string): Promise<void>;
82
86
  setPersonalDetails({ birthDate, }: {
83
87
  birthDate: string | Date | undefined;
84
88
  }): Promise<void>;