@atproto/api 0.0.5 → 0.0.7

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 (257) hide show
  1. package/dist/client/index.d.ts +72 -44
  2. package/dist/client/lexicons.d.ts +1034 -398
  3. package/dist/client/types/app/bsky/actor/getProfile.d.ts +0 -2
  4. package/dist/client/types/app/bsky/actor/search.d.ts +1 -1
  5. package/dist/client/types/app/bsky/actor/searchTypeahead.d.ts +1 -1
  6. package/dist/client/types/app/bsky/actor/updateProfile.d.ts +0 -1
  7. package/dist/client/types/app/bsky/feed/feedViewPost.d.ts +1 -8
  8. package/dist/client/types/app/bsky/graph/getFollows.d.ts +1 -0
  9. package/dist/client/types/app/bsky/notification/list.d.ts +1 -1
  10. package/dist/client/types/app/bsky/system/declRef.d.ts +1 -1
  11. package/dist/client/types/app/bsky/system/declaration.d.ts +1 -1
  12. package/dist/client/types/com/atproto/admin/getModerationAction.d.ts +16 -0
  13. package/dist/client/types/com/atproto/admin/getModerationActions.d.ts +22 -0
  14. package/dist/client/types/com/atproto/admin/getModerationReport.d.ts +16 -0
  15. package/dist/client/types/com/atproto/admin/getModerationReports.d.ts +23 -0
  16. package/dist/client/types/com/atproto/admin/getRecord.d.ts +17 -0
  17. package/dist/client/types/com/atproto/admin/getRepo.d.ts +16 -0
  18. package/dist/client/types/com/atproto/admin/moderationAction.d.ts +49 -0
  19. package/dist/client/types/com/atproto/admin/moderationReport.d.ts +37 -0
  20. package/dist/client/types/com/atproto/admin/record.d.ts +40 -0
  21. package/dist/client/types/com/atproto/admin/repo.d.ts +45 -0
  22. package/dist/client/types/com/atproto/admin/resolveModerationReports.d.ts +22 -0
  23. package/dist/client/types/com/atproto/admin/reverseModerationAction.d.ts +22 -0
  24. package/dist/client/types/com/atproto/admin/searchRepos.d.ts +22 -0
  25. package/dist/client/types/com/atproto/admin/takeModerationAction.d.ts +28 -0
  26. package/dist/client/types/com/atproto/repo/recordRef.d.ts +8 -0
  27. package/dist/client/types/com/atproto/repo/repoRef.d.ts +7 -0
  28. package/dist/client/types/com/atproto/report/create.d.ts +39 -0
  29. package/dist/client/types/com/atproto/report/reasonType.d.ts +3 -0
  30. package/dist/client/types/com/atproto/report/subject.d.ts +23 -0
  31. package/dist/client/types/com/atproto/session/create.d.ts +5 -2
  32. package/dist/client/types/com/atproto/session/refresh.d.ts +4 -1
  33. package/dist/client/types/com/atproto/sync/getCheckout.d.ts +15 -0
  34. package/dist/client/types/com/atproto/sync/getCommitPath.d.ts +20 -0
  35. package/dist/client/types/com/atproto/sync/getHead.d.ts +18 -0
  36. package/dist/client/types/com/atproto/sync/getRecord.d.ts +17 -0
  37. package/dist/index.js +2040 -988
  38. package/dist/index.js.map +4 -4
  39. package/dist/src/client/index.d.ts +474 -0
  40. package/dist/src/client/lexicons.d.ts +3036 -0
  41. package/dist/src/client/schemas.d.ts +17 -0
  42. package/dist/src/client/types/app/bsky/actor/createScene.d.ts +32 -0
  43. package/dist/src/client/types/app/bsky/actor/getProfile.d.ts +36 -0
  44. package/dist/src/client/types/app/bsky/actor/getSuggestions.d.ts +36 -0
  45. package/dist/src/client/types/app/bsky/actor/profile.d.ts +15 -0
  46. package/dist/src/client/types/app/bsky/actor/ref.d.ts +14 -0
  47. package/dist/src/client/types/app/bsky/actor/search.d.ts +32 -0
  48. package/dist/src/client/types/app/bsky/actor/searchTypeahead.d.ts +28 -0
  49. package/dist/src/client/types/app/bsky/actor/updateProfile.d.ts +48 -0
  50. package/dist/src/client/types/app/bsky/administration/moderationAction.d.ts +16 -0
  51. package/dist/src/client/types/app/bsky/administration/reverseModerationAction.d.ts +22 -0
  52. package/dist/src/client/types/app/bsky/administration/takeModerationAction.d.ts +27 -0
  53. package/dist/src/client/types/app/bsky/badge.d.ts +22 -0
  54. package/dist/src/client/types/app/bsky/badgeAccept.d.ts +11 -0
  55. package/dist/src/client/types/app/bsky/badgeOffer.d.ts +11 -0
  56. package/dist/src/client/types/app/bsky/declaration.d.ts +6 -0
  57. package/dist/src/client/types/app/bsky/embed/external.d.ts +26 -0
  58. package/dist/src/client/types/app/bsky/embed/images.d.ts +23 -0
  59. package/dist/src/client/types/app/bsky/feed/embed.d.ts +36 -0
  60. package/dist/src/client/types/app/bsky/feed/feedViewPost.d.ts +26 -0
  61. package/dist/src/client/types/app/bsky/feed/getAuthorFeed.d.ts +22 -0
  62. package/dist/src/client/types/app/bsky/feed/getPostThread.d.ts +43 -0
  63. package/dist/src/client/types/app/bsky/feed/getRepostedBy.d.ts +35 -0
  64. package/dist/src/client/types/app/bsky/feed/getTimeline.d.ts +22 -0
  65. package/dist/src/client/types/app/bsky/feed/getVotes.d.ts +33 -0
  66. package/dist/src/client/types/app/bsky/feed/mediaEmbed.d.ts +15 -0
  67. package/dist/src/client/types/app/bsky/feed/post.d.ts +54 -0
  68. package/dist/src/client/types/app/bsky/feed/repost.d.ts +6 -0
  69. package/dist/src/client/types/app/bsky/feed/setVote.d.ts +25 -0
  70. package/dist/src/client/types/app/bsky/feed/trend.d.ts +6 -0
  71. package/dist/src/client/types/app/bsky/feed/vote.d.ts +7 -0
  72. package/dist/src/client/types/app/bsky/follow.d.ts +9 -0
  73. package/dist/src/client/types/app/bsky/getAuthorFeed.d.ts +56 -0
  74. package/dist/src/client/types/app/bsky/getBadgeMembers.d.ts +29 -0
  75. package/dist/src/client/types/app/bsky/getHomeFeed.d.ts +56 -0
  76. package/dist/src/client/types/app/bsky/getLikedBy.d.ts +29 -0
  77. package/dist/src/client/types/app/bsky/getNotificationCount.d.ts +16 -0
  78. package/dist/src/client/types/app/bsky/getNotifications.d.ts +33 -0
  79. package/dist/src/client/types/app/bsky/getPostThread.d.ts +55 -0
  80. package/dist/src/client/types/app/bsky/getProfile.d.ts +26 -0
  81. package/dist/src/client/types/app/bsky/getRepostedBy.d.ts +29 -0
  82. package/dist/src/client/types/app/bsky/getTimeline.d.ts +56 -0
  83. package/dist/src/client/types/app/bsky/getUserFollowers.d.ts +31 -0
  84. package/dist/src/client/types/app/bsky/getUserFollows.d.ts +31 -0
  85. package/dist/src/client/types/app/bsky/getUsersSearch.d.ts +26 -0
  86. package/dist/src/client/types/app/bsky/getUsersTypeahead.d.ts +22 -0
  87. package/dist/src/client/types/app/bsky/graph/assertCreator.d.ts +1 -0
  88. package/dist/src/client/types/app/bsky/graph/assertMember.d.ts +1 -0
  89. package/dist/src/client/types/app/bsky/graph/assertion.d.ts +7 -0
  90. package/dist/src/client/types/app/bsky/graph/confirmation.d.ts +8 -0
  91. package/dist/src/client/types/app/bsky/graph/follow.d.ts +6 -0
  92. package/dist/src/client/types/app/bsky/graph/getAssertions.d.ts +43 -0
  93. package/dist/src/client/types/app/bsky/graph/getFollowers.d.ts +34 -0
  94. package/dist/src/client/types/app/bsky/graph/getFollows.d.ts +33 -0
  95. package/dist/src/client/types/app/bsky/graph/getMembers.d.ts +33 -0
  96. package/dist/src/client/types/app/bsky/graph/getMemberships.d.ts +33 -0
  97. package/dist/src/client/types/app/bsky/invite.d.ts +10 -0
  98. package/dist/src/client/types/app/bsky/inviteAccept.d.ts +14 -0
  99. package/dist/src/client/types/app/bsky/like.d.ts +10 -0
  100. package/dist/src/client/types/app/bsky/mediaEmbed.d.ts +15 -0
  101. package/dist/src/client/types/app/bsky/notification/getCount.d.ts +17 -0
  102. package/dist/src/client/types/app/bsky/notification/list.d.ts +32 -0
  103. package/dist/src/client/types/app/bsky/notification/updateSeen.d.ts +17 -0
  104. package/dist/src/client/types/app/bsky/post.d.ts +23 -0
  105. package/dist/src/client/types/app/bsky/postNotificationsSeen.d.ts +20 -0
  106. package/dist/src/client/types/app/bsky/profile.d.ts +5 -0
  107. package/dist/src/client/types/app/bsky/repost.d.ts +10 -0
  108. package/dist/src/client/types/app/bsky/system/actorScene.d.ts +1 -0
  109. package/dist/src/client/types/app/bsky/system/actorUser.d.ts +1 -0
  110. package/dist/src/client/types/app/bsky/system/declRef.d.ts +5 -0
  111. package/dist/src/client/types/app/bsky/system/declaration.d.ts +4 -0
  112. package/dist/src/client/types/app/bsky/updateProfile.d.ts +23 -0
  113. package/dist/src/client/types/com/atproto/account/create.d.ts +41 -0
  114. package/dist/src/client/types/com/atproto/account/createInviteCode.d.ts +22 -0
  115. package/dist/src/client/types/com/atproto/account/delete.d.ts +13 -0
  116. package/dist/src/client/types/com/atproto/account/get.d.ts +12 -0
  117. package/dist/src/client/types/com/atproto/account/requestPasswordReset.d.ts +17 -0
  118. package/dist/src/client/types/com/atproto/account/resetPassword.d.ts +24 -0
  119. package/dist/src/client/types/com/atproto/blob/upload.d.ts +19 -0
  120. package/dist/src/client/types/com/atproto/createAccount.d.ts +40 -0
  121. package/dist/src/client/types/com/atproto/createInviteCode.d.ts +20 -0
  122. package/dist/src/client/types/com/atproto/createSession.d.ts +24 -0
  123. package/dist/src/client/types/com/atproto/data/uploadFile.d.ts +19 -0
  124. package/dist/src/client/types/com/atproto/deleteAccount.d.ts +20 -0
  125. package/dist/src/client/types/com/atproto/deleteSession.d.ts +17 -0
  126. package/dist/src/client/types/com/atproto/getAccount.d.ts +16 -0
  127. package/dist/src/client/types/com/atproto/getAccountsConfig.d.ts +17 -0
  128. package/dist/src/client/types/com/atproto/getSession.d.ts +17 -0
  129. package/dist/src/client/types/com/atproto/handle/resolve.d.ts +18 -0
  130. package/dist/src/client/types/com/atproto/refreshSession.d.ts +20 -0
  131. package/dist/src/client/types/com/atproto/repo/batchWrite.d.ts +39 -0
  132. package/dist/src/client/types/com/atproto/repo/createRecord.d.ts +26 -0
  133. package/dist/src/client/types/com/atproto/repo/deleteRecord.d.ts +19 -0
  134. package/dist/src/client/types/com/atproto/repo/describe.d.ts +22 -0
  135. package/dist/src/client/types/com/atproto/repo/getRecord.d.ts +23 -0
  136. package/dist/src/client/types/com/atproto/repo/listRecords.d.ts +30 -0
  137. package/dist/src/client/types/com/atproto/repo/putRecord.d.ts +27 -0
  138. package/dist/src/client/types/com/atproto/repo/strongRef.d.ts +5 -0
  139. package/dist/src/client/types/com/atproto/repoBatchWrite.d.ts +36 -0
  140. package/dist/src/client/types/com/atproto/repoCreateRecord.d.ts +24 -0
  141. package/dist/src/client/types/com/atproto/repoDeleteRecord.d.ts +18 -0
  142. package/dist/src/client/types/com/atproto/repoDescribe.d.ts +21 -0
  143. package/dist/src/client/types/com/atproto/repoGetRecord.d.ts +22 -0
  144. package/dist/src/client/types/com/atproto/repoListRecords.d.ts +27 -0
  145. package/dist/src/client/types/com/atproto/repoPutRecord.d.ts +25 -0
  146. package/dist/src/client/types/com/atproto/requestAccountPasswordReset.d.ts +19 -0
  147. package/dist/src/client/types/com/atproto/resetAccountPassword.d.ts +26 -0
  148. package/dist/src/client/types/com/atproto/resolveHandle.d.ts +17 -0
  149. package/dist/src/client/types/com/atproto/resolveName.d.ts +17 -0
  150. package/dist/src/client/types/com/atproto/server/getAccountsConfig.d.ts +24 -0
  151. package/dist/src/client/types/com/atproto/session/create.d.ts +29 -0
  152. package/dist/src/client/types/com/atproto/session/delete.d.ts +13 -0
  153. package/dist/src/client/types/com/atproto/session/get.d.ts +18 -0
  154. package/dist/src/client/types/com/atproto/session/refresh.d.ts +24 -0
  155. package/dist/src/client/types/com/atproto/sync/getRepo.d.ts +15 -0
  156. package/dist/src/client/types/com/atproto/sync/getRoot.d.ts +18 -0
  157. package/dist/src/client/types/com/atproto/sync/updateRepo.d.ts +15 -0
  158. package/dist/src/client/types/com/atproto/syncGetRepo.d.ts +15 -0
  159. package/dist/src/client/types/com/atproto/syncGetRoot.d.ts +17 -0
  160. package/dist/src/client/types/com/atproto/syncUpdateRepo.d.ts +15 -0
  161. package/dist/src/index.d.ts +4 -0
  162. package/dist/src/schemas.d.ts +19 -0
  163. package/dist/src/session.d.ts +42 -0
  164. package/dist/src/types/app/bsky/badge.d.ts +22 -0
  165. package/dist/src/types/app/bsky/badgeAccept.d.ts +11 -0
  166. package/dist/src/types/app/bsky/badgeOffer.d.ts +11 -0
  167. package/dist/src/types/app/bsky/declaration.d.ts +6 -0
  168. package/dist/src/types/app/bsky/follow.d.ts +9 -0
  169. package/dist/src/types/app/bsky/getAuthorFeed.d.ts +56 -0
  170. package/dist/src/types/app/bsky/getBadgeMembers.d.ts +29 -0
  171. package/dist/src/types/app/bsky/getHomeFeed.d.ts +56 -0
  172. package/dist/src/types/app/bsky/getLikedBy.d.ts +29 -0
  173. package/dist/src/types/app/bsky/getNotificationCount.d.ts +16 -0
  174. package/dist/src/types/app/bsky/getNotifications.d.ts +33 -0
  175. package/dist/src/types/app/bsky/getPostThread.d.ts +55 -0
  176. package/dist/src/types/app/bsky/getProfile.d.ts +42 -0
  177. package/dist/src/types/app/bsky/getRepostedBy.d.ts +29 -0
  178. package/dist/src/types/app/bsky/getUserFollowers.d.ts +31 -0
  179. package/dist/src/types/app/bsky/getUserFollows.d.ts +31 -0
  180. package/dist/src/types/app/bsky/getUsersSearch.d.ts +26 -0
  181. package/dist/src/types/app/bsky/getUsersTypeahead.d.ts +22 -0
  182. package/dist/src/types/app/bsky/invite.d.ts +10 -0
  183. package/dist/src/types/app/bsky/inviteAccept.d.ts +14 -0
  184. package/dist/src/types/app/bsky/like.d.ts +10 -0
  185. package/dist/src/types/app/bsky/mediaEmbed.d.ts +15 -0
  186. package/dist/src/types/app/bsky/post.d.ts +23 -0
  187. package/dist/src/types/app/bsky/postNotificationsSeen.d.ts +19 -0
  188. package/dist/src/types/app/bsky/profile.d.ts +11 -0
  189. package/dist/src/types/app/bsky/repost.d.ts +10 -0
  190. package/dist/src/types/app/bsky/updateProfile.d.ts +27 -0
  191. package/dist/src/types/com/atproto/createAccount.d.ts +39 -0
  192. package/dist/src/types/com/atproto/createInviteCode.d.ts +19 -0
  193. package/dist/src/types/com/atproto/createSession.d.ts +23 -0
  194. package/dist/src/types/com/atproto/deleteAccount.d.ts +19 -0
  195. package/dist/src/types/com/atproto/deleteSession.d.ts +16 -0
  196. package/dist/src/types/com/atproto/getAccount.d.ts +19 -0
  197. package/dist/src/types/com/atproto/getAccountsConfig.d.ts +17 -0
  198. package/dist/src/types/com/atproto/getSession.d.ts +17 -0
  199. package/dist/src/types/com/atproto/refreshSession.d.ts +19 -0
  200. package/dist/src/types/com/atproto/repoBatchWrite.d.ts +35 -0
  201. package/dist/src/types/com/atproto/repoCreateRecord.d.ts +23 -0
  202. package/dist/src/types/com/atproto/repoDeleteRecord.d.ts +15 -0
  203. package/dist/src/types/com/atproto/repoDescribe.d.ts +21 -0
  204. package/dist/src/types/com/atproto/repoGetRecord.d.ts +22 -0
  205. package/dist/src/types/com/atproto/repoListRecords.d.ts +27 -0
  206. package/dist/src/types/com/atproto/repoPutRecord.d.ts +24 -0
  207. package/dist/src/types/com/atproto/requestAccountPasswordReset.d.ts +18 -0
  208. package/dist/src/types/com/atproto/resetAccountPassword.d.ts +25 -0
  209. package/dist/src/types/com/atproto/resolveName.d.ts +17 -0
  210. package/dist/src/types/com/atproto/syncGetRepo.d.ts +15 -0
  211. package/dist/src/types/com/atproto/syncGetRoot.d.ts +17 -0
  212. package/dist/src/types/com/atproto/syncUpdateRepo.d.ts +14 -0
  213. package/dist/tsconfig.build.tsbuildinfo +1 -0
  214. package/package.json +1 -1
  215. package/src/client/index.ts +236 -142
  216. package/src/client/lexicons.ts +1151 -443
  217. package/src/client/types/app/bsky/actor/getProfile.ts +0 -2
  218. package/src/client/types/app/bsky/actor/search.ts +1 -1
  219. package/src/client/types/app/bsky/actor/searchTypeahead.ts +1 -1
  220. package/src/client/types/app/bsky/actor/updateProfile.ts +0 -1
  221. package/src/client/types/app/bsky/feed/feedViewPost.ts +1 -19
  222. package/src/client/types/app/bsky/graph/getFollows.ts +1 -0
  223. package/src/client/types/app/bsky/notification/list.ts +1 -2
  224. package/src/client/types/app/bsky/system/declRef.ts +1 -4
  225. package/src/client/types/app/bsky/system/declaration.ts +1 -4
  226. package/src/client/types/com/atproto/admin/getModerationAction.ts +31 -0
  227. package/src/client/types/com/atproto/admin/getModerationActions.ts +38 -0
  228. package/src/client/types/com/atproto/admin/getModerationReport.ts +31 -0
  229. package/src/client/types/com/atproto/admin/getModerationReports.ts +39 -0
  230. package/src/client/types/com/atproto/admin/getRecord.ts +32 -0
  231. package/src/client/types/com/atproto/admin/getRepo.ts +31 -0
  232. package/src/client/types/com/atproto/admin/moderationAction.ts +99 -0
  233. package/src/client/types/com/atproto/admin/moderationReport.ts +64 -0
  234. package/src/client/types/com/atproto/admin/record.ts +89 -0
  235. package/src/client/types/com/atproto/admin/repo.ts +103 -0
  236. package/src/client/types/com/atproto/admin/resolveModerationReports.ts +37 -0
  237. package/src/client/types/com/atproto/admin/reverseModerationAction.ts +37 -0
  238. package/src/client/types/com/atproto/admin/searchRepos.ts +38 -0
  239. package/src/client/types/com/atproto/admin/takeModerationAction.ts +47 -0
  240. package/src/client/types/com/atproto/repo/recordRef.ts +25 -0
  241. package/src/client/types/com/atproto/repo/repoRef.ts +24 -0
  242. package/src/client/types/com/atproto/report/create.ts +54 -0
  243. package/src/client/types/com/atproto/report/reasonType.ts +16 -0
  244. package/src/client/types/com/atproto/report/subject.ts +66 -0
  245. package/src/client/types/com/atproto/session/create.ts +9 -1
  246. package/src/client/types/com/atproto/session/refresh.ts +7 -0
  247. package/src/client/types/com/atproto/sync/{updateRepo.ts → getCheckout.ts} +4 -3
  248. package/src/client/types/com/atproto/sync/getCommitPath.ts +39 -0
  249. package/src/client/types/com/atproto/sync/{getRoot.ts → getHead.ts} +0 -0
  250. package/src/client/types/com/atproto/sync/getRecord.ts +34 -0
  251. package/tsconfig.build.tsbuildinfo +1 -1
  252. package/src/client/types/app/bsky/actor/createScene.ts +0 -55
  253. package/src/client/types/app/bsky/feed/trend.ts +0 -26
  254. package/src/client/types/app/bsky/graph/getAssertions.ts +0 -85
  255. package/src/client/types/app/bsky/graph/getMembers.ts +0 -62
  256. package/src/client/types/app/bsky/graph/getMemberships.ts +0 -62
  257. package/src/client/types/app/bsky/system/actorScene.ts +0 -9
