@atproto/api 0.4.2 → 0.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (295) hide show
  1. package/dist/client/lexicons.d.ts +17 -0
  2. package/dist/client/types/app/bsky/actor/createScene.d.ts +32 -0
  3. package/dist/client/types/app/bsky/actor/ref.d.ts +28 -0
  4. package/dist/client/types/app/bsky/actor/search.d.ts +22 -0
  5. package/dist/client/types/app/bsky/actor/searchActor.d.ts +22 -0
  6. package/dist/client/types/app/bsky/actor/searchActorTypeahead.d.ts +20 -0
  7. package/dist/client/types/app/bsky/actor/searchTypeahead.d.ts +20 -0
  8. package/dist/client/types/app/bsky/actor/updateProfile.d.ts +47 -0
  9. package/dist/client/types/app/bsky/feed/bookmarkFeed.d.ts +17 -0
  10. package/dist/client/types/app/bsky/feed/feedViewPost.d.ts +28 -0
  11. package/dist/client/types/app/bsky/feed/getBookmarkedFeeds.d.ts +21 -0
  12. package/dist/client/types/app/bsky/feed/getSavedFeeds.d.ts +21 -0
  13. package/dist/client/types/app/bsky/feed/getVotes.d.ts +36 -0
  14. package/dist/client/types/app/bsky/feed/saveFeed.d.ts +17 -0
  15. package/dist/client/types/app/bsky/feed/setVote.d.ts +25 -0
  16. package/dist/client/types/app/bsky/feed/trend.d.ts +9 -0
  17. package/dist/client/types/app/bsky/feed/unbookmarkFeed.d.ts +17 -0
  18. package/dist/client/types/app/bsky/feed/unsaveFeed.d.ts +17 -0
  19. package/dist/client/types/app/bsky/feed/vote.d.ts +10 -0
  20. package/dist/client/types/app/bsky/graph/assertCreator.d.ts +1 -0
  21. package/dist/client/types/app/bsky/graph/assertMember.d.ts +1 -0
  22. package/dist/client/types/app/bsky/graph/assertion.d.ts +10 -0
  23. package/dist/client/types/app/bsky/graph/confirmation.d.ts +11 -0
  24. package/dist/client/types/app/bsky/graph/getAssertions.d.ts +48 -0
  25. package/dist/client/types/app/bsky/graph/getMembers.d.ts +36 -0
  26. package/dist/client/types/app/bsky/graph/getMemberships.d.ts +36 -0
  27. package/dist/client/types/app/bsky/graph/mute.d.ts +17 -0
  28. package/dist/client/types/app/bsky/graph/unmute.d.ts +17 -0
  29. package/dist/client/types/app/bsky/notification/getCount.d.ts +17 -0
  30. package/dist/client/types/app/bsky/notification/list.d.ts +35 -0
  31. package/dist/client/types/app/bsky/system/actorScene.d.ts +1 -0
  32. package/dist/client/types/app/bsky/system/actorUser.d.ts +1 -0
  33. package/dist/client/types/app/bsky/system/declRef.d.ts +8 -0
  34. package/dist/client/types/app/bsky/system/declaration.d.ts +7 -0
  35. package/dist/client/types/app/bsky/unspecced/getPopularFeedGenerators.d.ts +1 -0
  36. package/dist/client/types/com/atproto/account/create.d.ts +41 -0
  37. package/dist/client/types/com/atproto/account/createInviteCode.d.ts +22 -0
  38. package/dist/client/types/com/atproto/account/delete.d.ts +25 -0
  39. package/dist/client/types/com/atproto/account/get.d.ts +12 -0
  40. package/dist/client/types/com/atproto/account/requestDelete.d.ts +13 -0
  41. package/dist/client/types/com/atproto/account/requestPasswordReset.d.ts +17 -0
  42. package/dist/client/types/com/atproto/account/resetPassword.d.ts +24 -0
  43. package/dist/client/types/com/atproto/admin/blob.d.ts +37 -0
  44. package/dist/client/types/com/atproto/admin/defs.d.ts +2 -0
  45. package/dist/client/types/com/atproto/admin/disableAccountInvites.d.ts +1 -0
  46. package/dist/client/types/com/atproto/admin/enableAccountInvites.d.ts +1 -0
  47. package/dist/client/types/com/atproto/admin/getInviteCodeUsage.d.ts +29 -0
  48. package/dist/client/types/com/atproto/admin/moderationAction.d.ts +60 -0
  49. package/dist/client/types/com/atproto/admin/moderationReport.d.ts +37 -0
  50. package/dist/client/types/com/atproto/admin/record.d.ts +43 -0
  51. package/dist/client/types/com/atproto/admin/repo.d.ts +45 -0
  52. package/dist/client/types/com/atproto/blob/upload.d.ts +19 -0
  53. package/dist/client/types/com/atproto/handle/resolve.d.ts +18 -0
  54. package/dist/client/types/com/atproto/handle/update.d.ts +17 -0
  55. package/dist/client/types/com/atproto/repo/batchWrite.d.ts +46 -0
  56. package/dist/client/types/com/atproto/repo/describe.d.ts +22 -0
  57. package/dist/client/types/com/atproto/repo/importRepo.d.ts +19 -0
  58. package/dist/client/types/com/atproto/repo/recordRef.d.ts +8 -0
  59. package/dist/client/types/com/atproto/repo/repoRef.d.ts +7 -0
  60. package/dist/client/types/com/atproto/repo/uploadRepo.d.ts +19 -0
  61. package/dist/client/types/com/atproto/report/create.d.ts +39 -0
  62. package/dist/client/types/com/atproto/report/reasonType.d.ts +3 -0
  63. package/dist/client/types/com/atproto/report/subject.d.ts +23 -0
  64. package/dist/client/types/com/atproto/server/getAccountsConfig.d.ts +27 -0
  65. package/dist/client/types/com/atproto/server/getUserInviteCodes.d.ts +31 -0
  66. package/dist/client/types/com/atproto/session/create.d.ts +29 -0
  67. package/dist/client/types/com/atproto/session/delete.d.ts +13 -0
  68. package/dist/client/types/com/atproto/session/get.d.ts +18 -0
  69. package/dist/client/types/com/atproto/session/refresh.d.ts +24 -0
  70. package/dist/client/types/com/atproto/sync/getRoot.d.ts +18 -0
  71. package/dist/client/types/com/atproto/sync/subscribeAllRepos.d.ts +9 -0
  72. package/dist/client/types/com/atproto/sync/updateRepo.d.ts +15 -0
  73. package/dist/index.js +20 -3
  74. package/dist/index.js.map +2 -2
  75. package/dist/session.d.ts +42 -0
  76. package/dist/src/client/index.d.ts +462 -0
  77. package/dist/src/client/lexicons.d.ts +2910 -0
  78. package/dist/src/client/schemas.d.ts +17 -0
  79. package/dist/src/client/types/app/bsky/actor/createScene.d.ts +32 -0
  80. package/dist/src/client/types/app/bsky/actor/getProfile.d.ts +36 -0
  81. package/dist/src/client/types/app/bsky/actor/getSuggestions.d.ts +36 -0
  82. package/dist/src/client/types/app/bsky/actor/profile.d.ts +15 -0
  83. package/dist/src/client/types/app/bsky/actor/ref.d.ts +14 -0
  84. package/dist/src/client/types/app/bsky/actor/search.d.ts +32 -0
  85. package/dist/src/client/types/app/bsky/actor/searchTypeahead.d.ts +28 -0
  86. package/dist/src/client/types/app/bsky/actor/updateProfile.d.ts +48 -0
  87. package/dist/src/client/types/app/bsky/badge.d.ts +22 -0
  88. package/dist/src/client/types/app/bsky/badgeAccept.d.ts +11 -0
  89. package/dist/src/client/types/app/bsky/badgeOffer.d.ts +11 -0
  90. package/dist/src/client/types/app/bsky/declaration.d.ts +6 -0
  91. package/dist/src/client/types/app/bsky/embed/external.d.ts +26 -0
  92. package/dist/src/client/types/app/bsky/embed/images.d.ts +23 -0
  93. package/dist/src/client/types/app/bsky/feed/embed.d.ts +36 -0
  94. package/dist/src/client/types/app/bsky/feed/feedViewPost.d.ts +26 -0
  95. package/dist/src/client/types/app/bsky/feed/getAuthorFeed.d.ts +22 -0
  96. package/dist/src/client/types/app/bsky/feed/getPostThread.d.ts +43 -0
  97. package/dist/src/client/types/app/bsky/feed/getRepostedBy.d.ts +35 -0
  98. package/dist/src/client/types/app/bsky/feed/getTimeline.d.ts +22 -0
  99. package/dist/src/client/types/app/bsky/feed/getVotes.d.ts +33 -0
  100. package/dist/src/client/types/app/bsky/feed/mediaEmbed.d.ts +18 -0
  101. package/dist/src/client/types/app/bsky/feed/post.d.ts +54 -0
  102. package/dist/src/client/types/app/bsky/feed/repost.d.ts +6 -0
  103. package/dist/src/client/types/app/bsky/feed/setVote.d.ts +25 -0
  104. package/dist/src/client/types/app/bsky/feed/trend.d.ts +6 -0
  105. package/dist/src/client/types/app/bsky/feed/vote.d.ts +7 -0
  106. package/dist/src/client/types/app/bsky/follow.d.ts +9 -0
  107. package/dist/src/client/types/app/bsky/getAuthorFeed.d.ts +56 -0
  108. package/dist/src/client/types/app/bsky/getBadgeMembers.d.ts +29 -0
  109. package/dist/src/client/types/app/bsky/getHomeFeed.d.ts +56 -0
  110. package/dist/src/client/types/app/bsky/getLikedBy.d.ts +29 -0
  111. package/dist/src/client/types/app/bsky/getNotificationCount.d.ts +16 -0
  112. package/dist/src/client/types/app/bsky/getNotifications.d.ts +33 -0
  113. package/dist/src/client/types/app/bsky/getPostThread.d.ts +55 -0
  114. package/dist/src/client/types/app/bsky/getProfile.d.ts +26 -0
  115. package/dist/src/client/types/app/bsky/getRepostedBy.d.ts +29 -0
  116. package/dist/src/client/types/app/bsky/getTimeline.d.ts +56 -0
  117. package/dist/src/client/types/app/bsky/getUserFollowers.d.ts +31 -0
  118. package/dist/src/client/types/app/bsky/getUserFollows.d.ts +31 -0
  119. package/dist/src/client/types/app/bsky/getUsersSearch.d.ts +26 -0
  120. package/dist/src/client/types/app/bsky/getUsersTypeahead.d.ts +22 -0
  121. package/dist/src/client/types/app/bsky/graph/assertCreator.d.ts +1 -0
  122. package/dist/src/client/types/app/bsky/graph/assertMember.d.ts +1 -0
  123. package/dist/src/client/types/app/bsky/graph/assertion.d.ts +7 -0
  124. package/dist/src/client/types/app/bsky/graph/confirmation.d.ts +8 -0
  125. package/dist/src/client/types/app/bsky/graph/follow.d.ts +6 -0
  126. package/dist/src/client/types/app/bsky/graph/getAssertions.d.ts +43 -0
  127. package/dist/src/client/types/app/bsky/graph/getFollowers.d.ts +34 -0
  128. package/dist/src/client/types/app/bsky/graph/getFollows.d.ts +33 -0
  129. package/dist/src/client/types/app/bsky/graph/getMembers.d.ts +33 -0
  130. package/dist/src/client/types/app/bsky/graph/getMemberships.d.ts +33 -0
  131. package/dist/src/client/types/app/bsky/invite.d.ts +10 -0
  132. package/dist/src/client/types/app/bsky/inviteAccept.d.ts +14 -0
  133. package/dist/src/client/types/app/bsky/like.d.ts +10 -0
  134. package/dist/src/client/types/app/bsky/mediaEmbed.d.ts +15 -0
  135. package/dist/src/client/types/app/bsky/notification/getCount.d.ts +17 -0
  136. package/dist/src/client/types/app/bsky/notification/list.d.ts +32 -0
  137. package/dist/src/client/types/app/bsky/notification/updateSeen.d.ts +17 -0
  138. package/dist/src/client/types/app/bsky/post.d.ts +23 -0
  139. package/dist/src/client/types/app/bsky/postNotificationsSeen.d.ts +20 -0
  140. package/dist/src/client/types/app/bsky/profile.d.ts +5 -0
  141. package/dist/src/client/types/app/bsky/repost.d.ts +10 -0
  142. package/dist/src/client/types/app/bsky/system/actorScene.d.ts +1 -0
  143. package/dist/src/client/types/app/bsky/system/actorUser.d.ts +1 -0
  144. package/dist/src/client/types/app/bsky/system/declRef.d.ts +5 -0
  145. package/dist/src/client/types/app/bsky/system/declaration.d.ts +4 -0
  146. package/dist/src/client/types/app/bsky/updateProfile.d.ts +23 -0
  147. package/dist/src/client/types/com/atproto/account/create.d.ts +41 -0
  148. package/dist/src/client/types/com/atproto/account/createInviteCode.d.ts +22 -0
  149. package/dist/src/client/types/com/atproto/account/delete.d.ts +13 -0
  150. package/dist/src/client/types/com/atproto/account/get.d.ts +12 -0
  151. package/dist/src/client/types/com/atproto/account/requestPasswordReset.d.ts +17 -0
  152. package/dist/src/client/types/com/atproto/account/resetPassword.d.ts +24 -0
  153. package/dist/src/client/types/com/atproto/blob/upload.d.ts +19 -0
  154. package/dist/src/client/types/com/atproto/createAccount.d.ts +40 -0
  155. package/dist/src/client/types/com/atproto/createInviteCode.d.ts +20 -0
  156. package/dist/src/client/types/com/atproto/createSession.d.ts +24 -0
  157. package/dist/src/client/types/com/atproto/data/uploadFile.d.ts +19 -0
  158. package/dist/src/client/types/com/atproto/deleteAccount.d.ts +20 -0
  159. package/dist/src/client/types/com/atproto/deleteSession.d.ts +17 -0
  160. package/dist/src/client/types/com/atproto/getAccount.d.ts +16 -0
  161. package/dist/src/client/types/com/atproto/getAccountsConfig.d.ts +17 -0
  162. package/dist/src/client/types/com/atproto/getSession.d.ts +17 -0
  163. package/dist/src/client/types/com/atproto/handle/resolve.d.ts +18 -0
  164. package/dist/src/client/types/com/atproto/refreshSession.d.ts +20 -0
  165. package/dist/src/client/types/com/atproto/repo/batchWrite.d.ts +39 -0
  166. package/dist/src/client/types/com/atproto/repo/createRecord.d.ts +26 -0
  167. package/dist/src/client/types/com/atproto/repo/deleteRecord.d.ts +19 -0
  168. package/dist/src/client/types/com/atproto/repo/describe.d.ts +22 -0
  169. package/dist/src/client/types/com/atproto/repo/getRecord.d.ts +23 -0
  170. package/dist/src/client/types/com/atproto/repo/listRecords.d.ts +30 -0
  171. package/dist/src/client/types/com/atproto/repo/putRecord.d.ts +27 -0
  172. package/dist/src/client/types/com/atproto/repo/strongRef.d.ts +5 -0
  173. package/dist/src/client/types/com/atproto/repoBatchWrite.d.ts +36 -0
  174. package/dist/src/client/types/com/atproto/repoCreateRecord.d.ts +24 -0
  175. package/dist/src/client/types/com/atproto/repoDeleteRecord.d.ts +18 -0
  176. package/dist/src/client/types/com/atproto/repoDescribe.d.ts +21 -0
  177. package/dist/src/client/types/com/atproto/repoGetRecord.d.ts +22 -0
  178. package/dist/src/client/types/com/atproto/repoListRecords.d.ts +27 -0
  179. package/dist/src/client/types/com/atproto/repoPutRecord.d.ts +25 -0
  180. package/dist/src/client/types/com/atproto/requestAccountPasswordReset.d.ts +19 -0
  181. package/dist/src/client/types/com/atproto/resetAccountPassword.d.ts +26 -0
  182. package/dist/src/client/types/com/atproto/resolveHandle.d.ts +17 -0
  183. package/dist/src/client/types/com/atproto/resolveName.d.ts +17 -0
  184. package/dist/src/client/types/com/atproto/server/getAccountsConfig.d.ts +24 -0
  185. package/dist/src/client/types/com/atproto/session/create.d.ts +26 -0
  186. package/dist/src/client/types/com/atproto/session/delete.d.ts +13 -0
  187. package/dist/src/client/types/com/atproto/session/get.d.ts +18 -0
  188. package/dist/src/client/types/com/atproto/session/refresh.d.ts +21 -0
  189. package/dist/src/client/types/com/atproto/sync/getRepo.d.ts +15 -0
  190. package/dist/src/client/types/com/atproto/sync/getRoot.d.ts +18 -0
  191. package/dist/src/client/types/com/atproto/sync/updateRepo.d.ts +15 -0
  192. package/dist/src/client/types/com/atproto/syncGetRepo.d.ts +15 -0
  193. package/dist/src/client/types/com/atproto/syncGetRoot.d.ts +17 -0
  194. package/dist/src/client/types/com/atproto/syncUpdateRepo.d.ts +15 -0
  195. package/dist/src/index.d.ts +4 -0
  196. package/dist/src/schemas.d.ts +19 -0
  197. package/dist/src/session.d.ts +42 -0
  198. package/dist/src/types/app/bsky/acceptedBadge.d.ts +10 -0
  199. package/dist/src/types/app/bsky/badge.d.ts +22 -0
  200. package/dist/src/types/app/bsky/badgeAccept.d.ts +11 -0
  201. package/dist/src/types/app/bsky/badgeOffer.d.ts +11 -0
  202. package/dist/src/types/app/bsky/declaration.d.ts +6 -0
  203. package/dist/src/types/app/bsky/follow.d.ts +9 -0
  204. package/dist/src/types/app/bsky/getAuthorFeed.d.ts +56 -0
  205. package/dist/src/types/app/bsky/getBadgeMembers.d.ts +29 -0
  206. package/dist/src/types/app/bsky/getHomeFeed.d.ts +56 -0
  207. package/dist/src/types/app/bsky/getLikedBy.d.ts +29 -0
  208. package/dist/src/types/app/bsky/getNotificationCount.d.ts +16 -0
  209. package/dist/src/types/app/bsky/getNotifications.d.ts +33 -0
  210. package/dist/src/types/app/bsky/getPostThread.d.ts +55 -0
  211. package/dist/src/types/app/bsky/getProfile.d.ts +42 -0
  212. package/dist/src/types/app/bsky/getRepostedBy.d.ts +29 -0
  213. package/dist/src/types/app/bsky/getUserFollowers.d.ts +31 -0
  214. package/dist/src/types/app/bsky/getUserFollows.d.ts +31 -0
  215. package/dist/src/types/app/bsky/getUsersSearch.d.ts +26 -0
  216. package/dist/src/types/app/bsky/getUsersTypeahead.d.ts +22 -0
  217. package/dist/src/types/app/bsky/invite.d.ts +10 -0
  218. package/dist/src/types/app/bsky/inviteAccept.d.ts +14 -0
  219. package/dist/src/types/app/bsky/like.d.ts +10 -0
  220. package/dist/src/types/app/bsky/mediaEmbed.d.ts +15 -0
  221. package/dist/src/types/app/bsky/post.d.ts +23 -0
  222. package/dist/src/types/app/bsky/postNotificationsSeen.d.ts +19 -0
  223. package/dist/src/types/app/bsky/profile.d.ts +11 -0
  224. package/dist/src/types/app/bsky/repost.d.ts +10 -0
  225. package/dist/src/types/app/bsky/updateProfile.d.ts +27 -0
  226. package/dist/src/types/com/atproto/createAccount.d.ts +39 -0
  227. package/dist/src/types/com/atproto/createInviteCode.d.ts +19 -0
  228. package/dist/src/types/com/atproto/createSession.d.ts +23 -0
  229. package/dist/src/types/com/atproto/deleteAccount.d.ts +19 -0
  230. package/dist/src/types/com/atproto/deleteSession.d.ts +16 -0
  231. package/dist/src/types/com/atproto/getAccount.d.ts +19 -0
  232. package/dist/src/types/com/atproto/getAccountsConfig.d.ts +17 -0
  233. package/dist/src/types/com/atproto/getSession.d.ts +17 -0
  234. package/dist/src/types/com/atproto/refreshSession.d.ts +19 -0
  235. package/dist/src/types/com/atproto/repoBatchWrite.d.ts +35 -0
  236. package/dist/src/types/com/atproto/repoCreateRecord.d.ts +23 -0
  237. package/dist/src/types/com/atproto/repoDeleteRecord.d.ts +15 -0
  238. package/dist/src/types/com/atproto/repoDescribe.d.ts +21 -0
  239. package/dist/src/types/com/atproto/repoGetRecord.d.ts +22 -0
  240. package/dist/src/types/com/atproto/repoListRecords.d.ts +27 -0
  241. package/dist/src/types/com/atproto/repoPutRecord.d.ts +24 -0
  242. package/dist/src/types/com/atproto/requestAccountPasswordReset.d.ts +18 -0
  243. package/dist/src/types/com/atproto/resetAccountPassword.d.ts +25 -0
  244. package/dist/src/types/com/atproto/resolveName.d.ts +17 -0
  245. package/dist/src/types/com/atproto/syncGetRepo.d.ts +15 -0
  246. package/dist/src/types/com/atproto/syncGetRoot.d.ts +17 -0
  247. package/dist/src/types/com/atproto/syncUpdateRepo.d.ts +14 -0
  248. package/dist/src/types/todo/adx/createAccount.d.ts +36 -0
  249. package/dist/src/types/todo/adx/createInviteCode.d.ts +19 -0
  250. package/dist/src/types/todo/adx/createSession.d.ts +22 -0
  251. package/dist/src/types/todo/adx/deleteAccount.d.ts +19 -0
  252. package/dist/src/types/todo/adx/deleteSession.d.ts +19 -0
  253. package/dist/src/types/todo/adx/getAccount.d.ts +19 -0
  254. package/dist/src/types/todo/adx/getAccountsConfig.d.ts +17 -0
  255. package/dist/src/types/todo/adx/getSession.d.ts +17 -0
  256. package/dist/src/types/todo/adx/repoBatchWrite.d.ts +34 -0
  257. package/dist/src/types/todo/adx/repoCreateRecord.d.ts +22 -0
  258. package/dist/src/types/todo/adx/repoDeleteRecord.d.ts +15 -0
  259. package/dist/src/types/todo/adx/repoDescribe.d.ts +21 -0
  260. package/dist/src/types/todo/adx/repoGetRecord.d.ts +20 -0
  261. package/dist/src/types/todo/adx/repoListRecords.d.ts +25 -0
  262. package/dist/src/types/todo/adx/repoPutRecord.d.ts +23 -0
  263. package/dist/src/types/todo/adx/requestAccountPasswordReset.d.ts +18 -0
  264. package/dist/src/types/todo/adx/resetAccountPassword.d.ts +25 -0
  265. package/dist/src/types/todo/adx/resolveName.d.ts +17 -0
  266. package/dist/src/types/todo/adx/syncGetRepo.d.ts +15 -0
  267. package/dist/src/types/todo/adx/syncGetRoot.d.ts +17 -0
  268. package/dist/src/types/todo/adx/syncUpdateRepo.d.ts +14 -0
  269. package/dist/src/types/todo/social/badge.d.ts +23 -0
  270. package/dist/src/types/todo/social/follow.d.ts +5 -0
  271. package/dist/src/types/todo/social/getAuthorFeed.d.ts +55 -0
  272. package/dist/src/types/todo/social/getFeed.d.ts +55 -0
  273. package/dist/src/types/todo/social/getHomeFeed.d.ts +55 -0
  274. package/dist/src/types/todo/social/getLikedBy.d.ts +26 -0
  275. package/dist/src/types/todo/social/getNotificationCount.d.ts +16 -0
  276. package/dist/src/types/todo/social/getNotifications.d.ts +31 -0
  277. package/dist/src/types/todo/social/getPostThread.d.ts +54 -0
  278. package/dist/src/types/todo/social/getProfile.d.ts +40 -0
  279. package/dist/src/types/todo/social/getRepostedBy.d.ts +26 -0
  280. package/dist/src/types/todo/social/getUserFollowers.d.ts +30 -0
  281. package/dist/src/types/todo/social/getUserFollows.d.ts +30 -0
  282. package/dist/src/types/todo/social/like.d.ts +5 -0
  283. package/dist/src/types/todo/social/mediaEmbed.d.ts +15 -0
  284. package/dist/src/types/todo/social/post.d.ts +18 -0
  285. package/dist/src/types/todo/social/postNotificationsSeen.d.ts +19 -0
  286. package/dist/src/types/todo/social/profile.d.ts +10 -0
  287. package/dist/src/types/todo/social/repost.d.ts +5 -0
  288. package/dist/tsconfig.build.tsbuildinfo +1 -0
  289. package/package.json +1 -1
  290. package/src/client/lexicons.ts +19 -0
  291. package/src/client/types/app/bsky/unspecced/getPopularFeedGenerators.ts +1 -0
  292. package/src/client/types/com/atproto/admin/defs.ts +2 -0
  293. package/src/client/types/com/atproto/admin/disableAccountInvites.ts +2 -0
  294. package/src/client/types/com/atproto/admin/enableAccountInvites.ts +2 -0
  295. package/tsconfig.build.tsbuildinfo +1 -1