@@ -162,6 +162,739 @@ export declare const schemaDict: {
162
162
  };
163
163
  };
164
164
  };
165
+ ComAtprotoAdminGetModerationAction: {
166
+ lexicon: number;
167
+ id: string;
168
+ defs: {
169
+ main: {
170
+ type: string;
171
+ description: string;
172
+ parameters: {
173
+ type: string;
174
+ required: string[];
175
+ properties: {
176
+ id: {
177
+ type: string;
178
+ };
179
+ };
180
+ };
181
+ output: {
182
+ encoding: string;
183
+ schema: {
184
+ type: string;
185
+ ref: string;
186
+ };
187
+ };
188
+ };
189
+ };
190
+ };
191
+ ComAtprotoAdminGetModerationActions: {
192
+ lexicon: number;
193
+ id: string;
194
+ defs: {
195
+ main: {
196
+ type: string;
197
+ description: string;
198
+ parameters: {
199
+ type: string;
200
+ properties: {
201
+ subject: {
202
+ type: string;
203
+ };
204
+ limit: {
205
+ type: string;
206
+ minimum: number;
207
+ maximum: number;
208
+ default: number;
209
+ };
210
+ before: {
211
+ type: string;
212
+ };
213
+ };
214
+ };
215
+ output: {
216
+ encoding: string;
217
+ schema: {
218
+ type: string;
219
+ required: string[];
220
+ properties: {
221
+ cursor: {
222
+ type: string;
223
+ };
224
+ actions: {
225
+ type: string;
226
+ items: {
227
+ type: string;
228
+ ref: string;
229
+ };
230
+ };
231
+ };
232
+ };
233
+ };
234
+ };
235
+ };
236
+ };
237
+ ComAtprotoAdminGetModerationReport: {
238
+ lexicon: number;
239
+ id: string;
240
+ defs: {
241
+ main: {
242
+ type: string;
243
+ description: string;
244
+ parameters: {
245
+ type: string;
246
+ required: string[];
247
+ properties: {
248
+ id: {
249
+ type: string;
250
+ };
251
+ };
252
+ };
253
+ output: {
254
+ encoding: string;
255
+ schema: {
256
+ type: string;
257
+ ref: string;
258
+ };
259
+ };
260
+ };
261
+ };
262
+ };
263
+ ComAtprotoAdminGetModerationReports: {
264
+ lexicon: number;
265
+ id: string;
266
+ defs: {
267
+ main: {
268
+ type: string;
269
+ description: string;
270
+ parameters: {
271
+ type: string;
272
+ properties: {
273
+ subject: {
274
+ type: string;
275
+ };
276
+ resolved: {
277
+ type: string;
278
+ };
279
+ limit: {
280
+ type: string;
281
+ minimum: number;
282
+ maximum: number;
283
+ default: number;
284
+ };
285
+ before: {
286
+ type: string;
287
+ };
288
+ };
289
+ };
290
+ output: {
291
+ encoding: string;
292
+ schema: {
293
+ type: string;
294
+ required: string[];
295
+ properties: {
296
+ cursor: {
297
+ type: string;
298
+ };
299
+ reports: {
300
+ type: string;
301
+ items: {
302
+ type: string;
303
+ ref: string;
304
+ };
305
+ };
306
+ };
307
+ };
308
+ };
309
+ };
310
+ };
311
+ };
312
+ ComAtprotoAdminGetRecord: {
313
+ lexicon: number;
314
+ id: string;
315
+ defs: {
316
+ main: {
317
+ type: string;
318
+ description: string;
319
+ parameters: {
320
+ type: string;
321
+ required: string[];
322
+ properties: {
323
+ uri: {
324
+ type: string;
325
+ };
326
+ cid: {
327
+ type: string;
328
+ };
329
+ };
330
+ };
331
+ output: {
332
+ encoding: string;
333
+ schema: {
334
+ type: string;
335
+ ref: string;
336
+ };
337
+ };
338
+ };
339
+ };
340
+ };
341
+ ComAtprotoAdminGetRepo: {
342
+ lexicon: number;
343
+ id: string;
344
+ defs: {
345
+ main: {
346
+ type: string;
347
+ description: string;
348
+ parameters: {
349
+ type: string;
350
+ required: string[];
351
+ properties: {
352
+ did: {
353
+ type: string;
354
+ };
355
+ };
356
+ };
357
+ output: {
358
+ encoding: string;
359
+ schema: {
360
+ type: string;
361
+ ref: string;
362
+ };
363
+ };
364
+ };
365
+ };
366
+ };
367
+ ComAtprotoAdminModerationAction: {
368
+ lexicon: number;
369
+ id: string;
370
+ defs: {
371
+ view: {
372
+ type: string;
373
+ required: string[];
374
+ properties: {
375
+ id: {
376
+ type: string;
377
+ };
378
+ action: {
379
+ type: string;
380
+ knownValues: string[];
381
+ };
382
+ subject: {
383
+ type: string;
384
+ refs: string[];
385
+ };
386
+ reason: {
387
+ type: string;
388
+ };
389
+ createdBy: {
390
+ type: string;
391
+ };
392
+ createdAt: {
393
+ type: string;
394
+ };
395
+ reversal: {
396
+ type: string;
397
+ ref: string;
398
+ };
399
+ resolvedReportIds: {
400
+ type: string;
401
+ items: {
402
+ type: string;
403
+ };
404
+ };
405
+ };
406
+ };
407
+ viewDetail: {
408
+ type: string;
409
+ required: string[];
410
+ properties: {
411
+ id: {
412
+ type: string;
413
+ };
414
+ action: {
415
+ type: string;
416
+ knownValues: string[];
417
+ };
418
+ subject: {
419
+ type: string;
420
+ refs: string[];
421
+ };
422
+ reason: {
423
+ type: string;
424
+ };
425
+ createdBy: {
426
+ type: string;
427
+ };
428
+ createdAt: {
429
+ type: string;
430
+ };
431
+ reversal: {
432
+ type: string;
433
+ ref: string;
434
+ };
435
+ resolvedReports: {
436
+ type: string;
437
+ items: {
438
+ type: string;
439
+ ref: string;
440
+ };
441
+ };
442
+ };
443
+ };
444
+ reversal: {
445
+ type: string;
446
+ required: string[];
447
+ properties: {
448
+ reason: {
449
+ type: string;
450
+ };
451
+ createdBy: {
452
+ type: string;
453
+ };
454
+ createdAt: {
455
+ type: string;
456
+ };
457
+ };
458
+ };
459
+ takedown: {
460
+ type: string;
461
+ description: string;
462
+ };
463
+ flag: {
464
+ type: string;
465
+ description: string;
466
+ };
467
+ acknowledge: {
468
+ type: string;
469
+ description: string;
470
+ };
471
+ };
472
+ };
473
+ ComAtprotoAdminModerationReport: {
474
+ lexicon: number;
475
+ id: string;
476
+ defs: {
477
+ view: {
478
+ type: string;
479
+ required: string[];
480
+ properties: {
481
+ id: {
482
+ type: string;
483
+ };
484
+ reasonType: {
485
+ type: string;
486
+ ref: string;
487
+ };
488
+ reason: {
489
+ type: string;
490
+ };
491
+ subject: {
492
+ type: string;
493
+ refs: string[];
494
+ };
495
+ reportedByDid: {
496
+ type: string;
497
+ };
498
+ createdAt: {
499
+ type: string;
500
+ };
501
+ resolvedByActionIds: {
502
+ type: string;
503
+ items: {
504
+ type: string;
505
+ };
506
+ };
507
+ };
508
+ };
509
+ viewDetail: {
510
+ type: string;
511
+ required: string[];
512
+ properties: {
513
+ id: {
514
+ type: string;
515
+ };
516
+ reasonType: {
517
+ type: string;
518
+ ref: string;
519
+ };
520
+ reason: {
521
+ type: string;
522
+ };
523
+ subject: {
524
+ type: string;
525
+ refs: string[];
526
+ };
527
+ reportedByDid: {
528
+ type: string;
529
+ };
530
+ createdAt: {
531
+ type: string;
532
+ };
533
+ resolvedByActions: {
534
+ type: string;
535
+ items: {
536
+ type: string;
537
+ ref: string;
538
+ };
539
+ };
540
+ };
541
+ };
542
+ };
543
+ };
544
+ ComAtprotoAdminRecord: {
545
+ lexicon: number;
546
+ id: string;
547
+ defs: {
548
+ view: {
549
+ type: string;
550
+ required: string[];
551
+ properties: {
552
+ uri: {
553
+ type: string;
554
+ };
555
+ cid: {
556
+ type: string;
557
+ };
558
+ value: {
559
+ type: string;
560
+ };
561
+ indexedAt: {
562
+ type: string;
563
+ };
564
+ moderation: {
565
+ type: string;
566
+ ref: string;
567
+ };
568
+ repo: {
569
+ type: string;
570
+ ref: string;
571
+ };
572
+ };
573
+ };
574
+ viewDetail: {
575
+ type: string;
576
+ required: string[];
577
+ properties: {
578
+ uri: {
579
+ type: string;
580
+ };
581
+ cid: {
582
+ type: string;
583
+ };
584
+ value: {
585
+ type: string;
586
+ };
587
+ indexedAt: {
588
+ type: string;
589
+ };
590
+ moderation: {
591
+ type: string;
592
+ ref: string;
593
+ };
594
+ repo: {
595
+ type: string;
596
+ ref: string;
597
+ };
598
+ };
599
+ };
600
+ moderation: {
601
+ type: string;
602
+ required: never[];
603
+ properties: {
604
+ takedownId: {
605
+ type: string;
606
+ };
607
+ };
608
+ };
609
+ moderationDetail: {
610
+ type: string;
611
+ required: string[];
612
+ properties: {
613
+ actions: {
614
+ type: string;
615
+ items: {
616
+ type: string;
617
+ ref: string;
618
+ };
619
+ };
620
+ reports: {
621
+ type: string;
622
+ items: {
623
+ type: string;
624
+ ref: string;
625
+ };
626
+ };
627
+ takedownId: {
628
+ type: string;
629
+ };
630
+ };
631
+ };
632
+ };
633
+ };
634
+ ComAtprotoAdminRepo: {
635
+ lexicon: number;
636
+ id: string;
637
+ defs: {
638
+ view: {
639
+ type: string;
640
+ required: string[];
641
+ properties: {
642
+ did: {
643
+ type: string;
644
+ };
645
+ handle: {
646
+ type: string;
647
+ };
648
+ account: {
649
+ type: string;
650
+ ref: string;
651
+ };
652
+ relatedRecords: {
653
+ type: string;
654
+ items: {
655
+ type: string;
656
+ };
657
+ };
658
+ indexedAt: {
659
+ type: string;
660
+ };
661
+ moderation: {
662
+ type: string;
663
+ ref: string;
664
+ };
665
+ };
666
+ };
667
+ viewDetail: {
668
+ type: string;
669
+ required: string[];
670
+ properties: {
671
+ did: {
672
+ type: string;
673
+ };
674
+ handle: {
675
+ type: string;
676
+ };
677
+ account: {
678
+ type: string;
679
+ ref: string;
680
+ };
681
+ relatedRecords: {
682
+ type: string;
683
+ items: {
684
+ type: string;
685
+ };
686
+ };
687
+ indexedAt: {
688
+ type: string;
689
+ };
690
+ moderation: {
691
+ type: string;
692
+ ref: string;
693
+ };
694
+ };
695
+ };
696
+ account: {
697
+ type: string;
698
+ required: string[];
699
+ properties: {
700
+ email: {
701
+ type: string;
702
+ };
703
+ };
704
+ };
705
+ moderation: {
706
+ type: string;
707
+ required: never[];
708
+ properties: {
709
+ takedownId: {
710
+ type: string;
711
+ };
712
+ };
713
+ };
714
+ moderationDetail: {
715
+ type: string;
716
+ required: string[];
717
+ properties: {
718
+ actions: {
719
+ type: string;
720
+ items: {
721
+ type: string;
722
+ ref: string;
723
+ };
724
+ };
725
+ reports: {
726
+ type: string;
727
+ items: {
728
+ type: string;
729
+ ref: string;
730
+ };
731
+ };
732
+ takedownId: {
733
+ type: string;
734
+ };
735
+ };
736
+ };
737
+ };
738
+ };
739
+ ComAtprotoAdminResolveModerationReports: {
740
+ lexicon: number;
741
+ id: string;
742
+ defs: {
743
+ main: {
744
+ type: string;
745
+ description: string;
746
+ input: {
747
+ encoding: string;
748
+ schema: {
749
+ type: string;
750
+ required: string[];
751
+ properties: {
752
+ actionId: {
753
+ type: string;
754
+ };
755
+ reportIds: {
756
+ type: string;
757
+ items: {
758
+ type: string;
759
+ };
760
+ };
761
+ createdBy: {
762
+ type: string;
763
+ };
764
+ };
765
+ };
766
+ };
767
+ output: {
768
+ encoding: string;
769
+ schema: {
770
+ type: string;
771
+ ref: string;
772
+ };
773
+ };
774
+ };
775
+ };
776
+ };
777
+ ComAtprotoAdminReverseModerationAction: {
778
+ lexicon: number;
779
+ id: string;
780
+ defs: {
781
+ main: {
782
+ type: string;
783
+ description: string;
784
+ input: {
785
+ encoding: string;
786
+ schema: {
787
+ type: string;
788
+ required: string[];
789
+ properties: {
790
+ id: {
791
+ type: string;
792
+ };
793
+ reason: {
794
+ type: string;
795
+ };
796
+ createdBy: {
797
+ type: string;
798
+ };
799
+ };
800
+ };
801
+ };
802
+ output: {
803
+ encoding: string;
804
+ schema: {
805
+ type: string;
806
+ ref: string;
807
+ };
808
+ };
809
+ };
810
+ };
811
+ };
812
+ ComAtprotoAdminSearchRepos: {
813
+ lexicon: number;
814
+ id: string;
815
+ defs: {
816
+ main: {
817
+ type: string;
818
+ description: string;
819
+ parameters: {
820
+ type: string;
821
+ properties: {
822
+ term: {
823
+ type: string;
824
+ };
825
+ limit: {
826
+ type: string;
827
+ minimum: number;
828
+ maximum: number;
829
+ default: number;
830
+ };
831
+ before: {
832
+ type: string;
833
+ };
834
+ };
835
+ };
836
+ output: {
837
+ encoding: string;
838
+ schema: {
839
+ type: string;
840
+ required: string[];
841
+ properties: {
842
+ cursor: {
843
+ type: string;
844
+ };
845
+ repos: {
846
+ type: string;
847
+ items: {
848
+ type: string;
849
+ ref: string;
850
+ };
851
+ };
852
+ };
853
+ };
854
+ };
855
+ };
856
+ };
857
+ };
858
+ ComAtprotoAdminTakeModerationAction: {
859
+ lexicon: number;
860
+ id: string;
861
+ defs: {
862
+ main: {
863
+ type: string;
864
+ description: string;
865
+ input: {
866
+ encoding: string;
867
+ schema: {
868
+ type: string;
869
+ required: string[];
870
+ properties: {
871
+ action: {
872
+ type: string;
873
+ knownValues: string[];
874
+ };
875
+ subject: {
876
+ type: string;
877
+ refs: string[];
878
+ };
879
+ reason: {
880
+ type: string;
881
+ };
882
+ createdBy: {
883
+ type: string;
884
+ };
885
+ };
886
+ };
887
+ };
888
+ output: {
889
+ encoding: string;
890
+ schema: {
891
+ type: string;
892
+ ref: string;
893
+ };
894
+ };
895
+ };
896
+ };
897
+ };
165
898
  ComAtprotoBlobUpload: {
166
899
  lexicon: number;
167
900
  id: string;
@@ -531,23 +1264,135 @@ export declare const schemaDict: {
531
1264
  encoding: string;
532
1265
  schema: {
533
1266
  type: string;
534
- required: string[];
535
- properties: {
536
- cursor: {
537
- type: string;
538
- };
539
- records: {
540
- type: string;
541
- items: {
542
- type: string;
543
- ref: string;
544
- };
545
- };
546
- };
1267
+ required: string[];
1268
+ properties: {
1269
+ cursor: {
1270
+ type: string;
1271
+ };
1272
+ records: {
1273
+ type: string;
1274
+ items: {
1275
+ type: string;
1276
+ ref: string;
1277
+ };
1278
+ };
1279
+ };
1280
+ };
1281
+ };
1282
+ };
1283
+ record: {
1284
+ type: string;
1285
+ required: string[];
1286
+ properties: {
1287
+ uri: {
1288
+ type: string;
1289
+ };
1290
+ cid: {
1291
+ type: string;
1292
+ };
1293
+ value: {
1294
+ type: string;
1295
+ };
1296
+ };
1297
+ };
1298
+ };
1299
+ };
1300
+ ComAtprotoRepoPutRecord: {
1301
+ lexicon: number;
1302
+ id: string;
1303
+ defs: {
1304
+ main: {
1305
+ type: string;
1306
+ description: string;
1307
+ input: {
1308
+ encoding: string;
1309
+ schema: {
1310
+ type: string;
1311
+ required: string[];
1312
+ properties: {
1313
+ did: {
1314
+ type: string;
1315
+ description: string;
1316
+ };
1317
+ collection: {
1318
+ type: string;
1319
+ description: string;
1320
+ };
1321
+ rkey: {
1322
+ type: string;
1323
+ description: string;
1324
+ };
1325
+ validate: {
1326
+ type: string;
1327
+ default: boolean;
1328
+ description: string;
1329
+ };
1330
+ record: {
1331
+ type: string;
1332
+ description: string;
1333
+ };
1334
+ };
1335
+ };
1336
+ };
1337
+ output: {
1338
+ encoding: string;
1339
+ schema: {
1340
+ type: string;
1341
+ required: string[];
1342
+ properties: {
1343
+ uri: {
1344
+ type: string;
1345
+ };
1346
+ cid: {
1347
+ type: string;
1348
+ };
1349
+ };
1350
+ };
1351
+ };
1352
+ };
1353
+ };
1354
+ };
1355
+ ComAtprotoRepoRecordRef: {
1356
+ lexicon: number;
1357
+ id: string;
1358
+ description: string;
1359
+ defs: {
1360
+ main: {
1361
+ type: string;
1362
+ required: string[];
1363
+ properties: {
1364
+ uri: {
1365
+ type: string;
1366
+ };
1367
+ cid: {
1368
+ type: string;
1369
+ };
1370
+ };
1371
+ };
1372
+ };
1373
+ };
1374
+ ComAtprotoRepoRepoRef: {
1375
+ lexicon: number;
1376
+ id: string;
1377
+ description: string;
1378
+ defs: {
1379
+ main: {
1380
+ type: string;
1381
+ required: string[];
1382
+ properties: {
1383
+ did: {
1384
+ type: string;
547
1385
  };
548
1386
  };
549
1387
  };
550
- record: {
1388
+ };
1389
+ };
1390
+ ComAtprotoRepoStrongRef: {
1391
+ lexicon: number;
1392
+ id: string;
1393
+ description: string;
1394
+ defs: {
1395
+ main: {
551
1396
  type: string;
552
1397
  required: string[];
553
1398
  properties: {
@@ -557,14 +1402,11 @@ export declare const schemaDict: {
557
1402
  cid: {
558
1403
  type: string;
559
1404
  };
560
- value: {
561
- type: string;
562
- };
563
1405
  };
564
1406
  };
565
1407
  };
566
1408
  };
567
- ComAtprotoRepoPutRecord: {
1409
+ ComAtprotoReportCreate: {
568
1410
  lexicon: number;
569
1411
  id: string;
570
1412
  defs: {
@@ -577,26 +1419,16 @@ export declare const schemaDict: {
577
1419
  type: string;
578
1420
  required: string[];
579
1421
  properties: {
580
- did: {
581
- type: string;
582
- description: string;
583
- };
584
- collection: {
585
- type: string;
586
- description: string;
587
- };
588
- rkey: {
1422
+ reasonType: {
589
1423
  type: string;
590
- description: string;
1424
+ ref: string;
591
1425
  };
592
- validate: {
1426
+ reason: {
593
1427
  type: string;
594
- default: boolean;
595
- description: string;
596
1428
  };
597
- record: {
1429
+ subject: {
598
1430
  type: string;
599
- description: string;
1431
+ refs: string[];
600
1432
  };
601
1433
  };
602
1434
  };
@@ -607,10 +1439,24 @@ export declare const schemaDict: {
607
1439
  type: string;
608
1440
  required: string[];
609
1441
  properties: {
610
- uri: {
1442
+ id: {
611
1443
  type: string;
612
1444
  };
613
- cid: {
1445
+ reasonType: {
1446
+ type: string;
1447
+ ref: string;
1448
+ };
1449
+ reason: {
1450
+ type: string;
1451
+ };
1452
+ subject: {
1453
+ type: string;
1454
+ refs: string[];
1455
+ };
1456
+ reportedByDid: {
1457
+ type: string;
1458
+ };
1459
+ createdAt: {
614
1460
  type: string;
615
1461
  };
616
1462
  };
@@ -619,12 +1465,61 @@ export declare const schemaDict: {
619
1465
  };
620
1466
  };
621
1467
  };
622
- ComAtprotoRepoStrongRef: {
1468
+ ComAtprotoReportReasonType: {
623
1469
  lexicon: number;
624
1470
  id: string;
625
- description: string;
626
1471
  defs: {
627
1472
  main: {
1473
+ type: string;
1474
+ knownValues: string[];
1475
+ };
1476
+ spam: {
1477
+ type: string;
1478
+ description: string;
1479
+ };
1480
+ other: {
1481
+ type: string;
1482
+ description: string;
1483
+ };
1484
+ };
1485
+ };
1486
+ ComAtprotoReportSubject: {
1487
+ lexicon: number;
1488
+ id: string;
1489
+ defs: {
1490
+ repo: {
1491
+ type: string;
1492
+ required: string[];
1493
+ properties: {
1494
+ did: {
1495
+ type: string;
1496
+ description: string;
1497
+ };
1498
+ };
1499
+ };
1500
+ record: {
1501
+ type: string;
1502
+ required: string[];
1503
+ properties: {
1504
+ did: {
1505
+ type: string;
1506
+ description: string;
1507
+ };
1508
+ collection: {
1509
+ type: string;
1510
+ description: string;
1511
+ };
1512
+ rkey: {
1513
+ type: string;
1514
+ description: string;
1515
+ };
1516
+ cid: {
1517
+ type: string;
1518
+ description: string;
1519
+ };
1520
+ };
1521
+ };
1522
+ recordRef: {
628
1523
  type: string;
629
1524
  required: string[];
630
1525
  properties: {
@@ -694,8 +1589,9 @@ export declare const schemaDict: {
694
1589
  type: string;
695
1590
  required: string[];
696
1591
  properties: {
697
- handle: {
1592
+ identifier: {
698
1593
  type: string;
1594
+ description: string;
699
1595
  };
700
1596
  password: {
701
1597
  type: string;
@@ -724,6 +1620,9 @@ export declare const schemaDict: {
724
1620
  };
725
1621
  };
726
1622
  };
1623
+ errors: {
1624
+ name: string;
1625
+ }[];
727
1626
  };
728
1627
  };
729
1628
  };
@@ -790,10 +1689,13 @@ export declare const schemaDict: {
790
1689
  };
791
1690
  };
792
1691
  };
1692
+ errors: {
1693
+ name: string;
1694
+ }[];
793
1695
  };
794
1696
  };
795
1697
  };
796
- ComAtprotoSyncGetRepo: {
1698
+ ComAtprotoSyncGetCheckout: {
797
1699
  lexicon: number;
798
1700
  id: string;
799
1701
  defs: {
@@ -808,7 +1710,7 @@ export declare const schemaDict: {
808
1710
  type: string;
809
1711
  description: string;
810
1712
  };
811
- from: {
1713
+ commit: {
812
1714
  type: string;
813
1715
  description: string;
814
1716
  };
@@ -820,7 +1722,7 @@ export declare const schemaDict: {
820
1722
  };
821
1723
  };
822
1724
  };
823
- ComAtprotoSyncGetRoot: {
1725
+ ComAtprotoSyncGetCommitPath: {
824
1726
  lexicon: number;
825
1727
  id: string;
826
1728
  defs: {
@@ -835,6 +1737,14 @@ export declare const schemaDict: {
835
1737
  type: string;
836
1738
  description: string;
837
1739
  };
1740
+ latest: {
1741
+ type: string;
1742
+ description: string;
1743
+ };
1744
+ earliest: {
1745
+ type: string;
1746
+ description: string;
1747
+ };
838
1748
  };
839
1749
  };
840
1750
  output: {
@@ -843,8 +1753,11 @@ export declare const schemaDict: {
843
1753
  type: string;
844
1754
  required: string[];
845
1755
  properties: {
846
- root: {
1756
+ commits: {
847
1757
  type: string;
1758
+ items: {
1759
+ type: string;
1760
+ };
848
1761
  };
849
1762
  };
850
1763
  };
@@ -852,7 +1765,7 @@ export declare const schemaDict: {
852
1765
  };
853
1766
  };
854
1767
  };
855
- ComAtprotoSyncUpdateRepo: {
1768
+ ComAtprotoSyncGetHead: {
856
1769
  lexicon: number;
857
1770
  id: string;
858
1771
  defs: {
@@ -869,56 +1782,78 @@ export declare const schemaDict: {
869
1782
  };
870
1783
  };
871
1784
  };
872
- input: {
1785
+ output: {
873
1786
  encoding: string;
1787
+ schema: {
1788
+ type: string;
1789
+ required: string[];
1790
+ properties: {
1791
+ root: {
1792
+ type: string;
1793
+ };
1794
+ };
1795
+ };
874
1796
  };
875
1797
  };
876
1798
  };
877
1799
  };
878
- AppBskyActorCreateScene: {
1800
+ ComAtprotoSyncGetRecord: {
879
1801
  lexicon: number;
880
1802
  id: string;
881
1803
  defs: {
882
1804
  main: {
883
1805
  type: string;
884
1806
  description: string;
885
- input: {
886
- encoding: string;
887
- schema: {
888
- type: string;
889
- required: string[];
890
- properties: {
891
- handle: {
892
- type: string;
893
- };
894
- recoveryKey: {
895
- type: string;
896
- };
1807
+ parameters: {
1808
+ type: string;
1809
+ required: string[];
1810
+ properties: {
1811
+ did: {
1812
+ type: string;
1813
+ description: string;
1814
+ };
1815
+ collection: {
1816
+ type: string;
1817
+ };
1818
+ rkey: {
1819
+ type: string;
1820
+ };
1821
+ commit: {
1822
+ type: string;
1823
+ description: string;
897
1824
  };
898
1825
  };
899
1826
  };
900
1827
  output: {
901
1828
  encoding: string;
902
- schema: {
903
- type: string;
904
- required: string[];
905
- properties: {
906
- handle: {
907
- type: string;
908
- };
909
- did: {
910
- type: string;
911
- };
912
- declaration: {
913
- type: string;
914
- ref: string;
915
- };
1829
+ };
1830
+ };
1831
+ };
1832
+ };
1833
+ ComAtprotoSyncGetRepo: {
1834
+ lexicon: number;
1835
+ id: string;
1836
+ defs: {
1837
+ main: {
1838
+ type: string;
1839
+ description: string;
1840
+ parameters: {
1841
+ type: string;
1842
+ required: string[];
1843
+ properties: {
1844
+ did: {
1845
+ type: string;
1846
+ description: string;
1847
+ };
1848
+ from: {
1849
+ type: string;
1850
+ description: string;
916
1851
  };
917
1852
  };
918
1853
  };
919
- errors: {
920
- name: string;
921
- }[];
1854
+ output: {
1855
+ encoding: string;
1856
+ };
922
1857
  };
923
1858
  };
924
1859
  };
@@ -976,9 +1911,6 @@ export declare const schemaDict: {
976
1911
  followsCount: {
977
1912
  type: string;
978
1913
  };
979
- membersCount: {
980
- type: string;
981
- };
982
1914
  postsCount: {
983
1915
  type: string;
984
1916
  };
@@ -996,9 +1928,6 @@ export declare const schemaDict: {
996
1928
  follow: {
997
1929
  type: string;
998
1930
  };
999
- member: {
1000
- type: string;
1001
- };
1002
1931
  muted: {
1003
1932
  type: string;
1004
1933
  };
@@ -1191,7 +2120,6 @@ export declare const schemaDict: {
1191
2120
  description: string;
1192
2121
  parameters: {
1193
2122
  type: string;
1194
- required: string[];
1195
2123
  properties: {
1196
2124
  term: {
1197
2125
  type: string;
@@ -1267,7 +2195,6 @@ export declare const schemaDict: {
1267
2195
  description: string;
1268
2196
  parameters: {
1269
2197
  type: string;
1270
- required: string[];
1271
2198
  properties: {
1272
2199
  term: {
1273
2200
  type: string;
@@ -1334,9 +2261,6 @@ export declare const schemaDict: {
1334
2261
  schema: {
1335
2262
  type: string;
1336
2263
  properties: {
1337
- did: {
1338
- type: string;
1339
- };
1340
2264
  displayName: {
1341
2265
  type: string;
1342
2266
  maxLength: number;
@@ -1555,19 +2479,6 @@ export declare const schemaDict: {
1555
2479
  };
1556
2480
  };
1557
2481
  };
1558
- reasonTrend: {
1559
- type: string;
1560
- required: string[];
1561
- properties: {
1562
- by: {
1563
- type: string;
1564
- ref: string;
1565
- };
1566
- indexedAt: {
1567
- type: string;
1568
- };
1569
- };
1570
- };
1571
2482
  reasonRepost: {
1572
2483
  type: string;
1573
2484
  required: string[];
@@ -2107,30 +3018,7 @@ export declare const schemaDict: {
2107
3018
  };
2108
3019
  downvote: {
2109
3020
  type: string;
2110
- };
2111
- };
2112
- };
2113
- };
2114
- };
2115
- };
2116
- };
2117
- AppBskyFeedTrend: {
2118
- lexicon: number;
2119
- id: string;
2120
- defs: {
2121
- main: {
2122
- type: string;
2123
- key: string;
2124
- record: {
2125
- type: string;
2126
- required: string[];
2127
- properties: {
2128
- subject: {
2129
- type: string;
2130
- ref: string;
2131
- };
2132
- createdAt: {
2133
- type: string;
3021
+ };
2134
3022
  };
2135
3023
  };
2136
3024
  };
@@ -2261,112 +3149,6 @@ export declare const schemaDict: {
2261
3149
  };
2262
3150
  };
2263
3151
  };
2264
- AppBskyGraphGetAssertions: {
2265
- lexicon: number;
2266
- id: string;
2267
- defs: {
2268
- main: {
2269
- type: string;
2270
- description: string;
2271
- parameters: {
2272
- type: string;
2273
- properties: {
2274
- author: {
2275
- type: string;
2276
- };
2277
- subject: {
2278
- type: string;
2279
- };
2280
- assertion: {
2281
- type: string;
2282
- };
2283
- confirmed: {
2284
- type: string;
2285
- };
2286
- limit: {
2287
- type: string;
2288
- minimum: number;
2289
- maximum: number;
2290
- default: number;
2291
- };
2292
- before: {
2293
- type: string;
2294
- };
2295
- };
2296
- };
2297
- output: {
2298
- encoding: string;
2299
- schema: {
2300
- type: string;
2301
- required: string[];
2302
- properties: {
2303
- cursor: {
2304
- type: string;
2305
- };
2306
- assertions: {
2307
- type: string;
2308
- items: {
2309
- type: string;
2310
- ref: string;
2311
- };
2312
- };
2313
- };
2314
- };
2315
- };
2316
- };
2317
- assertion: {
2318
- type: string;
2319
- required: string[];
2320
- properties: {
2321
- uri: {
2322
- type: string;
2323
- };
2324
- cid: {
2325
- type: string;
2326
- };
2327
- assertion: {
2328
- type: string;
2329
- };
2330
- confirmation: {
2331
- type: string;
2332
- ref: string;
2333
- };
2334
- author: {
2335
- type: string;
2336
- ref: string;
2337
- };
2338
- subject: {
2339
- type: string;
2340
- ref: string;
2341
- };
2342
- indexedAt: {
2343
- type: string;
2344
- };
2345
- createdAt: {
2346
- type: string;
2347
- };
2348
- };
2349
- };
2350
- confirmation: {
2351
- type: string;
2352
- required: string[];
2353
- properties: {
2354
- uri: {
2355
- type: string;
2356
- };
2357
- cid: {
2358
- type: string;
2359
- };
2360
- indexedAt: {
2361
- type: string;
2362
- };
2363
- createdAt: {
2364
- type: string;
2365
- };
2366
- };
2367
- };
2368
- };
2369
- };
2370
3152
  AppBskyGraphGetFollowers: {
2371
3153
  lexicon: number;
2372
3154
  id: string;
@@ -2514,159 +3296,8 @@ export declare const schemaDict: {
2514
3296
  type: string;
2515
3297
  maxLength: number;
2516
3298
  };
2517
- createdAt: {
2518
- type: string;
2519
- };
2520
- indexedAt: {
2521
- type: string;
2522
- };
2523
- };
2524
- };
2525
- };
2526
- };
2527
- AppBskyGraphGetMembers: {
2528
- lexicon: number;
2529
- id: string;
2530
- defs: {
2531
- main: {
2532
- type: string;
2533
- description: string;
2534
- parameters: {
2535
- type: string;
2536
- required: string[];
2537
- properties: {
2538
- actor: {
2539
- type: string;
2540
- };
2541
- limit: {
2542
- type: string;
2543
- minimum: number;
2544
- maximum: number;
2545
- default: number;
2546
- };
2547
- before: {
2548
- type: string;
2549
- };
2550
- };
2551
- };
2552
- output: {
2553
- encoding: string;
2554
- schema: {
2555
- type: string;
2556
- required: string[];
2557
- properties: {
2558
- subject: {
2559
- type: string;
2560
- ref: string;
2561
- };
2562
- cursor: {
2563
- type: string;
2564
- };
2565
- members: {
2566
- type: string;
2567
- items: {
2568
- type: string;
2569
- ref: string;
2570
- };
2571
- };
2572
- };
2573
- };
2574
- };
2575
- };
2576
- member: {
2577
- type: string;
2578
- required: string[];
2579
- properties: {
2580
- did: {
2581
- type: string;
2582
- };
2583
- declaration: {
2584
- type: string;
2585
- ref: string;
2586
- };
2587
- handle: {
2588
- type: string;
2589
- };
2590
- displayName: {
2591
- type: string;
2592
- maxLength: number;
2593
- };
2594
- createdAt: {
2595
- type: string;
2596
- };
2597
- indexedAt: {
2598
- type: string;
2599
- };
2600
- };
2601
- };
2602
- };
2603
- };
2604
- AppBskyGraphGetMemberships: {
2605
- lexicon: number;
2606
- id: string;
2607
- defs: {
2608
- main: {
2609
- type: string;
2610
- description: string;
2611
- parameters: {
2612
- type: string;
2613
- required: string[];
2614
- properties: {
2615
- actor: {
2616
- type: string;
2617
- };
2618
- limit: {
2619
- type: string;
2620
- minimum: number;
2621
- maximum: number;
2622
- default: number;
2623
- };
2624
- before: {
2625
- type: string;
2626
- };
2627
- };
2628
- };
2629
- output: {
2630
- encoding: string;
2631
- schema: {
2632
- type: string;
2633
- required: string[];
2634
- properties: {
2635
- subject: {
2636
- type: string;
2637
- ref: string;
2638
- };
2639
- cursor: {
2640
- type: string;
2641
- };
2642
- memberships: {
2643
- type: string;
2644
- items: {
2645
- type: string;
2646
- ref: string;
2647
- };
2648
- };
2649
- };
2650
- };
2651
- };
2652
- };
2653
- membership: {
2654
- type: string;
2655
- required: string[];
2656
- properties: {
2657
- did: {
2658
- type: string;
2659
- };
2660
- declaration: {
2661
- type: string;
2662
- ref: string;
2663
- };
2664
- handle: {
2665
- type: string;
2666
- };
2667
- displayName: {
3299
+ avatar: {
2668
3300
  type: string;
2669
- maxLength: number;
2670
3301
  };
2671
3302
  createdAt: {
2672
3303
  type: string;
@@ -2906,16 +3537,6 @@ export declare const schemaDict: {
2906
3537
  };
2907
3538
  };
2908
3539
  };
2909
- AppBskySystemActorScene: {
2910
- lexicon: number;
2911
- id: string;
2912
- defs: {
2913
- main: {
2914
- type: string;
2915
- description: string;
2916
- };
2917
- };
2918
- };
2919
3540
  AppBskySystemActorUser: {
2920
3541
  lexicon: number;
2921
3542
  id: string;
@@ -2977,6 +3598,20 @@ export declare const ids: {
2977
3598
  ComAtprotoAccountGet: string;
2978
3599
  ComAtprotoAccountRequestPasswordReset: string;
2979
3600
  ComAtprotoAccountResetPassword: string;
3601
+ ComAtprotoAdminGetModerationAction: string;
3602
+ ComAtprotoAdminGetModerationActions: string;
3603
+ ComAtprotoAdminGetModerationReport: string;
3604
+ ComAtprotoAdminGetModerationReports: string;
3605
+ ComAtprotoAdminGetRecord: string;
3606
+ ComAtprotoAdminGetRepo: string;
3607
+ ComAtprotoAdminModerationAction: string;
3608
+ ComAtprotoAdminModerationReport: string;
3609
+ ComAtprotoAdminRecord: string;
3610
+ ComAtprotoAdminRepo: string;
3611
+ ComAtprotoAdminResolveModerationReports: string;
3612
+ ComAtprotoAdminReverseModerationAction: string;
3613
+ ComAtprotoAdminSearchRepos: string;
3614
+ ComAtprotoAdminTakeModerationAction: string;
2980
3615
  ComAtprotoBlobUpload: string;
2981
3616
  ComAtprotoHandleResolve: string;
2982
3617
  ComAtprotoRepoBatchWrite: string;
@@ -2986,16 +3621,22 @@ export declare const ids: {
2986
3621
  ComAtprotoRepoGetRecord: string;
2987
3622
  ComAtprotoRepoListRecords: string;
2988
3623
  ComAtprotoRepoPutRecord: string;
3624
+ ComAtprotoRepoRecordRef: string;
3625
+ ComAtprotoRepoRepoRef: string;
2989
3626
  ComAtprotoRepoStrongRef: string;
3627
+ ComAtprotoReportCreate: string;
3628
+ ComAtprotoReportReasonType: string;
3629
+ ComAtprotoReportSubject: string;
2990
3630
  ComAtprotoServerGetAccountsConfig: string;
2991
3631
  ComAtprotoSessionCreate: string;
2992
3632
  ComAtprotoSessionDelete: string;
2993
3633
  ComAtprotoSessionGet: string;
2994
3634
  ComAtprotoSessionRefresh: string;
3635
+ ComAtprotoSyncGetCheckout: string;
3636
+ ComAtprotoSyncGetCommitPath: string;
3637
+ ComAtprotoSyncGetHead: string;
3638
+ ComAtprotoSyncGetRecord: string;
2995
3639
  ComAtprotoSyncGetRepo: string;
2996
- ComAtprotoSyncGetRoot: string;
2997
- ComAtprotoSyncUpdateRepo: string;
2998
- AppBskyActorCreateScene: string;
2999
3640
  AppBskyActorGetProfile: string;
3000
3641
  AppBskyActorGetSuggestions: string;
3001
3642
  AppBskyActorProfile: string;
@@ -3014,25 +3655,20 @@ export declare const ids: {
3014
3655
  AppBskyFeedPost: string;
3015
3656
  AppBskyFeedRepost: string;
3016
3657
  AppBskyFeedSetVote: string;
3017
- AppBskyFeedTrend: string;
3018
3658
  AppBskyFeedVote: string;
3019
3659
  AppBskyGraphAssertCreator: string;
3020
3660
  AppBskyGraphAssertMember: string;
3021
3661
  AppBskyGraphAssertion: string;
3022
3662
  AppBskyGraphConfirmation: string;
3023
3663
  AppBskyGraphFollow: string;
3024
- AppBskyGraphGetAssertions: string;
3025
3664
  AppBskyGraphGetFollowers: string;
3026
3665
  AppBskyGraphGetFollows: string;
3027
- AppBskyGraphGetMembers: string;
3028
- AppBskyGraphGetMemberships: string;
3029
3666
  AppBskyGraphGetMutes: string;
3030
3667
  AppBskyGraphMute: string;
3031
3668
  AppBskyGraphUnmute: string;
3032
3669
  AppBskyNotificationGetCount: string;
3033
3670
  AppBskyNotificationList: string;
3034
3671
  AppBskyNotificationUpdateSeen: string;
3035
- AppBskySystemActorScene: string;
3036
3672
  AppBskySystemActorUser: string;
3037
3673
  AppBskySystemDeclRef: string;
3038
3674
  AppBskySystemDeclaration: string;