@@ -0,0 +1,2910 @@
1
+ import { LexiconDoc, Lexicons } from '@atproto/lexicon';
2
+ export declare const schemaDict: {
3
+ ComAtprotoAccountCreate: {
4
+ lexicon: number;
5
+ id: string;
6
+ defs: {
7
+ main: {
8
+ type: string;
9
+ description: string;
10
+ input: {
11
+ encoding: string;
12
+ schema: {
13
+ type: string;
14
+ required: string[];
15
+ properties: {
16
+ email: {
17
+ type: string;
18
+ };
19
+ handle: {
20
+ type: string;
21
+ };
22
+ inviteCode: {
23
+ type: string;
24
+ };
25
+ password: {
26
+ type: string;
27
+ };
28
+ recoveryKey: {
29
+ type: string;
30
+ };
31
+ };
32
+ };
33
+ };
34
+ output: {
35
+ encoding: string;
36
+ schema: {
37
+ type: string;
38
+ required: string[];
39
+ properties: {
40
+ accessJwt: {
41
+ type: string;
42
+ };
43
+ refreshJwt: {
44
+ type: string;
45
+ };
46
+ handle: {
47
+ type: string;
48
+ };
49
+ did: {
50
+ type: string;
51
+ };
52
+ };
53
+ };
54
+ };
55
+ errors: {
56
+ name: string;
57
+ }[];
58
+ };
59
+ };
60
+ };
61
+ ComAtprotoAccountCreateInviteCode: {
62
+ lexicon: number;
63
+ id: string;
64
+ defs: {
65
+ main: {
66
+ type: string;
67
+ description: string;
68
+ input: {
69
+ encoding: string;
70
+ schema: {
71
+ type: string;
72
+ required: string[];
73
+ properties: {
74
+ useCount: {
75
+ type: string;
76
+ };
77
+ };
78
+ };
79
+ };
80
+ output: {
81
+ encoding: string;
82
+ schema: {
83
+ type: string;
84
+ required: string[];
85
+ properties: {
86
+ code: {
87
+ type: string;
88
+ };
89
+ };
90
+ };
91
+ };
92
+ };
93
+ };
94
+ };
95
+ ComAtprotoAccountDelete: {
96
+ lexicon: number;
97
+ id: string;
98
+ defs: {
99
+ main: {
100
+ type: string;
101
+ description: string;
102
+ };
103
+ };
104
+ };
105
+ ComAtprotoAccountGet: {
106
+ lexicon: number;
107
+ id: string;
108
+ defs: {
109
+ main: {
110
+ type: string;
111
+ description: string;
112
+ };
113
+ };
114
+ };
115
+ ComAtprotoAccountRequestPasswordReset: {
116
+ lexicon: number;
117
+ id: string;
118
+ defs: {
119
+ main: {
120
+ type: string;
121
+ description: string;
122
+ input: {
123
+ encoding: string;
124
+ schema: {
125
+ type: string;
126
+ required: string[];
127
+ properties: {
128
+ email: {
129
+ type: string;
130
+ };
131
+ };
132
+ };
133
+ };
134
+ };
135
+ };
136
+ };
137
+ ComAtprotoAccountResetPassword: {
138
+ lexicon: number;
139
+ id: string;
140
+ defs: {
141
+ main: {
142
+ type: string;
143
+ description: string;
144
+ input: {
145
+ encoding: string;
146
+ schema: {
147
+ type: string;
148
+ required: string[];
149
+ properties: {
150
+ token: {
151
+ type: string;
152
+ };
153
+ password: {
154
+ type: string;
155
+ };
156
+ };
157
+ };
158
+ };
159
+ errors: {
160
+ name: string;
161
+ }[];
162
+ };
163
+ };
164
+ };
165
+ ComAtprotoBlobUpload: {
166
+ lexicon: number;
167
+ id: string;
168
+ defs: {
169
+ main: {
170
+ type: string;
171
+ description: string;
172
+ input: {
173
+ encoding: string;
174
+ };
175
+ output: {
176
+ encoding: string;
177
+ schema: {
178
+ type: string;
179
+ required: string[];
180
+ properties: {
181
+ cid: {
182
+ type: string;
183
+ };
184
+ };
185
+ };
186
+ };
187
+ };
188
+ };
189
+ };
190
+ ComAtprotoHandleResolve: {
191
+ lexicon: number;
192
+ id: string;
193
+ defs: {
194
+ main: {
195
+ type: string;
196
+ description: string;
197
+ parameters: {
198
+ type: string;
199
+ properties: {
200
+ handle: {
201
+ type: string;
202
+ description: string;
203
+ };
204
+ };
205
+ };
206
+ output: {
207
+ encoding: string;
208
+ schema: {
209
+ type: string;
210
+ required: string[];
211
+ properties: {
212
+ did: {
213
+ type: string;
214
+ };
215
+ };
216
+ };
217
+ };
218
+ };
219
+ };
220
+ };
221
+ ComAtprotoRepoBatchWrite: {
222
+ lexicon: number;
223
+ id: string;
224
+ defs: {
225
+ main: {
226
+ type: string;
227
+ description: string;
228
+ input: {
229
+ encoding: string;
230
+ schema: {
231
+ type: string;
232
+ required: string[];
233
+ properties: {
234
+ did: {
235
+ type: string;
236
+ description: string;
237
+ };
238
+ validate: {
239
+ type: string;
240
+ default: boolean;
241
+ description: string;
242
+ };
243
+ writes: {
244
+ type: string;
245
+ items: {
246
+ type: string;
247
+ refs: string[];
248
+ closed: boolean;
249
+ };
250
+ };
251
+ };
252
+ };
253
+ };
254
+ };
255
+ create: {
256
+ type: string;
257
+ required: string[];
258
+ properties: {
259
+ action: {
260
+ type: string;
261
+ const: string;
262
+ };
263
+ collection: {
264
+ type: string;
265
+ };
266
+ rkey: {
267
+ type: string;
268
+ };
269
+ value: {
270
+ type: string;
271
+ };
272
+ };
273
+ };
274
+ update: {
275
+ type: string;
276
+ required: string[];
277
+ properties: {
278
+ action: {
279
+ type: string;
280
+ const: string;
281
+ };
282
+ collection: {
283
+ type: string;
284
+ };
285
+ rkey: {
286
+ type: string;
287
+ };
288
+ value: {
289
+ type: string;
290
+ };
291
+ };
292
+ };
293
+ delete: {
294
+ type: string;
295
+ required: string[];
296
+ properties: {
297
+ action: {
298
+ type: string;
299
+ const: string;
300
+ };
301
+ collection: {
302
+ type: string;
303
+ };
304
+ rkey: {
305
+ type: string;
306
+ };
307
+ };
308
+ };
309
+ };
310
+ };
311
+ ComAtprotoRepoCreateRecord: {
312
+ lexicon: number;
313
+ id: string;
314
+ defs: {
315
+ main: {
316
+ type: string;
317
+ description: string;
318
+ input: {
319
+ encoding: string;
320
+ schema: {
321
+ type: string;
322
+ required: string[];
323
+ properties: {
324
+ did: {
325
+ type: string;
326
+ description: string;
327
+ };
328
+ collection: {
329
+ type: string;
330
+ description: string;
331
+ };
332
+ validate: {
333
+ type: string;
334
+ default: boolean;
335
+ description: string;
336
+ };
337
+ record: {
338
+ type: string;
339
+ description: string;
340
+ };
341
+ };
342
+ };
343
+ };
344
+ output: {
345
+ encoding: string;
346
+ schema: {
347
+ type: string;
348
+ required: string[];
349
+ properties: {
350
+ uri: {
351
+ type: string;
352
+ };
353
+ cid: {
354
+ type: string;
355
+ };
356
+ };
357
+ };
358
+ };
359
+ };
360
+ };
361
+ };
362
+ ComAtprotoRepoDeleteRecord: {
363
+ lexicon: number;
364
+ id: string;
365
+ defs: {
366
+ main: {
367
+ type: string;
368
+ description: string;
369
+ input: {
370
+ encoding: string;
371
+ schema: {
372
+ type: string;
373
+ required: string[];
374
+ properties: {
375
+ did: {
376
+ type: string;
377
+ description: string;
378
+ };
379
+ collection: {
380
+ type: string;
381
+ description: string;
382
+ };
383
+ rkey: {
384
+ type: string;
385
+ description: string;
386
+ };
387
+ };
388
+ };
389
+ };
390
+ };
391
+ };
392
+ };
393
+ ComAtprotoRepoDescribe: {
394
+ lexicon: number;
395
+ id: string;
396
+ defs: {
397
+ main: {
398
+ type: string;
399
+ description: string;
400
+ parameters: {
401
+ type: string;
402
+ required: string[];
403
+ properties: {
404
+ user: {
405
+ type: string;
406
+ description: string;
407
+ };
408
+ };
409
+ };
410
+ output: {
411
+ encoding: string;
412
+ schema: {
413
+ type: string;
414
+ required: string[];
415
+ properties: {
416
+ handle: {
417
+ type: string;
418
+ };
419
+ did: {
420
+ type: string;
421
+ };
422
+ didDoc: {
423
+ type: string;
424
+ };
425
+ collections: {
426
+ type: string;
427
+ items: {
428
+ type: string;
429
+ };
430
+ };
431
+ handleIsCorrect: {
432
+ type: string;
433
+ };
434
+ };
435
+ };
436
+ };
437
+ };
438
+ };
439
+ };
440
+ ComAtprotoRepoGetRecord: {
441
+ lexicon: number;
442
+ id: string;
443
+ defs: {
444
+ main: {
445
+ type: string;
446
+ description: string;
447
+ parameters: {
448
+ type: string;
449
+ required: string[];
450
+ properties: {
451
+ user: {
452
+ type: string;
453
+ description: string;
454
+ };
455
+ collection: {
456
+ type: string;
457
+ description: string;
458
+ };
459
+ rkey: {
460
+ type: string;
461
+ description: string;
462
+ };
463
+ cid: {
464
+ type: string;
465
+ description: string;
466
+ };
467
+ };
468
+ };
469
+ output: {
470
+ encoding: string;
471
+ schema: {
472
+ type: string;
473
+ required: string[];
474
+ properties: {
475
+ uri: {
476
+ type: string;
477
+ };
478
+ cid: {
479
+ type: string;
480
+ };
481
+ value: {
482
+ type: string;
483
+ };
484
+ };
485
+ };
486
+ };
487
+ };
488
+ };
489
+ };
490
+ ComAtprotoRepoListRecords: {
491
+ lexicon: number;
492
+ id: string;
493
+ defs: {
494
+ main: {
495
+ type: string;
496
+ description: string;
497
+ parameters: {
498
+ type: string;
499
+ required: string[];
500
+ properties: {
501
+ user: {
502
+ type: string;
503
+ description: string;
504
+ };
505
+ collection: {
506
+ type: string;
507
+ description: string;
508
+ };
509
+ limit: {
510
+ type: string;
511
+ minimum: number;
512
+ maximum: number;
513
+ default: number;
514
+ description: string;
515
+ };
516
+ before: {
517
+ type: string;
518
+ description: string;
519
+ };
520
+ after: {
521
+ type: string;
522
+ description: string;
523
+ };
524
+ reverse: {
525
+ type: string;
526
+ description: string;
527
+ };
528
+ };
529
+ };
530
+ output: {
531
+ encoding: string;
532
+ schema: {
533
+ 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
+ };
547
+ };
548
+ };
549
+ };
550
+ record: {
551
+ type: string;
552
+ required: string[];
553
+ properties: {
554
+ uri: {
555
+ type: string;
556
+ };
557
+ cid: {
558
+ type: string;
559
+ };
560
+ value: {
561
+ type: string;
562
+ };
563
+ };
564
+ };
565
+ };
566
+ };
567
+ ComAtprotoRepoPutRecord: {
568
+ lexicon: number;
569
+ id: string;
570
+ defs: {
571
+ main: {
572
+ type: string;
573
+ description: string;
574
+ input: {
575
+ encoding: string;
576
+ schema: {
577
+ type: string;
578
+ required: string[];
579
+ properties: {
580
+ did: {
581
+ type: string;
582
+ description: string;
583
+ };
584
+ collection: {
585
+ type: string;
586
+ description: string;
587
+ };
588
+ rkey: {
589
+ type: string;
590
+ description: string;
591
+ };
592
+ validate: {
593
+ type: string;
594
+ default: boolean;
595
+ description: string;
596
+ };
597
+ record: {
598
+ type: string;
599
+ description: string;
600
+ };
601
+ };
602
+ };
603
+ };
604
+ output: {
605
+ encoding: string;
606
+ schema: {
607
+ type: string;
608
+ required: string[];
609
+ properties: {
610
+ uri: {
611
+ type: string;
612
+ };
613
+ cid: {
614
+ type: string;
615
+ };
616
+ };
617
+ };
618
+ };
619
+ };
620
+ };
621
+ };
622
+ ComAtprotoRepoStrongRef: {
623
+ lexicon: number;
624
+ id: string;
625
+ description: string;
626
+ defs: {
627
+ main: {
628
+ type: string;
629
+ required: string[];
630
+ properties: {
631
+ uri: {
632
+ type: string;
633
+ };
634
+ cid: {
635
+ type: string;
636
+ };
637
+ };
638
+ };
639
+ };
640
+ };
641
+ ComAtprotoServerGetAccountsConfig: {
642
+ lexicon: number;
643
+ id: string;
644
+ defs: {
645
+ main: {
646
+ type: string;
647
+ description: string;
648
+ output: {
649
+ encoding: string;
650
+ schema: {
651
+ type: string;
652
+ required: string[];
653
+ properties: {
654
+ inviteCodeRequired: {
655
+ type: string;
656
+ };
657
+ availableUserDomains: {
658
+ type: string;
659
+ items: {
660
+ type: string;
661
+ };
662
+ };
663
+ links: {
664
+ type: string;
665
+ ref: string;
666
+ };
667
+ };
668
+ };
669
+ };
670
+ };
671
+ links: {
672
+ type: string;
673
+ properties: {
674
+ privacyPolicy: {
675
+ type: string;
676
+ };
677
+ termsOfService: {
678
+ type: string;
679
+ };
680
+ };
681
+ };
682
+ };
683
+ };
684
+ ComAtprotoSessionCreate: {
685
+ lexicon: number;
686
+ id: string;
687
+ defs: {
688
+ main: {
689
+ type: string;
690
+ description: string;
691
+ input: {
692
+ encoding: string;
693
+ schema: {
694
+ type: string;
695
+ required: string[];
696
+ properties: {
697
+ handle: {
698
+ type: string;
699
+ };
700
+ password: {
701
+ type: string;
702
+ };
703
+ };
704
+ };
705
+ };
706
+ output: {
707
+ encoding: string;
708
+ schema: {
709
+ type: string;
710
+ required: string[];
711
+ properties: {
712
+ accessJwt: {
713
+ type: string;
714
+ };
715
+ refreshJwt: {
716
+ type: string;
717
+ };
718
+ handle: {
719
+ type: string;
720
+ };
721
+ did: {
722
+ type: string;
723
+ };
724
+ };
725
+ };
726
+ };
727
+ };
728
+ };
729
+ };
730
+ ComAtprotoSessionDelete: {
731
+ lexicon: number;
732
+ id: string;
733
+ defs: {
734
+ main: {
735
+ type: string;
736
+ description: string;
737
+ };
738
+ };
739
+ };
740
+ ComAtprotoSessionGet: {
741
+ lexicon: number;
742
+ id: string;
743
+ defs: {
744
+ main: {
745
+ type: string;
746
+ description: string;
747
+ output: {
748
+ encoding: string;
749
+ schema: {
750
+ type: string;
751
+ required: string[];
752
+ properties: {
753
+ handle: {
754
+ type: string;
755
+ };
756
+ did: {
757
+ type: string;
758
+ };
759
+ };
760
+ };
761
+ };
762
+ };
763
+ };
764
+ };
765
+ ComAtprotoSessionRefresh: {
766
+ lexicon: number;
767
+ id: string;
768
+ defs: {
769
+ main: {
770
+ type: string;
771
+ description: string;
772
+ output: {
773
+ encoding: string;
774
+ schema: {
775
+ type: string;
776
+ required: string[];
777
+ properties: {
778
+ accessJwt: {
779
+ type: string;
780
+ };
781
+ refreshJwt: {
782
+ type: string;
783
+ };
784
+ handle: {
785
+ type: string;
786
+ };
787
+ did: {
788
+ type: string;
789
+ };
790
+ };
791
+ };
792
+ };
793
+ };
794
+ };
795
+ };
796
+ ComAtprotoSyncGetRepo: {
797
+ lexicon: number;
798
+ id: string;
799
+ defs: {
800
+ main: {
801
+ type: string;
802
+ description: string;
803
+ parameters: {
804
+ type: string;
805
+ required: string[];
806
+ properties: {
807
+ did: {
808
+ type: string;
809
+ description: string;
810
+ };
811
+ from: {
812
+ type: string;
813
+ description: string;
814
+ };
815
+ };
816
+ };
817
+ output: {
818
+ encoding: string;
819
+ };
820
+ };
821
+ };
822
+ };
823
+ ComAtprotoSyncGetRoot: {
824
+ lexicon: number;
825
+ id: string;
826
+ defs: {
827
+ main: {
828
+ type: string;
829
+ description: string;
830
+ parameters: {
831
+ type: string;
832
+ required: string[];
833
+ properties: {
834
+ did: {
835
+ type: string;
836
+ description: string;
837
+ };
838
+ };
839
+ };
840
+ output: {
841
+ encoding: string;
842
+ schema: {
843
+ type: string;
844
+ required: string[];
845
+ properties: {
846
+ root: {
847
+ type: string;
848
+ };
849
+ };
850
+ };
851
+ };
852
+ };
853
+ };
854
+ };
855
+ ComAtprotoSyncUpdateRepo: {
856
+ lexicon: number;
857
+ id: string;
858
+ defs: {
859
+ main: {
860
+ type: string;
861
+ description: string;
862
+ parameters: {
863
+ type: string;
864
+ required: string[];
865
+ properties: {
866
+ did: {
867
+ type: string;
868
+ description: string;
869
+ };
870
+ };
871
+ };
872
+ input: {
873
+ encoding: string;
874
+ };
875
+ };
876
+ };
877
+ };
878
+ AppBskyActorCreateScene: {
879
+ lexicon: number;
880
+ id: string;
881
+ defs: {
882
+ main: {
883
+ type: string;
884
+ 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
+ };
897
+ };
898
+ };
899
+ };
900
+ output: {
901
+ 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
+ };
916
+ };
917
+ };
918
+ };
919
+ errors: {
920
+ name: string;
921
+ }[];
922
+ };
923
+ };
924
+ };
925
+ AppBskyActorGetProfile: {
926
+ lexicon: number;
927
+ id: string;
928
+ defs: {
929
+ main: {
930
+ type: string;
931
+ parameters: {
932
+ type: string;
933
+ required: string[];
934
+ properties: {
935
+ actor: {
936
+ type: string;
937
+ };
938
+ };
939
+ };
940
+ output: {
941
+ encoding: string;
942
+ schema: {
943
+ type: string;
944
+ required: string[];
945
+ properties: {
946
+ did: {
947
+ type: string;
948
+ };
949
+ declaration: {
950
+ type: string;
951
+ ref: string;
952
+ };
953
+ handle: {
954
+ type: string;
955
+ };
956
+ creator: {
957
+ type: string;
958
+ };
959
+ displayName: {
960
+ type: string;
961
+ maxLength: number;
962
+ };
963
+ description: {
964
+ type: string;
965
+ maxLength: number;
966
+ };
967
+ avatar: {
968
+ type: string;
969
+ };
970
+ banner: {
971
+ type: string;
972
+ };
973
+ followersCount: {
974
+ type: string;
975
+ };
976
+ followsCount: {
977
+ type: string;
978
+ };
979
+ membersCount: {
980
+ type: string;
981
+ };
982
+ postsCount: {
983
+ type: string;
984
+ };
985
+ myState: {
986
+ type: string;
987
+ ref: string;
988
+ };
989
+ };
990
+ };
991
+ };
992
+ };
993
+ myState: {
994
+ type: string;
995
+ properties: {
996
+ follow: {
997
+ type: string;
998
+ };
999
+ member: {
1000
+ type: string;
1001
+ };
1002
+ };
1003
+ };
1004
+ };
1005
+ };
1006
+ AppBskyActorGetSuggestions: {
1007
+ lexicon: number;
1008
+ id: string;
1009
+ defs: {
1010
+ main: {
1011
+ type: string;
1012
+ description: string;
1013
+ parameters: {
1014
+ type: string;
1015
+ properties: {
1016
+ limit: {
1017
+ type: string;
1018
+ minimum: number;
1019
+ maximum: number;
1020
+ default: number;
1021
+ };
1022
+ cursor: {
1023
+ type: string;
1024
+ };
1025
+ };
1026
+ };
1027
+ output: {
1028
+ encoding: string;
1029
+ schema: {
1030
+ type: string;
1031
+ required: string[];
1032
+ properties: {
1033
+ cursor: {
1034
+ type: string;
1035
+ };
1036
+ actors: {
1037
+ type: string;
1038
+ items: {
1039
+ type: string;
1040
+ ref: string;
1041
+ };
1042
+ };
1043
+ };
1044
+ };
1045
+ };
1046
+ };
1047
+ actor: {
1048
+ type: string;
1049
+ required: string[];
1050
+ properties: {
1051
+ did: {
1052
+ type: string;
1053
+ };
1054
+ declaration: {
1055
+ type: string;
1056
+ ref: string;
1057
+ };
1058
+ handle: {
1059
+ type: string;
1060
+ };
1061
+ displayName: {
1062
+ type: string;
1063
+ maxLength: number;
1064
+ };
1065
+ description: {
1066
+ type: string;
1067
+ };
1068
+ avatar: {
1069
+ type: string;
1070
+ };
1071
+ indexedAt: {
1072
+ type: string;
1073
+ };
1074
+ myState: {
1075
+ type: string;
1076
+ ref: string;
1077
+ };
1078
+ };
1079
+ };
1080
+ myState: {
1081
+ type: string;
1082
+ properties: {
1083
+ follow: {
1084
+ type: string;
1085
+ };
1086
+ };
1087
+ };
1088
+ };
1089
+ };
1090
+ AppBskyActorProfile: {
1091
+ lexicon: number;
1092
+ id: string;
1093
+ defs: {
1094
+ main: {
1095
+ type: string;
1096
+ key: string;
1097
+ record: {
1098
+ type: string;
1099
+ required: string[];
1100
+ properties: {
1101
+ displayName: {
1102
+ type: string;
1103
+ maxLength: number;
1104
+ };
1105
+ description: {
1106
+ type: string;
1107
+ maxLength: number;
1108
+ };
1109
+ avatar: {
1110
+ type: string;
1111
+ accept: string[];
1112
+ maxWidth: number;
1113
+ maxHeight: number;
1114
+ maxSize: number;
1115
+ };
1116
+ banner: {
1117
+ type: string;
1118
+ accept: string[];
1119
+ maxWidth: number;
1120
+ maxHeight: number;
1121
+ maxSize: number;
1122
+ };
1123
+ };
1124
+ };
1125
+ };
1126
+ };
1127
+ };
1128
+ AppBskyActorRef: {
1129
+ lexicon: number;
1130
+ id: string;
1131
+ description: string;
1132
+ defs: {
1133
+ main: {
1134
+ type: string;
1135
+ required: string[];
1136
+ properties: {
1137
+ did: {
1138
+ type: string;
1139
+ };
1140
+ declarationCid: {
1141
+ type: string;
1142
+ };
1143
+ };
1144
+ };
1145
+ withInfo: {
1146
+ type: string;
1147
+ required: string[];
1148
+ properties: {
1149
+ did: {
1150
+ type: string;
1151
+ };
1152
+ declaration: {
1153
+ type: string;
1154
+ ref: string;
1155
+ };
1156
+ handle: {
1157
+ type: string;
1158
+ };
1159
+ displayName: {
1160
+ type: string;
1161
+ maxLength: number;
1162
+ };
1163
+ avatar: {
1164
+ type: string;
1165
+ };
1166
+ };
1167
+ };
1168
+ };
1169
+ };
1170
+ AppBskyActorSearch: {
1171
+ lexicon: number;
1172
+ id: string;
1173
+ defs: {
1174
+ main: {
1175
+ type: string;
1176
+ description: string;
1177
+ parameters: {
1178
+ type: string;
1179
+ required: string[];
1180
+ properties: {
1181
+ term: {
1182
+ type: string;
1183
+ };
1184
+ limit: {
1185
+ type: string;
1186
+ minimum: number;
1187
+ maximum: number;
1188
+ default: number;
1189
+ };
1190
+ before: {
1191
+ type: string;
1192
+ };
1193
+ };
1194
+ };
1195
+ output: {
1196
+ encoding: string;
1197
+ schema: {
1198
+ type: string;
1199
+ required: string[];
1200
+ properties: {
1201
+ cursor: {
1202
+ type: string;
1203
+ };
1204
+ users: {
1205
+ type: string;
1206
+ items: {
1207
+ type: string;
1208
+ ref: string;
1209
+ };
1210
+ };
1211
+ };
1212
+ };
1213
+ };
1214
+ };
1215
+ user: {
1216
+ type: string;
1217
+ required: string[];
1218
+ properties: {
1219
+ did: {
1220
+ type: string;
1221
+ };
1222
+ declaration: {
1223
+ type: string;
1224
+ ref: string;
1225
+ };
1226
+ handle: {
1227
+ type: string;
1228
+ };
1229
+ displayName: {
1230
+ type: string;
1231
+ maxLength: number;
1232
+ };
1233
+ avatar: {
1234
+ type: string;
1235
+ };
1236
+ description: {
1237
+ type: string;
1238
+ };
1239
+ indexedAt: {
1240
+ type: string;
1241
+ };
1242
+ };
1243
+ };
1244
+ };
1245
+ };
1246
+ AppBskyActorSearchTypeahead: {
1247
+ lexicon: number;
1248
+ id: string;
1249
+ defs: {
1250
+ main: {
1251
+ type: string;
1252
+ description: string;
1253
+ parameters: {
1254
+ type: string;
1255
+ required: string[];
1256
+ properties: {
1257
+ term: {
1258
+ type: string;
1259
+ };
1260
+ limit: {
1261
+ type: string;
1262
+ minimum: number;
1263
+ maximum: number;
1264
+ default: number;
1265
+ };
1266
+ };
1267
+ };
1268
+ output: {
1269
+ encoding: string;
1270
+ schema: {
1271
+ type: string;
1272
+ required: string[];
1273
+ properties: {
1274
+ users: {
1275
+ type: string;
1276
+ items: {
1277
+ type: string;
1278
+ ref: string;
1279
+ };
1280
+ };
1281
+ };
1282
+ };
1283
+ };
1284
+ };
1285
+ user: {
1286
+ type: string;
1287
+ required: string[];
1288
+ properties: {
1289
+ did: {
1290
+ type: string;
1291
+ };
1292
+ declaration: {
1293
+ type: string;
1294
+ ref: string;
1295
+ };
1296
+ handle: {
1297
+ type: string;
1298
+ };
1299
+ displayName: {
1300
+ type: string;
1301
+ maxLength: number;
1302
+ };
1303
+ avatar: {
1304
+ type: string;
1305
+ };
1306
+ };
1307
+ };
1308
+ };
1309
+ };
1310
+ AppBskyActorUpdateProfile: {
1311
+ lexicon: number;
1312
+ id: string;
1313
+ defs: {
1314
+ main: {
1315
+ type: string;
1316
+ description: string;
1317
+ input: {
1318
+ encoding: string;
1319
+ schema: {
1320
+ type: string;
1321
+ properties: {
1322
+ did: {
1323
+ type: string;
1324
+ };
1325
+ displayName: {
1326
+ type: string;
1327
+ maxLength: number;
1328
+ };
1329
+ description: {
1330
+ type: string;
1331
+ maxLength: number;
1332
+ };
1333
+ avatar: {
1334
+ type: string;
1335
+ accept: string[];
1336
+ maxWidth: number;
1337
+ maxHeight: number;
1338
+ maxSize: number;
1339
+ };
1340
+ banner: {
1341
+ type: string;
1342
+ accept: string[];
1343
+ maxWidth: number;
1344
+ maxHeight: number;
1345
+ maxSize: number;
1346
+ };
1347
+ };
1348
+ };
1349
+ };
1350
+ output: {
1351
+ encoding: string;
1352
+ schema: {
1353
+ type: string;
1354
+ required: string[];
1355
+ properties: {
1356
+ uri: {
1357
+ type: string;
1358
+ };
1359
+ cid: {
1360
+ type: string;
1361
+ };
1362
+ record: {
1363
+ type: string;
1364
+ };
1365
+ };
1366
+ };
1367
+ };
1368
+ errors: {
1369
+ name: string;
1370
+ }[];
1371
+ };
1372
+ };
1373
+ };
1374
+ AppBskyEmbedExternal: {
1375
+ lexicon: number;
1376
+ id: string;
1377
+ description: string;
1378
+ defs: {
1379
+ main: {
1380
+ type: string;
1381
+ required: string[];
1382
+ properties: {
1383
+ external: {
1384
+ type: string;
1385
+ ref: string;
1386
+ };
1387
+ };
1388
+ };
1389
+ external: {
1390
+ type: string;
1391
+ required: string[];
1392
+ properties: {
1393
+ uri: {
1394
+ type: string;
1395
+ };
1396
+ title: {
1397
+ type: string;
1398
+ };
1399
+ description: {
1400
+ type: string;
1401
+ };
1402
+ thumb: {
1403
+ type: string;
1404
+ accept: string[];
1405
+ maxWidth: number;
1406
+ maxHeight: number;
1407
+ maxSize: number;
1408
+ };
1409
+ };
1410
+ };
1411
+ presented: {
1412
+ type: string;
1413
+ required: string[];
1414
+ properties: {
1415
+ external: {
1416
+ type: string;
1417
+ ref: string;
1418
+ };
1419
+ };
1420
+ };
1421
+ presentedExternal: {
1422
+ type: string;
1423
+ required: string[];
1424
+ properties: {
1425
+ uri: {
1426
+ type: string;
1427
+ };
1428
+ title: {
1429
+ type: string;
1430
+ };
1431
+ description: {
1432
+ type: string;
1433
+ };
1434
+ thumb: {
1435
+ type: string;
1436
+ };
1437
+ };
1438
+ };
1439
+ };
1440
+ };
1441
+ AppBskyEmbedImages: {
1442
+ lexicon: number;
1443
+ id: string;
1444
+ description: string;
1445
+ defs: {
1446
+ main: {
1447
+ type: string;
1448
+ required: string[];
1449
+ properties: {
1450
+ images: {
1451
+ type: string;
1452
+ items: {
1453
+ type: string;
1454
+ ref: string;
1455
+ };
1456
+ maxLength: number;
1457
+ };
1458
+ };
1459
+ };
1460
+ image: {
1461
+ type: string;
1462
+ required: string[];
1463
+ properties: {
1464
+ image: {
1465
+ type: string;
1466
+ accept: string[];
1467
+ maxWidth: number;
1468
+ maxHeight: number;
1469
+ maxSize: number;
1470
+ };
1471
+ alt: {
1472
+ type: string;
1473
+ };
1474
+ };
1475
+ };
1476
+ presented: {
1477
+ type: string;
1478
+ required: string[];
1479
+ properties: {
1480
+ images: {
1481
+ type: string;
1482
+ items: {
1483
+ type: string;
1484
+ ref: string;
1485
+ };
1486
+ maxLength: number;
1487
+ };
1488
+ };
1489
+ };
1490
+ presentedImage: {
1491
+ type: string;
1492
+ required: string[];
1493
+ properties: {
1494
+ thumb: {
1495
+ type: string;
1496
+ };
1497
+ fullsize: {
1498
+ type: string;
1499
+ };
1500
+ alt: {
1501
+ type: string;
1502
+ };
1503
+ };
1504
+ };
1505
+ };
1506
+ };
1507
+ AppBskyFeedFeedViewPost: {
1508
+ lexicon: number;
1509
+ id: string;
1510
+ defs: {
1511
+ main: {
1512
+ type: string;
1513
+ required: string[];
1514
+ properties: {
1515
+ post: {
1516
+ type: string;
1517
+ ref: string;
1518
+ };
1519
+ reply: {
1520
+ type: string;
1521
+ ref: string;
1522
+ };
1523
+ reason: {
1524
+ type: string;
1525
+ refs: string[];
1526
+ };
1527
+ };
1528
+ };
1529
+ replyRef: {
1530
+ type: string;
1531
+ required: string[];
1532
+ properties: {
1533
+ root: {
1534
+ type: string;
1535
+ ref: string;
1536
+ };
1537
+ parent: {
1538
+ type: string;
1539
+ ref: string;
1540
+ };
1541
+ };
1542
+ };
1543
+ reasonTrend: {
1544
+ type: string;
1545
+ required: string[];
1546
+ properties: {
1547
+ by: {
1548
+ type: string;
1549
+ ref: string;
1550
+ };
1551
+ indexedAt: {
1552
+ type: string;
1553
+ };
1554
+ };
1555
+ };
1556
+ reasonRepost: {
1557
+ type: string;
1558
+ required: string[];
1559
+ properties: {
1560
+ by: {
1561
+ type: string;
1562
+ ref: string;
1563
+ };
1564
+ indexedAt: {
1565
+ type: string;
1566
+ };
1567
+ };
1568
+ };
1569
+ };
1570
+ };
1571
+ AppBskyFeedGetAuthorFeed: {
1572
+ lexicon: number;
1573
+ id: string;
1574
+ defs: {
1575
+ main: {
1576
+ type: string;
1577
+ description: string;
1578
+ parameters: {
1579
+ type: string;
1580
+ required: string[];
1581
+ properties: {
1582
+ author: {
1583
+ type: string;
1584
+ };
1585
+ limit: {
1586
+ type: string;
1587
+ minimum: number;
1588
+ maximum: number;
1589
+ default: number;
1590
+ };
1591
+ before: {
1592
+ type: string;
1593
+ };
1594
+ };
1595
+ };
1596
+ output: {
1597
+ encoding: string;
1598
+ schema: {
1599
+ type: string;
1600
+ required: string[];
1601
+ properties: {
1602
+ cursor: {
1603
+ type: string;
1604
+ };
1605
+ feed: {
1606
+ type: string;
1607
+ items: {
1608
+ type: string;
1609
+ ref: string;
1610
+ };
1611
+ };
1612
+ };
1613
+ };
1614
+ };
1615
+ };
1616
+ };
1617
+ };
1618
+ AppBskyFeedGetPostThread: {
1619
+ lexicon: number;
1620
+ id: string;
1621
+ defs: {
1622
+ main: {
1623
+ type: string;
1624
+ parameters: {
1625
+ type: string;
1626
+ required: string[];
1627
+ properties: {
1628
+ uri: {
1629
+ type: string;
1630
+ };
1631
+ depth: {
1632
+ type: string;
1633
+ };
1634
+ };
1635
+ };
1636
+ output: {
1637
+ encoding: string;
1638
+ schema: {
1639
+ type: string;
1640
+ required: string[];
1641
+ properties: {
1642
+ thread: {
1643
+ type: string;
1644
+ refs: string[];
1645
+ };
1646
+ };
1647
+ };
1648
+ };
1649
+ errors: {
1650
+ name: string;
1651
+ }[];
1652
+ };
1653
+ threadViewPost: {
1654
+ type: string;
1655
+ required: string[];
1656
+ properties: {
1657
+ post: {
1658
+ type: string;
1659
+ ref: string;
1660
+ };
1661
+ parent: {
1662
+ type: string;
1663
+ refs: string[];
1664
+ };
1665
+ replies: {
1666
+ type: string;
1667
+ items: {
1668
+ type: string;
1669
+ refs: string[];
1670
+ };
1671
+ };
1672
+ };
1673
+ };
1674
+ notFoundPost: {
1675
+ type: string;
1676
+ required: string[];
1677
+ properties: {
1678
+ uri: {
1679
+ type: string;
1680
+ };
1681
+ notFound: {
1682
+ type: string;
1683
+ const: boolean;
1684
+ };
1685
+ };
1686
+ };
1687
+ };
1688
+ };
1689
+ AppBskyFeedGetRepostedBy: {
1690
+ lexicon: number;
1691
+ id: string;
1692
+ defs: {
1693
+ main: {
1694
+ type: string;
1695
+ parameters: {
1696
+ type: string;
1697
+ required: string[];
1698
+ properties: {
1699
+ uri: {
1700
+ type: string;
1701
+ };
1702
+ cid: {
1703
+ type: string;
1704
+ };
1705
+ limit: {
1706
+ type: string;
1707
+ minimum: number;
1708
+ maximum: number;
1709
+ default: number;
1710
+ };
1711
+ before: {
1712
+ type: string;
1713
+ };
1714
+ };
1715
+ };
1716
+ output: {
1717
+ encoding: string;
1718
+ schema: {
1719
+ type: string;
1720
+ required: string[];
1721
+ properties: {
1722
+ uri: {
1723
+ type: string;
1724
+ };
1725
+ cid: {
1726
+ type: string;
1727
+ };
1728
+ cursor: {
1729
+ type: string;
1730
+ };
1731
+ repostedBy: {
1732
+ type: string;
1733
+ items: {
1734
+ type: string;
1735
+ ref: string;
1736
+ };
1737
+ };
1738
+ };
1739
+ };
1740
+ };
1741
+ };
1742
+ repostedBy: {
1743
+ type: string;
1744
+ required: string[];
1745
+ properties: {
1746
+ did: {
1747
+ type: string;
1748
+ };
1749
+ declaration: {
1750
+ type: string;
1751
+ ref: string;
1752
+ };
1753
+ handle: {
1754
+ type: string;
1755
+ };
1756
+ displayName: {
1757
+ type: string;
1758
+ maxLength: number;
1759
+ };
1760
+ avatar: {
1761
+ type: string;
1762
+ };
1763
+ createdAt: {
1764
+ type: string;
1765
+ };
1766
+ indexedAt: {
1767
+ type: string;
1768
+ };
1769
+ };
1770
+ };
1771
+ };
1772
+ };
1773
+ AppBskyFeedGetTimeline: {
1774
+ lexicon: number;
1775
+ id: string;
1776
+ defs: {
1777
+ main: {
1778
+ type: string;
1779
+ description: string;
1780
+ parameters: {
1781
+ type: string;
1782
+ properties: {
1783
+ algorithm: {
1784
+ type: string;
1785
+ };
1786
+ limit: {
1787
+ type: string;
1788
+ minimum: number;
1789
+ maximum: number;
1790
+ default: number;
1791
+ };
1792
+ before: {
1793
+ type: string;
1794
+ };
1795
+ };
1796
+ };
1797
+ output: {
1798
+ encoding: string;
1799
+ schema: {
1800
+ type: string;
1801
+ required: string[];
1802
+ properties: {
1803
+ cursor: {
1804
+ type: string;
1805
+ };
1806
+ feed: {
1807
+ type: string;
1808
+ items: {
1809
+ type: string;
1810
+ ref: string;
1811
+ };
1812
+ };
1813
+ };
1814
+ };
1815
+ };
1816
+ };
1817
+ };
1818
+ };
1819
+ AppBskyFeedGetVotes: {
1820
+ lexicon: number;
1821
+ id: string;
1822
+ defs: {
1823
+ main: {
1824
+ type: string;
1825
+ parameters: {
1826
+ type: string;
1827
+ required: string[];
1828
+ properties: {
1829
+ uri: {
1830
+ type: string;
1831
+ };
1832
+ cid: {
1833
+ type: string;
1834
+ };
1835
+ direction: {
1836
+ type: string;
1837
+ enum: string[];
1838
+ };
1839
+ limit: {
1840
+ type: string;
1841
+ minimum: number;
1842
+ maximum: number;
1843
+ default: number;
1844
+ };
1845
+ before: {
1846
+ type: string;
1847
+ };
1848
+ };
1849
+ };
1850
+ output: {
1851
+ encoding: string;
1852
+ schema: {
1853
+ type: string;
1854
+ required: string[];
1855
+ properties: {
1856
+ uri: {
1857
+ type: string;
1858
+ };
1859
+ cid: {
1860
+ type: string;
1861
+ };
1862
+ cursor: {
1863
+ type: string;
1864
+ };
1865
+ votes: {
1866
+ type: string;
1867
+ items: {
1868
+ type: string;
1869
+ ref: string;
1870
+ };
1871
+ };
1872
+ };
1873
+ };
1874
+ };
1875
+ };
1876
+ vote: {
1877
+ type: string;
1878
+ required: string[];
1879
+ properties: {
1880
+ direction: {
1881
+ type: string;
1882
+ enum: string[];
1883
+ };
1884
+ indexedAt: {
1885
+ type: string;
1886
+ };
1887
+ createdAt: {
1888
+ type: string;
1889
+ };
1890
+ actor: {
1891
+ type: string;
1892
+ ref: string;
1893
+ };
1894
+ };
1895
+ };
1896
+ };
1897
+ };
1898
+ AppBskyFeedPost: {
1899
+ lexicon: number;
1900
+ id: string;
1901
+ defs: {
1902
+ main: {
1903
+ type: string;
1904
+ key: string;
1905
+ record: {
1906
+ type: string;
1907
+ required: string[];
1908
+ properties: {
1909
+ text: {
1910
+ type: string;
1911
+ maxLength: number;
1912
+ };
1913
+ entities: {
1914
+ type: string;
1915
+ items: {
1916
+ type: string;
1917
+ ref: string;
1918
+ };
1919
+ };
1920
+ reply: {
1921
+ type: string;
1922
+ ref: string;
1923
+ };
1924
+ embed: {
1925
+ type: string;
1926
+ refs: string[];
1927
+ };
1928
+ createdAt: {
1929
+ type: string;
1930
+ };
1931
+ };
1932
+ };
1933
+ };
1934
+ replyRef: {
1935
+ type: string;
1936
+ required: string[];
1937
+ properties: {
1938
+ root: {
1939
+ type: string;
1940
+ ref: string;
1941
+ };
1942
+ parent: {
1943
+ type: string;
1944
+ ref: string;
1945
+ };
1946
+ };
1947
+ };
1948
+ entity: {
1949
+ type: string;
1950
+ required: string[];
1951
+ properties: {
1952
+ index: {
1953
+ type: string;
1954
+ ref: string;
1955
+ };
1956
+ type: {
1957
+ type: string;
1958
+ description: string;
1959
+ };
1960
+ value: {
1961
+ type: string;
1962
+ };
1963
+ };
1964
+ };
1965
+ textSlice: {
1966
+ type: string;
1967
+ required: string[];
1968
+ properties: {
1969
+ start: {
1970
+ type: string;
1971
+ minimum: number;
1972
+ };
1973
+ end: {
1974
+ type: string;
1975
+ minimum: number;
1976
+ };
1977
+ };
1978
+ };
1979
+ view: {
1980
+ type: string;
1981
+ required: string[];
1982
+ properties: {
1983
+ uri: {
1984
+ type: string;
1985
+ };
1986
+ cid: {
1987
+ type: string;
1988
+ };
1989
+ author: {
1990
+ type: string;
1991
+ ref: string;
1992
+ };
1993
+ record: {
1994
+ type: string;
1995
+ };
1996
+ embed: {
1997
+ type: string;
1998
+ refs: string[];
1999
+ };
2000
+ replyCount: {
2001
+ type: string;
2002
+ };
2003
+ repostCount: {
2004
+ type: string;
2005
+ };
2006
+ upvoteCount: {
2007
+ type: string;
2008
+ };
2009
+ downvoteCount: {
2010
+ type: string;
2011
+ };
2012
+ indexedAt: {
2013
+ type: string;
2014
+ };
2015
+ viewer: {
2016
+ type: string;
2017
+ ref: string;
2018
+ };
2019
+ };
2020
+ };
2021
+ viewerState: {
2022
+ type: string;
2023
+ properties: {
2024
+ repost: {
2025
+ type: string;
2026
+ };
2027
+ upvote: {
2028
+ type: string;
2029
+ };
2030
+ downvote: {
2031
+ type: string;
2032
+ };
2033
+ };
2034
+ };
2035
+ };
2036
+ };
2037
+ AppBskyFeedRepost: {
2038
+ lexicon: number;
2039
+ id: string;
2040
+ defs: {
2041
+ main: {
2042
+ type: string;
2043
+ key: string;
2044
+ record: {
2045
+ type: string;
2046
+ required: string[];
2047
+ properties: {
2048
+ subject: {
2049
+ type: string;
2050
+ ref: string;
2051
+ };
2052
+ createdAt: {
2053
+ type: string;
2054
+ };
2055
+ };
2056
+ };
2057
+ };
2058
+ };
2059
+ };
2060
+ AppBskyFeedSetVote: {
2061
+ lexicon: number;
2062
+ id: string;
2063
+ defs: {
2064
+ main: {
2065
+ type: string;
2066
+ description: string;
2067
+ input: {
2068
+ encoding: string;
2069
+ schema: {
2070
+ type: string;
2071
+ required: string[];
2072
+ properties: {
2073
+ subject: {
2074
+ type: string;
2075
+ ref: string;
2076
+ };
2077
+ direction: {
2078
+ type: string;
2079
+ enum: string[];
2080
+ };
2081
+ };
2082
+ };
2083
+ };
2084
+ output: {
2085
+ encoding: string;
2086
+ schema: {
2087
+ type: string;
2088
+ properties: {
2089
+ upvote: {
2090
+ type: string;
2091
+ };
2092
+ downvote: {
2093
+ type: string;
2094
+ };
2095
+ };
2096
+ };
2097
+ };
2098
+ };
2099
+ };
2100
+ };
2101
+ AppBskyFeedTrend: {
2102
+ lexicon: number;
2103
+ id: string;
2104
+ defs: {
2105
+ main: {
2106
+ type: string;
2107
+ key: string;
2108
+ record: {
2109
+ type: string;
2110
+ required: string[];
2111
+ properties: {
2112
+ subject: {
2113
+ type: string;
2114
+ ref: string;
2115
+ };
2116
+ createdAt: {
2117
+ type: string;
2118
+ };
2119
+ };
2120
+ };
2121
+ };
2122
+ };
2123
+ };
2124
+ AppBskyFeedVote: {
2125
+ lexicon: number;
2126
+ id: string;
2127
+ defs: {
2128
+ main: {
2129
+ type: string;
2130
+ key: string;
2131
+ record: {
2132
+ type: string;
2133
+ required: string[];
2134
+ properties: {
2135
+ subject: {
2136
+ type: string;
2137
+ ref: string;
2138
+ };
2139
+ direction: {
2140
+ type: string;
2141
+ enum: string[];
2142
+ };
2143
+ createdAt: {
2144
+ type: string;
2145
+ };
2146
+ };
2147
+ };
2148
+ };
2149
+ };
2150
+ };
2151
+ AppBskyGraphAssertCreator: {
2152
+ lexicon: number;
2153
+ id: string;
2154
+ defs: {
2155
+ main: {
2156
+ type: string;
2157
+ description: string;
2158
+ };
2159
+ };
2160
+ };
2161
+ AppBskyGraphAssertMember: {
2162
+ lexicon: number;
2163
+ id: string;
2164
+ defs: {
2165
+ main: {
2166
+ type: string;
2167
+ description: string;
2168
+ };
2169
+ };
2170
+ };
2171
+ AppBskyGraphAssertion: {
2172
+ lexicon: number;
2173
+ id: string;
2174
+ defs: {
2175
+ main: {
2176
+ type: string;
2177
+ key: string;
2178
+ record: {
2179
+ type: string;
2180
+ required: string[];
2181
+ properties: {
2182
+ assertion: {
2183
+ type: string;
2184
+ };
2185
+ subject: {
2186
+ type: string;
2187
+ ref: string;
2188
+ };
2189
+ createdAt: {
2190
+ type: string;
2191
+ };
2192
+ };
2193
+ };
2194
+ };
2195
+ };
2196
+ };
2197
+ AppBskyGraphConfirmation: {
2198
+ lexicon: number;
2199
+ id: string;
2200
+ defs: {
2201
+ main: {
2202
+ type: string;
2203
+ key: string;
2204
+ record: {
2205
+ type: string;
2206
+ required: string[];
2207
+ properties: {
2208
+ originator: {
2209
+ type: string;
2210
+ ref: string;
2211
+ };
2212
+ assertion: {
2213
+ type: string;
2214
+ ref: string;
2215
+ };
2216
+ createdAt: {
2217
+ type: string;
2218
+ };
2219
+ };
2220
+ };
2221
+ };
2222
+ };
2223
+ };
2224
+ AppBskyGraphFollow: {
2225
+ lexicon: number;
2226
+ id: string;
2227
+ defs: {
2228
+ main: {
2229
+ type: string;
2230
+ description: string;
2231
+ key: string;
2232
+ record: {
2233
+ type: string;
2234
+ required: string[];
2235
+ properties: {
2236
+ subject: {
2237
+ type: string;
2238
+ ref: string;
2239
+ };
2240
+ createdAt: {
2241
+ type: string;
2242
+ };
2243
+ };
2244
+ };
2245
+ };
2246
+ };
2247
+ };
2248
+ AppBskyGraphGetAssertions: {
2249
+ lexicon: number;
2250
+ id: string;
2251
+ defs: {
2252
+ main: {
2253
+ type: string;
2254
+ description: string;
2255
+ parameters: {
2256
+ type: string;
2257
+ properties: {
2258
+ author: {
2259
+ type: string;
2260
+ };
2261
+ subject: {
2262
+ type: string;
2263
+ };
2264
+ assertion: {
2265
+ type: string;
2266
+ };
2267
+ confirmed: {
2268
+ type: string;
2269
+ };
2270
+ limit: {
2271
+ type: string;
2272
+ minimum: number;
2273
+ maximum: number;
2274
+ default: number;
2275
+ };
2276
+ before: {
2277
+ type: string;
2278
+ };
2279
+ };
2280
+ };
2281
+ output: {
2282
+ encoding: string;
2283
+ schema: {
2284
+ type: string;
2285
+ required: string[];
2286
+ properties: {
2287
+ cursor: {
2288
+ type: string;
2289
+ };
2290
+ assertions: {
2291
+ type: string;
2292
+ items: {
2293
+ type: string;
2294
+ ref: string;
2295
+ };
2296
+ };
2297
+ };
2298
+ };
2299
+ };
2300
+ };
2301
+ assertion: {
2302
+ type: string;
2303
+ required: string[];
2304
+ properties: {
2305
+ uri: {
2306
+ type: string;
2307
+ };
2308
+ cid: {
2309
+ type: string;
2310
+ };
2311
+ assertion: {
2312
+ type: string;
2313
+ };
2314
+ confirmation: {
2315
+ type: string;
2316
+ ref: string;
2317
+ };
2318
+ author: {
2319
+ type: string;
2320
+ ref: string;
2321
+ };
2322
+ subject: {
2323
+ type: string;
2324
+ ref: string;
2325
+ };
2326
+ indexedAt: {
2327
+ type: string;
2328
+ };
2329
+ createdAt: {
2330
+ type: string;
2331
+ };
2332
+ };
2333
+ };
2334
+ confirmation: {
2335
+ type: string;
2336
+ required: string[];
2337
+ properties: {
2338
+ uri: {
2339
+ type: string;
2340
+ };
2341
+ cid: {
2342
+ type: string;
2343
+ };
2344
+ indexedAt: {
2345
+ type: string;
2346
+ };
2347
+ createdAt: {
2348
+ type: string;
2349
+ };
2350
+ };
2351
+ };
2352
+ };
2353
+ };
2354
+ AppBskyGraphGetFollowers: {
2355
+ lexicon: number;
2356
+ id: string;
2357
+ defs: {
2358
+ main: {
2359
+ type: string;
2360
+ description: string;
2361
+ parameters: {
2362
+ type: string;
2363
+ required: string[];
2364
+ properties: {
2365
+ user: {
2366
+ type: string;
2367
+ };
2368
+ limit: {
2369
+ type: string;
2370
+ minimum: number;
2371
+ maximum: number;
2372
+ default: number;
2373
+ };
2374
+ before: {
2375
+ type: string;
2376
+ };
2377
+ };
2378
+ };
2379
+ output: {
2380
+ encoding: string;
2381
+ schema: {
2382
+ type: string;
2383
+ required: string[];
2384
+ properties: {
2385
+ subject: {
2386
+ type: string;
2387
+ ref: string;
2388
+ };
2389
+ cursor: {
2390
+ type: string;
2391
+ };
2392
+ followers: {
2393
+ type: string;
2394
+ items: {
2395
+ type: string;
2396
+ ref: string;
2397
+ };
2398
+ };
2399
+ };
2400
+ };
2401
+ };
2402
+ };
2403
+ follower: {
2404
+ type: string;
2405
+ required: string[];
2406
+ properties: {
2407
+ did: {
2408
+ type: string;
2409
+ };
2410
+ declaration: {
2411
+ type: string;
2412
+ ref: string;
2413
+ };
2414
+ handle: {
2415
+ type: string;
2416
+ };
2417
+ displayName: {
2418
+ type: string;
2419
+ maxLength: number;
2420
+ };
2421
+ avatar: {
2422
+ type: string;
2423
+ };
2424
+ createdAt: {
2425
+ type: string;
2426
+ };
2427
+ indexedAt: {
2428
+ type: string;
2429
+ };
2430
+ };
2431
+ };
2432
+ };
2433
+ };
2434
+ AppBskyGraphGetFollows: {
2435
+ lexicon: number;
2436
+ id: string;
2437
+ defs: {
2438
+ main: {
2439
+ type: string;
2440
+ description: string;
2441
+ parameters: {
2442
+ type: string;
2443
+ required: string[];
2444
+ properties: {
2445
+ user: {
2446
+ type: string;
2447
+ };
2448
+ limit: {
2449
+ type: string;
2450
+ minimum: number;
2451
+ maximum: number;
2452
+ default: number;
2453
+ };
2454
+ before: {
2455
+ type: string;
2456
+ };
2457
+ };
2458
+ };
2459
+ output: {
2460
+ encoding: string;
2461
+ schema: {
2462
+ type: string;
2463
+ required: string[];
2464
+ properties: {
2465
+ subject: {
2466
+ type: string;
2467
+ ref: string;
2468
+ };
2469
+ cursor: {
2470
+ type: string;
2471
+ };
2472
+ follows: {
2473
+ type: string;
2474
+ items: {
2475
+ type: string;
2476
+ ref: string;
2477
+ };
2478
+ };
2479
+ };
2480
+ };
2481
+ };
2482
+ };
2483
+ follow: {
2484
+ type: string;
2485
+ required: string[];
2486
+ properties: {
2487
+ did: {
2488
+ type: string;
2489
+ };
2490
+ declaration: {
2491
+ type: string;
2492
+ ref: string;
2493
+ };
2494
+ handle: {
2495
+ type: string;
2496
+ };
2497
+ displayName: {
2498
+ type: string;
2499
+ maxLength: number;
2500
+ };
2501
+ createdAt: {
2502
+ type: string;
2503
+ };
2504
+ indexedAt: {
2505
+ type: string;
2506
+ };
2507
+ };
2508
+ };
2509
+ };
2510
+ };
2511
+ AppBskyGraphGetMembers: {
2512
+ lexicon: number;
2513
+ id: string;
2514
+ defs: {
2515
+ main: {
2516
+ type: string;
2517
+ description: string;
2518
+ parameters: {
2519
+ type: string;
2520
+ required: string[];
2521
+ properties: {
2522
+ actor: {
2523
+ type: string;
2524
+ };
2525
+ limit: {
2526
+ type: string;
2527
+ minimum: number;
2528
+ maximum: number;
2529
+ default: number;
2530
+ };
2531
+ before: {
2532
+ type: string;
2533
+ };
2534
+ };
2535
+ };
2536
+ output: {
2537
+ encoding: string;
2538
+ schema: {
2539
+ type: string;
2540
+ required: string[];
2541
+ properties: {
2542
+ subject: {
2543
+ type: string;
2544
+ ref: string;
2545
+ };
2546
+ cursor: {
2547
+ type: string;
2548
+ };
2549
+ members: {
2550
+ type: string;
2551
+ items: {
2552
+ type: string;
2553
+ ref: string;
2554
+ };
2555
+ };
2556
+ };
2557
+ };
2558
+ };
2559
+ };
2560
+ member: {
2561
+ type: string;
2562
+ required: string[];
2563
+ properties: {
2564
+ did: {
2565
+ type: string;
2566
+ };
2567
+ declaration: {
2568
+ type: string;
2569
+ ref: string;
2570
+ };
2571
+ handle: {
2572
+ type: string;
2573
+ };
2574
+ displayName: {
2575
+ type: string;
2576
+ maxLength: number;
2577
+ };
2578
+ createdAt: {
2579
+ type: string;
2580
+ };
2581
+ indexedAt: {
2582
+ type: string;
2583
+ };
2584
+ };
2585
+ };
2586
+ };
2587
+ };
2588
+ AppBskyGraphGetMemberships: {
2589
+ lexicon: number;
2590
+ id: string;
2591
+ defs: {
2592
+ main: {
2593
+ type: string;
2594
+ description: string;
2595
+ parameters: {
2596
+ type: string;
2597
+ required: string[];
2598
+ properties: {
2599
+ actor: {
2600
+ type: string;
2601
+ };
2602
+ limit: {
2603
+ type: string;
2604
+ minimum: number;
2605
+ maximum: number;
2606
+ default: number;
2607
+ };
2608
+ before: {
2609
+ type: string;
2610
+ };
2611
+ };
2612
+ };
2613
+ output: {
2614
+ encoding: string;
2615
+ schema: {
2616
+ type: string;
2617
+ required: string[];
2618
+ properties: {
2619
+ subject: {
2620
+ type: string;
2621
+ ref: string;
2622
+ };
2623
+ cursor: {
2624
+ type: string;
2625
+ };
2626
+ memberships: {
2627
+ type: string;
2628
+ items: {
2629
+ type: string;
2630
+ ref: string;
2631
+ };
2632
+ };
2633
+ };
2634
+ };
2635
+ };
2636
+ };
2637
+ membership: {
2638
+ type: string;
2639
+ required: string[];
2640
+ properties: {
2641
+ did: {
2642
+ type: string;
2643
+ };
2644
+ declaration: {
2645
+ type: string;
2646
+ ref: string;
2647
+ };
2648
+ handle: {
2649
+ type: string;
2650
+ };
2651
+ displayName: {
2652
+ type: string;
2653
+ maxLength: number;
2654
+ };
2655
+ createdAt: {
2656
+ type: string;
2657
+ };
2658
+ indexedAt: {
2659
+ type: string;
2660
+ };
2661
+ };
2662
+ };
2663
+ };
2664
+ };
2665
+ AppBskyNotificationGetCount: {
2666
+ lexicon: number;
2667
+ id: string;
2668
+ defs: {
2669
+ main: {
2670
+ type: string;
2671
+ output: {
2672
+ encoding: string;
2673
+ schema: {
2674
+ type: string;
2675
+ required: string[];
2676
+ properties: {
2677
+ count: {
2678
+ type: string;
2679
+ };
2680
+ };
2681
+ };
2682
+ };
2683
+ };
2684
+ };
2685
+ };
2686
+ AppBskyNotificationList: {
2687
+ lexicon: number;
2688
+ id: string;
2689
+ defs: {
2690
+ main: {
2691
+ type: string;
2692
+ parameters: {
2693
+ type: string;
2694
+ properties: {
2695
+ limit: {
2696
+ type: string;
2697
+ minimum: number;
2698
+ maximum: number;
2699
+ default: number;
2700
+ };
2701
+ before: {
2702
+ type: string;
2703
+ };
2704
+ };
2705
+ };
2706
+ output: {
2707
+ encoding: string;
2708
+ schema: {
2709
+ type: string;
2710
+ required: string[];
2711
+ properties: {
2712
+ cursor: {
2713
+ type: string;
2714
+ };
2715
+ notifications: {
2716
+ type: string;
2717
+ items: {
2718
+ type: string;
2719
+ ref: string;
2720
+ };
2721
+ };
2722
+ };
2723
+ };
2724
+ };
2725
+ };
2726
+ notification: {
2727
+ type: string;
2728
+ required: string[];
2729
+ properties: {
2730
+ uri: {
2731
+ type: string;
2732
+ };
2733
+ cid: {
2734
+ type: string;
2735
+ };
2736
+ author: {
2737
+ type: string;
2738
+ ref: string;
2739
+ };
2740
+ reason: {
2741
+ type: string;
2742
+ description: string;
2743
+ knownValues: string[];
2744
+ };
2745
+ reasonSubject: {
2746
+ type: string;
2747
+ };
2748
+ record: {
2749
+ type: string;
2750
+ };
2751
+ isRead: {
2752
+ type: string;
2753
+ };
2754
+ indexedAt: {
2755
+ type: string;
2756
+ };
2757
+ };
2758
+ };
2759
+ };
2760
+ };
2761
+ AppBskyNotificationUpdateSeen: {
2762
+ lexicon: number;
2763
+ id: string;
2764
+ defs: {
2765
+ main: {
2766
+ type: string;
2767
+ description: string;
2768
+ input: {
2769
+ encoding: string;
2770
+ schema: {
2771
+ type: string;
2772
+ required: string[];
2773
+ properties: {
2774
+ seenAt: {
2775
+ type: string;
2776
+ };
2777
+ };
2778
+ };
2779
+ };
2780
+ };
2781
+ };
2782
+ };
2783
+ AppBskySystemActorScene: {
2784
+ lexicon: number;
2785
+ id: string;
2786
+ defs: {
2787
+ main: {
2788
+ type: string;
2789
+ description: string;
2790
+ };
2791
+ };
2792
+ };
2793
+ AppBskySystemActorUser: {
2794
+ lexicon: number;
2795
+ id: string;
2796
+ defs: {
2797
+ main: {
2798
+ type: string;
2799
+ description: string;
2800
+ };
2801
+ };
2802
+ };
2803
+ AppBskySystemDeclRef: {
2804
+ lexicon: number;
2805
+ id: string;
2806
+ defs: {
2807
+ main: {
2808
+ description: string;
2809
+ type: string;
2810
+ required: string[];
2811
+ properties: {
2812
+ cid: {
2813
+ type: string;
2814
+ };
2815
+ actorType: {
2816
+ type: string;
2817
+ knownValues: string[];
2818
+ };
2819
+ };
2820
+ };
2821
+ };
2822
+ };
2823
+ AppBskySystemDeclaration: {
2824
+ lexicon: number;
2825
+ id: string;
2826
+ defs: {
2827
+ main: {
2828
+ description: string;
2829
+ type: string;
2830
+ key: string;
2831
+ record: {
2832
+ type: string;
2833
+ required: string[];
2834
+ properties: {
2835
+ actorType: {
2836
+ type: string;
2837
+ knownValues: string[];
2838
+ };
2839
+ };
2840
+ };
2841
+ };
2842
+ };
2843
+ };
2844
+ };
2845
+ export declare const schemas: LexiconDoc[];
2846
+ export declare const lexicons: Lexicons;
2847
+ export declare const ids: {
2848
+ ComAtprotoAccountCreate: string;
2849
+ ComAtprotoAccountCreateInviteCode: string;
2850
+ ComAtprotoAccountDelete: string;
2851
+ ComAtprotoAccountGet: string;
2852
+ ComAtprotoAccountRequestPasswordReset: string;
2853
+ ComAtprotoAccountResetPassword: string;
2854
+ ComAtprotoBlobUpload: string;
2855
+ ComAtprotoHandleResolve: string;
2856
+ ComAtprotoRepoBatchWrite: string;
2857
+ ComAtprotoRepoCreateRecord: string;
2858
+ ComAtprotoRepoDeleteRecord: string;
2859
+ ComAtprotoRepoDescribe: string;
2860
+ ComAtprotoRepoGetRecord: string;
2861
+ ComAtprotoRepoListRecords: string;
2862
+ ComAtprotoRepoPutRecord: string;
2863
+ ComAtprotoRepoStrongRef: string;
2864
+ ComAtprotoServerGetAccountsConfig: string;
2865
+ ComAtprotoSessionCreate: string;
2866
+ ComAtprotoSessionDelete: string;
2867
+ ComAtprotoSessionGet: string;
2868
+ ComAtprotoSessionRefresh: string;
2869
+ ComAtprotoSyncGetRepo: string;
2870
+ ComAtprotoSyncGetRoot: string;
2871
+ ComAtprotoSyncUpdateRepo: string;
2872
+ AppBskyActorCreateScene: string;
2873
+ AppBskyActorGetProfile: string;
2874
+ AppBskyActorGetSuggestions: string;
2875
+ AppBskyActorProfile: string;
2876
+ AppBskyActorRef: string;
2877
+ AppBskyActorSearch: string;
2878
+ AppBskyActorSearchTypeahead: string;
2879
+ AppBskyActorUpdateProfile: string;
2880
+ AppBskyEmbedExternal: string;
2881
+ AppBskyEmbedImages: string;
2882
+ AppBskyFeedFeedViewPost: string;
2883
+ AppBskyFeedGetAuthorFeed: string;
2884
+ AppBskyFeedGetPostThread: string;
2885
+ AppBskyFeedGetRepostedBy: string;
2886
+ AppBskyFeedGetTimeline: string;
2887
+ AppBskyFeedGetVotes: string;
2888
+ AppBskyFeedPost: string;
2889
+ AppBskyFeedRepost: string;
2890
+ AppBskyFeedSetVote: string;
2891
+ AppBskyFeedTrend: string;
2892
+ AppBskyFeedVote: string;
2893
+ AppBskyGraphAssertCreator: string;
2894
+ AppBskyGraphAssertMember: string;
2895
+ AppBskyGraphAssertion: string;
2896
+ AppBskyGraphConfirmation: string;
2897
+ AppBskyGraphFollow: string;
2898
+ AppBskyGraphGetAssertions: string;
2899
+ AppBskyGraphGetFollowers: string;
2900
+ AppBskyGraphGetFollows: string;
2901
+ AppBskyGraphGetMembers: string;
2902
+ AppBskyGraphGetMemberships: string;
2903
+ AppBskyNotificationGetCount: string;
2904
+ AppBskyNotificationList: string;
2905
+ AppBskyNotificationUpdateSeen: string;
2906
+ AppBskySystemActorScene: string;
2907
+ AppBskySystemActorUser: string;
2908
+ AppBskySystemDeclRef: string;
2909
+ AppBskySystemDeclaration: string;
2910
+ };