@atproto/api 0.0.7 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (210) hide show
  1. package/README.md +44 -6
  2. package/dist/agent.d.ts +22 -0
  3. package/dist/client/index.d.ts +63 -61
  4. package/dist/client/lexicons.d.ts +168 -22
  5. package/dist/client/types/app/bsky/actor/getSuggestions.d.ts +0 -7
  6. package/dist/client/types/com/atproto/account/delete.d.ts +14 -2
  7. package/dist/{src/client/types/com/atproto/account/delete.d.ts → client/types/com/atproto/account/requestDelete.d.ts} +0 -0
  8. package/dist/client/types/com/atproto/admin/blob.d.ts +37 -0
  9. package/dist/client/types/com/atproto/admin/moderationAction.d.ts +13 -2
  10. package/dist/client/types/com/atproto/admin/record.d.ts +5 -2
  11. package/dist/client/types/com/atproto/admin/repo.d.ts +2 -2
  12. package/dist/client/types/com/atproto/admin/takeModerationAction.d.ts +5 -1
  13. package/dist/index.d.ts +3 -3
  14. package/dist/index.js +667 -368
  15. package/dist/index.js.map +4 -4
  16. package/dist/types.d.ts +33 -0
  17. package/package.json +1 -1
  18. package/src/agent.ts +305 -0
  19. package/src/client/index.ts +75 -63
  20. package/src/client/lexicons.ts +219 -49
  21. package/src/client/types/app/bsky/actor/getSuggestions.ts +0 -18
  22. package/src/client/types/com/atproto/account/delete.ts +21 -1
  23. package/src/client/types/com/atproto/account/requestDelete.ts +27 -0
  24. package/src/client/types/com/atproto/admin/blob.ts +84 -0
  25. package/src/client/types/com/atproto/admin/moderationAction.ts +29 -10
  26. package/src/client/types/com/atproto/admin/record.ts +5 -2
  27. package/src/client/types/com/atproto/admin/repo.ts +2 -2
  28. package/src/client/types/com/atproto/admin/takeModerationAction.ts +8 -0
  29. package/src/index.ts +3 -3
  30. package/src/types.ts +71 -0
  31. package/tests/_util.ts +26 -0
  32. package/tests/agent.test.ts +391 -0
  33. package/tests/errors.test.ts +4 -8
  34. package/tsconfig.build.tsbuildinfo +1 -1
  35. package/dist/src/client/index.d.ts +0 -474
  36. package/dist/src/client/lexicons.d.ts +0 -3036
  37. package/dist/src/client/schemas.d.ts +0 -17
  38. package/dist/src/client/types/app/bsky/actor/createScene.d.ts +0 -32
  39. package/dist/src/client/types/app/bsky/actor/getProfile.d.ts +0 -36
  40. package/dist/src/client/types/app/bsky/actor/getSuggestions.d.ts +0 -36
  41. package/dist/src/client/types/app/bsky/actor/profile.d.ts +0 -15
  42. package/dist/src/client/types/app/bsky/actor/ref.d.ts +0 -14
  43. package/dist/src/client/types/app/bsky/actor/search.d.ts +0 -32
  44. package/dist/src/client/types/app/bsky/actor/searchTypeahead.d.ts +0 -28
  45. package/dist/src/client/types/app/bsky/actor/updateProfile.d.ts +0 -48
  46. package/dist/src/client/types/app/bsky/administration/moderationAction.d.ts +0 -16
  47. package/dist/src/client/types/app/bsky/administration/reverseModerationAction.d.ts +0 -22
  48. package/dist/src/client/types/app/bsky/administration/takeModerationAction.d.ts +0 -27
  49. package/dist/src/client/types/app/bsky/badge.d.ts +0 -22
  50. package/dist/src/client/types/app/bsky/badgeAccept.d.ts +0 -11
  51. package/dist/src/client/types/app/bsky/badgeOffer.d.ts +0 -11
  52. package/dist/src/client/types/app/bsky/declaration.d.ts +0 -6
  53. package/dist/src/client/types/app/bsky/embed/external.d.ts +0 -26
  54. package/dist/src/client/types/app/bsky/embed/images.d.ts +0 -23
  55. package/dist/src/client/types/app/bsky/feed/embed.d.ts +0 -36
  56. package/dist/src/client/types/app/bsky/feed/feedViewPost.d.ts +0 -26
  57. package/dist/src/client/types/app/bsky/feed/getAuthorFeed.d.ts +0 -22
  58. package/dist/src/client/types/app/bsky/feed/getPostThread.d.ts +0 -43
  59. package/dist/src/client/types/app/bsky/feed/getRepostedBy.d.ts +0 -35
  60. package/dist/src/client/types/app/bsky/feed/getTimeline.d.ts +0 -22
  61. package/dist/src/client/types/app/bsky/feed/getVotes.d.ts +0 -33
  62. package/dist/src/client/types/app/bsky/feed/mediaEmbed.d.ts +0 -15
  63. package/dist/src/client/types/app/bsky/feed/post.d.ts +0 -54
  64. package/dist/src/client/types/app/bsky/feed/repost.d.ts +0 -6
  65. package/dist/src/client/types/app/bsky/feed/setVote.d.ts +0 -25
  66. package/dist/src/client/types/app/bsky/feed/trend.d.ts +0 -6
  67. package/dist/src/client/types/app/bsky/feed/vote.d.ts +0 -7
  68. package/dist/src/client/types/app/bsky/follow.d.ts +0 -9
  69. package/dist/src/client/types/app/bsky/getAuthorFeed.d.ts +0 -56
  70. package/dist/src/client/types/app/bsky/getBadgeMembers.d.ts +0 -29
  71. package/dist/src/client/types/app/bsky/getHomeFeed.d.ts +0 -56
  72. package/dist/src/client/types/app/bsky/getLikedBy.d.ts +0 -29
  73. package/dist/src/client/types/app/bsky/getNotificationCount.d.ts +0 -16
  74. package/dist/src/client/types/app/bsky/getNotifications.d.ts +0 -33
  75. package/dist/src/client/types/app/bsky/getPostThread.d.ts +0 -55
  76. package/dist/src/client/types/app/bsky/getProfile.d.ts +0 -26
  77. package/dist/src/client/types/app/bsky/getRepostedBy.d.ts +0 -29
  78. package/dist/src/client/types/app/bsky/getTimeline.d.ts +0 -56
  79. package/dist/src/client/types/app/bsky/getUserFollowers.d.ts +0 -31
  80. package/dist/src/client/types/app/bsky/getUserFollows.d.ts +0 -31
  81. package/dist/src/client/types/app/bsky/getUsersSearch.d.ts +0 -26
  82. package/dist/src/client/types/app/bsky/getUsersTypeahead.d.ts +0 -22
  83. package/dist/src/client/types/app/bsky/graph/assertCreator.d.ts +0 -1
  84. package/dist/src/client/types/app/bsky/graph/assertMember.d.ts +0 -1
  85. package/dist/src/client/types/app/bsky/graph/assertion.d.ts +0 -7
  86. package/dist/src/client/types/app/bsky/graph/confirmation.d.ts +0 -8
  87. package/dist/src/client/types/app/bsky/graph/follow.d.ts +0 -6
  88. package/dist/src/client/types/app/bsky/graph/getAssertions.d.ts +0 -43
  89. package/dist/src/client/types/app/bsky/graph/getFollowers.d.ts +0 -34
  90. package/dist/src/client/types/app/bsky/graph/getFollows.d.ts +0 -33
  91. package/dist/src/client/types/app/bsky/graph/getMembers.d.ts +0 -33
  92. package/dist/src/client/types/app/bsky/graph/getMemberships.d.ts +0 -33
  93. package/dist/src/client/types/app/bsky/invite.d.ts +0 -10
  94. package/dist/src/client/types/app/bsky/inviteAccept.d.ts +0 -14
  95. package/dist/src/client/types/app/bsky/like.d.ts +0 -10
  96. package/dist/src/client/types/app/bsky/mediaEmbed.d.ts +0 -15
  97. package/dist/src/client/types/app/bsky/notification/getCount.d.ts +0 -17
  98. package/dist/src/client/types/app/bsky/notification/list.d.ts +0 -32
  99. package/dist/src/client/types/app/bsky/notification/updateSeen.d.ts +0 -17
  100. package/dist/src/client/types/app/bsky/post.d.ts +0 -23
  101. package/dist/src/client/types/app/bsky/postNotificationsSeen.d.ts +0 -20
  102. package/dist/src/client/types/app/bsky/profile.d.ts +0 -5
  103. package/dist/src/client/types/app/bsky/repost.d.ts +0 -10
  104. package/dist/src/client/types/app/bsky/system/actorScene.d.ts +0 -1
  105. package/dist/src/client/types/app/bsky/system/actorUser.d.ts +0 -1
  106. package/dist/src/client/types/app/bsky/system/declRef.d.ts +0 -5
  107. package/dist/src/client/types/app/bsky/system/declaration.d.ts +0 -4
  108. package/dist/src/client/types/app/bsky/updateProfile.d.ts +0 -23
  109. package/dist/src/client/types/com/atproto/account/create.d.ts +0 -41
  110. package/dist/src/client/types/com/atproto/account/createInviteCode.d.ts +0 -22
  111. package/dist/src/client/types/com/atproto/account/get.d.ts +0 -12
  112. package/dist/src/client/types/com/atproto/account/requestPasswordReset.d.ts +0 -17
  113. package/dist/src/client/types/com/atproto/account/resetPassword.d.ts +0 -24
  114. package/dist/src/client/types/com/atproto/blob/upload.d.ts +0 -19
  115. package/dist/src/client/types/com/atproto/createAccount.d.ts +0 -40
  116. package/dist/src/client/types/com/atproto/createInviteCode.d.ts +0 -20
  117. package/dist/src/client/types/com/atproto/createSession.d.ts +0 -24
  118. package/dist/src/client/types/com/atproto/data/uploadFile.d.ts +0 -19
  119. package/dist/src/client/types/com/atproto/deleteAccount.d.ts +0 -20
  120. package/dist/src/client/types/com/atproto/deleteSession.d.ts +0 -17
  121. package/dist/src/client/types/com/atproto/getAccount.d.ts +0 -16
  122. package/dist/src/client/types/com/atproto/getAccountsConfig.d.ts +0 -17
  123. package/dist/src/client/types/com/atproto/getSession.d.ts +0 -17
  124. package/dist/src/client/types/com/atproto/handle/resolve.d.ts +0 -18
  125. package/dist/src/client/types/com/atproto/refreshSession.d.ts +0 -20
  126. package/dist/src/client/types/com/atproto/repo/batchWrite.d.ts +0 -39
  127. package/dist/src/client/types/com/atproto/repo/createRecord.d.ts +0 -26
  128. package/dist/src/client/types/com/atproto/repo/deleteRecord.d.ts +0 -19
  129. package/dist/src/client/types/com/atproto/repo/describe.d.ts +0 -22
  130. package/dist/src/client/types/com/atproto/repo/getRecord.d.ts +0 -23
  131. package/dist/src/client/types/com/atproto/repo/listRecords.d.ts +0 -30
  132. package/dist/src/client/types/com/atproto/repo/putRecord.d.ts +0 -27
  133. package/dist/src/client/types/com/atproto/repo/strongRef.d.ts +0 -5
  134. package/dist/src/client/types/com/atproto/repoBatchWrite.d.ts +0 -36
  135. package/dist/src/client/types/com/atproto/repoCreateRecord.d.ts +0 -24
  136. package/dist/src/client/types/com/atproto/repoDeleteRecord.d.ts +0 -18
  137. package/dist/src/client/types/com/atproto/repoDescribe.d.ts +0 -21
  138. package/dist/src/client/types/com/atproto/repoGetRecord.d.ts +0 -22
  139. package/dist/src/client/types/com/atproto/repoListRecords.d.ts +0 -27
  140. package/dist/src/client/types/com/atproto/repoPutRecord.d.ts +0 -25
  141. package/dist/src/client/types/com/atproto/requestAccountPasswordReset.d.ts +0 -19
  142. package/dist/src/client/types/com/atproto/resetAccountPassword.d.ts +0 -26
  143. package/dist/src/client/types/com/atproto/resolveHandle.d.ts +0 -17
  144. package/dist/src/client/types/com/atproto/resolveName.d.ts +0 -17
  145. package/dist/src/client/types/com/atproto/server/getAccountsConfig.d.ts +0 -24
  146. package/dist/src/client/types/com/atproto/session/create.d.ts +0 -29
  147. package/dist/src/client/types/com/atproto/session/delete.d.ts +0 -13
  148. package/dist/src/client/types/com/atproto/session/get.d.ts +0 -18
  149. package/dist/src/client/types/com/atproto/session/refresh.d.ts +0 -24
  150. package/dist/src/client/types/com/atproto/sync/getRepo.d.ts +0 -15
  151. package/dist/src/client/types/com/atproto/sync/getRoot.d.ts +0 -18
  152. package/dist/src/client/types/com/atproto/sync/updateRepo.d.ts +0 -15
  153. package/dist/src/client/types/com/atproto/syncGetRepo.d.ts +0 -15
  154. package/dist/src/client/types/com/atproto/syncGetRoot.d.ts +0 -17
  155. package/dist/src/client/types/com/atproto/syncUpdateRepo.d.ts +0 -15
  156. package/dist/src/index.d.ts +0 -4
  157. package/dist/src/schemas.d.ts +0 -19
  158. package/dist/src/session.d.ts +0 -42
  159. package/dist/src/types/app/bsky/badge.d.ts +0 -22
  160. package/dist/src/types/app/bsky/badgeAccept.d.ts +0 -11
  161. package/dist/src/types/app/bsky/badgeOffer.d.ts +0 -11
  162. package/dist/src/types/app/bsky/declaration.d.ts +0 -6
  163. package/dist/src/types/app/bsky/follow.d.ts +0 -9
  164. package/dist/src/types/app/bsky/getAuthorFeed.d.ts +0 -56
  165. package/dist/src/types/app/bsky/getBadgeMembers.d.ts +0 -29
  166. package/dist/src/types/app/bsky/getHomeFeed.d.ts +0 -56
  167. package/dist/src/types/app/bsky/getLikedBy.d.ts +0 -29
  168. package/dist/src/types/app/bsky/getNotificationCount.d.ts +0 -16
  169. package/dist/src/types/app/bsky/getNotifications.d.ts +0 -33
  170. package/dist/src/types/app/bsky/getPostThread.d.ts +0 -55
  171. package/dist/src/types/app/bsky/getProfile.d.ts +0 -42
  172. package/dist/src/types/app/bsky/getRepostedBy.d.ts +0 -29
  173. package/dist/src/types/app/bsky/getUserFollowers.d.ts +0 -31
  174. package/dist/src/types/app/bsky/getUserFollows.d.ts +0 -31
  175. package/dist/src/types/app/bsky/getUsersSearch.d.ts +0 -26
  176. package/dist/src/types/app/bsky/getUsersTypeahead.d.ts +0 -22
  177. package/dist/src/types/app/bsky/invite.d.ts +0 -10
  178. package/dist/src/types/app/bsky/inviteAccept.d.ts +0 -14
  179. package/dist/src/types/app/bsky/like.d.ts +0 -10
  180. package/dist/src/types/app/bsky/mediaEmbed.d.ts +0 -15
  181. package/dist/src/types/app/bsky/post.d.ts +0 -23
  182. package/dist/src/types/app/bsky/postNotificationsSeen.d.ts +0 -19
  183. package/dist/src/types/app/bsky/profile.d.ts +0 -11
  184. package/dist/src/types/app/bsky/repost.d.ts +0 -10
  185. package/dist/src/types/app/bsky/updateProfile.d.ts +0 -27
  186. package/dist/src/types/com/atproto/createAccount.d.ts +0 -39
  187. package/dist/src/types/com/atproto/createInviteCode.d.ts +0 -19
  188. package/dist/src/types/com/atproto/createSession.d.ts +0 -23
  189. package/dist/src/types/com/atproto/deleteAccount.d.ts +0 -19
  190. package/dist/src/types/com/atproto/deleteSession.d.ts +0 -16
  191. package/dist/src/types/com/atproto/getAccount.d.ts +0 -19
  192. package/dist/src/types/com/atproto/getAccountsConfig.d.ts +0 -17
  193. package/dist/src/types/com/atproto/getSession.d.ts +0 -17
  194. package/dist/src/types/com/atproto/refreshSession.d.ts +0 -19
  195. package/dist/src/types/com/atproto/repoBatchWrite.d.ts +0 -35
  196. package/dist/src/types/com/atproto/repoCreateRecord.d.ts +0 -23
  197. package/dist/src/types/com/atproto/repoDeleteRecord.d.ts +0 -15
  198. package/dist/src/types/com/atproto/repoDescribe.d.ts +0 -21
  199. package/dist/src/types/com/atproto/repoGetRecord.d.ts +0 -22
  200. package/dist/src/types/com/atproto/repoListRecords.d.ts +0 -27
  201. package/dist/src/types/com/atproto/repoPutRecord.d.ts +0 -24
  202. package/dist/src/types/com/atproto/requestAccountPasswordReset.d.ts +0 -18
  203. package/dist/src/types/com/atproto/resetAccountPassword.d.ts +0 -25
  204. package/dist/src/types/com/atproto/resolveName.d.ts +0 -17
  205. package/dist/src/types/com/atproto/syncGetRepo.d.ts +0 -15
  206. package/dist/src/types/com/atproto/syncGetRoot.d.ts +0 -17
  207. package/dist/src/types/com/atproto/syncUpdateRepo.d.ts +0 -14
  208. package/dist/tsconfig.build.tsbuildinfo +0 -1
  209. package/src/session.ts +0 -194
  210. package/tests/session.test.ts +0 -239
@@ -1,3036 +0,0 @@
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
- errors: {
728
- name: string;
729
- }[];
730
- };
731
- };
732
- };
733
- ComAtprotoSessionDelete: {
734
- lexicon: number;
735
- id: string;
736
- defs: {
737
- main: {
738
- type: string;
739
- description: string;
740
- };
741
- };
742
- };
743
- ComAtprotoSessionGet: {
744
- lexicon: number;
745
- id: string;
746
- defs: {
747
- main: {
748
- type: string;
749
- description: string;
750
- output: {
751
- encoding: string;
752
- schema: {
753
- type: string;
754
- required: string[];
755
- properties: {
756
- handle: {
757
- type: string;
758
- };
759
- did: {
760
- type: string;
761
- };
762
- };
763
- };
764
- };
765
- };
766
- };
767
- };
768
- ComAtprotoSessionRefresh: {
769
- lexicon: number;
770
- id: string;
771
- defs: {
772
- main: {
773
- type: string;
774
- description: string;
775
- output: {
776
- encoding: string;
777
- schema: {
778
- type: string;
779
- required: string[];
780
- properties: {
781
- accessJwt: {
782
- type: string;
783
- };
784
- refreshJwt: {
785
- type: string;
786
- };
787
- handle: {
788
- type: string;
789
- };
790
- did: {
791
- type: string;
792
- };
793
- };
794
- };
795
- };
796
- errors: {
797
- name: string;
798
- }[];
799
- };
800
- };
801
- };
802
- ComAtprotoSyncGetRepo: {
803
- lexicon: number;
804
- id: string;
805
- defs: {
806
- main: {
807
- type: string;
808
- description: string;
809
- parameters: {
810
- type: string;
811
- required: string[];
812
- properties: {
813
- did: {
814
- type: string;
815
- description: string;
816
- };
817
- from: {
818
- type: string;
819
- description: string;
820
- };
821
- };
822
- };
823
- output: {
824
- encoding: string;
825
- };
826
- };
827
- };
828
- };
829
- ComAtprotoSyncGetRoot: {
830
- lexicon: number;
831
- id: string;
832
- defs: {
833
- main: {
834
- type: string;
835
- description: string;
836
- parameters: {
837
- type: string;
838
- required: string[];
839
- properties: {
840
- did: {
841
- type: string;
842
- description: string;
843
- };
844
- };
845
- };
846
- output: {
847
- encoding: string;
848
- schema: {
849
- type: string;
850
- required: string[];
851
- properties: {
852
- root: {
853
- type: string;
854
- };
855
- };
856
- };
857
- };
858
- };
859
- };
860
- };
861
- ComAtprotoSyncUpdateRepo: {
862
- lexicon: number;
863
- id: string;
864
- defs: {
865
- main: {
866
- type: string;
867
- description: string;
868
- parameters: {
869
- type: string;
870
- required: string[];
871
- properties: {
872
- did: {
873
- type: string;
874
- description: string;
875
- };
876
- };
877
- };
878
- input: {
879
- encoding: string;
880
- };
881
- };
882
- };
883
- };
884
- AppBskyActorCreateScene: {
885
- lexicon: number;
886
- id: string;
887
- defs: {
888
- main: {
889
- type: string;
890
- description: string;
891
- input: {
892
- encoding: string;
893
- schema: {
894
- type: string;
895
- required: string[];
896
- properties: {
897
- handle: {
898
- type: string;
899
- };
900
- recoveryKey: {
901
- type: string;
902
- };
903
- };
904
- };
905
- };
906
- output: {
907
- encoding: string;
908
- schema: {
909
- type: string;
910
- required: string[];
911
- properties: {
912
- handle: {
913
- type: string;
914
- };
915
- did: {
916
- type: string;
917
- };
918
- declaration: {
919
- type: string;
920
- ref: string;
921
- };
922
- };
923
- };
924
- };
925
- errors: {
926
- name: string;
927
- }[];
928
- };
929
- };
930
- };
931
- AppBskyActorGetProfile: {
932
- lexicon: number;
933
- id: string;
934
- defs: {
935
- main: {
936
- type: string;
937
- parameters: {
938
- type: string;
939
- required: string[];
940
- properties: {
941
- actor: {
942
- type: string;
943
- };
944
- };
945
- };
946
- output: {
947
- encoding: string;
948
- schema: {
949
- type: string;
950
- required: string[];
951
- properties: {
952
- did: {
953
- type: string;
954
- };
955
- declaration: {
956
- type: string;
957
- ref: string;
958
- };
959
- handle: {
960
- type: string;
961
- };
962
- creator: {
963
- type: string;
964
- };
965
- displayName: {
966
- type: string;
967
- maxLength: number;
968
- };
969
- description: {
970
- type: string;
971
- maxLength: number;
972
- };
973
- avatar: {
974
- type: string;
975
- };
976
- banner: {
977
- type: string;
978
- };
979
- followersCount: {
980
- type: string;
981
- };
982
- followsCount: {
983
- type: string;
984
- };
985
- membersCount: {
986
- type: string;
987
- };
988
- postsCount: {
989
- type: string;
990
- };
991
- myState: {
992
- type: string;
993
- ref: string;
994
- };
995
- };
996
- };
997
- };
998
- };
999
- myState: {
1000
- type: string;
1001
- properties: {
1002
- follow: {
1003
- type: string;
1004
- };
1005
- member: {
1006
- type: string;
1007
- };
1008
- };
1009
- };
1010
- };
1011
- };
1012
- AppBskyActorGetSuggestions: {
1013
- lexicon: number;
1014
- id: string;
1015
- defs: {
1016
- main: {
1017
- type: string;
1018
- description: string;
1019
- parameters: {
1020
- type: string;
1021
- properties: {
1022
- limit: {
1023
- type: string;
1024
- minimum: number;
1025
- maximum: number;
1026
- default: number;
1027
- };
1028
- cursor: {
1029
- type: string;
1030
- };
1031
- };
1032
- };
1033
- output: {
1034
- encoding: string;
1035
- schema: {
1036
- type: string;
1037
- required: string[];
1038
- properties: {
1039
- cursor: {
1040
- type: string;
1041
- };
1042
- actors: {
1043
- type: string;
1044
- items: {
1045
- type: string;
1046
- ref: string;
1047
- };
1048
- };
1049
- };
1050
- };
1051
- };
1052
- };
1053
- actor: {
1054
- type: string;
1055
- required: string[];
1056
- properties: {
1057
- did: {
1058
- type: string;
1059
- };
1060
- declaration: {
1061
- type: string;
1062
- ref: string;
1063
- };
1064
- handle: {
1065
- type: string;
1066
- };
1067
- displayName: {
1068
- type: string;
1069
- maxLength: number;
1070
- };
1071
- description: {
1072
- type: string;
1073
- };
1074
- avatar: {
1075
- type: string;
1076
- };
1077
- indexedAt: {
1078
- type: string;
1079
- };
1080
- myState: {
1081
- type: string;
1082
- ref: string;
1083
- };
1084
- };
1085
- };
1086
- myState: {
1087
- type: string;
1088
- properties: {
1089
- follow: {
1090
- type: string;
1091
- };
1092
- };
1093
- };
1094
- };
1095
- };
1096
- AppBskyActorProfile: {
1097
- lexicon: number;
1098
- id: string;
1099
- defs: {
1100
- main: {
1101
- type: string;
1102
- key: string;
1103
- record: {
1104
- type: string;
1105
- required: string[];
1106
- properties: {
1107
- displayName: {
1108
- type: string;
1109
- maxLength: number;
1110
- };
1111
- description: {
1112
- type: string;
1113
- maxLength: number;
1114
- };
1115
- avatar: {
1116
- type: string;
1117
- accept: string[];
1118
- maxWidth: number;
1119
- maxHeight: number;
1120
- maxSize: number;
1121
- };
1122
- banner: {
1123
- type: string;
1124
- accept: string[];
1125
- maxWidth: number;
1126
- maxHeight: number;
1127
- maxSize: number;
1128
- };
1129
- };
1130
- };
1131
- };
1132
- };
1133
- };
1134
- AppBskyActorRef: {
1135
- lexicon: number;
1136
- id: string;
1137
- description: string;
1138
- defs: {
1139
- main: {
1140
- type: string;
1141
- required: string[];
1142
- properties: {
1143
- did: {
1144
- type: string;
1145
- };
1146
- declarationCid: {
1147
- type: string;
1148
- };
1149
- };
1150
- };
1151
- withInfo: {
1152
- type: string;
1153
- required: string[];
1154
- properties: {
1155
- did: {
1156
- type: string;
1157
- };
1158
- declaration: {
1159
- type: string;
1160
- ref: string;
1161
- };
1162
- handle: {
1163
- type: string;
1164
- };
1165
- displayName: {
1166
- type: string;
1167
- maxLength: number;
1168
- };
1169
- avatar: {
1170
- type: string;
1171
- };
1172
- };
1173
- };
1174
- };
1175
- };
1176
- AppBskyActorSearch: {
1177
- lexicon: number;
1178
- id: string;
1179
- defs: {
1180
- main: {
1181
- type: string;
1182
- description: string;
1183
- parameters: {
1184
- type: string;
1185
- required: string[];
1186
- properties: {
1187
- term: {
1188
- type: string;
1189
- };
1190
- limit: {
1191
- type: string;
1192
- minimum: number;
1193
- maximum: number;
1194
- default: number;
1195
- };
1196
- before: {
1197
- type: string;
1198
- };
1199
- };
1200
- };
1201
- output: {
1202
- encoding: string;
1203
- schema: {
1204
- type: string;
1205
- required: string[];
1206
- properties: {
1207
- cursor: {
1208
- type: string;
1209
- };
1210
- users: {
1211
- type: string;
1212
- items: {
1213
- type: string;
1214
- ref: string;
1215
- };
1216
- };
1217
- };
1218
- };
1219
- };
1220
- };
1221
- user: {
1222
- type: string;
1223
- required: string[];
1224
- properties: {
1225
- did: {
1226
- type: string;
1227
- };
1228
- declaration: {
1229
- type: string;
1230
- ref: string;
1231
- };
1232
- handle: {
1233
- type: string;
1234
- };
1235
- displayName: {
1236
- type: string;
1237
- maxLength: number;
1238
- };
1239
- avatar: {
1240
- type: string;
1241
- };
1242
- description: {
1243
- type: string;
1244
- };
1245
- indexedAt: {
1246
- type: string;
1247
- };
1248
- };
1249
- };
1250
- };
1251
- };
1252
- AppBskyActorSearchTypeahead: {
1253
- lexicon: number;
1254
- id: string;
1255
- defs: {
1256
- main: {
1257
- type: string;
1258
- description: string;
1259
- parameters: {
1260
- type: string;
1261
- required: string[];
1262
- properties: {
1263
- term: {
1264
- type: string;
1265
- };
1266
- limit: {
1267
- type: string;
1268
- minimum: number;
1269
- maximum: number;
1270
- default: number;
1271
- };
1272
- };
1273
- };
1274
- output: {
1275
- encoding: string;
1276
- schema: {
1277
- type: string;
1278
- required: string[];
1279
- properties: {
1280
- users: {
1281
- type: string;
1282
- items: {
1283
- type: string;
1284
- ref: string;
1285
- };
1286
- };
1287
- };
1288
- };
1289
- };
1290
- };
1291
- user: {
1292
- type: string;
1293
- required: string[];
1294
- properties: {
1295
- did: {
1296
- type: string;
1297
- };
1298
- declaration: {
1299
- type: string;
1300
- ref: string;
1301
- };
1302
- handle: {
1303
- type: string;
1304
- };
1305
- displayName: {
1306
- type: string;
1307
- maxLength: number;
1308
- };
1309
- avatar: {
1310
- type: string;
1311
- };
1312
- };
1313
- };
1314
- };
1315
- };
1316
- AppBskyActorUpdateProfile: {
1317
- lexicon: number;
1318
- id: string;
1319
- defs: {
1320
- main: {
1321
- type: string;
1322
- description: string;
1323
- input: {
1324
- encoding: string;
1325
- schema: {
1326
- type: string;
1327
- properties: {
1328
- did: {
1329
- type: string;
1330
- };
1331
- displayName: {
1332
- type: string;
1333
- maxLength: number;
1334
- };
1335
- description: {
1336
- type: string;
1337
- maxLength: number;
1338
- };
1339
- avatar: {
1340
- type: string;
1341
- accept: string[];
1342
- maxWidth: number;
1343
- maxHeight: number;
1344
- maxSize: number;
1345
- };
1346
- banner: {
1347
- type: string;
1348
- accept: string[];
1349
- maxWidth: number;
1350
- maxHeight: number;
1351
- maxSize: number;
1352
- };
1353
- };
1354
- };
1355
- };
1356
- output: {
1357
- encoding: string;
1358
- schema: {
1359
- type: string;
1360
- required: string[];
1361
- properties: {
1362
- uri: {
1363
- type: string;
1364
- };
1365
- cid: {
1366
- type: string;
1367
- };
1368
- record: {
1369
- type: string;
1370
- };
1371
- };
1372
- };
1373
- };
1374
- errors: {
1375
- name: string;
1376
- }[];
1377
- };
1378
- };
1379
- };
1380
- AppBskyAdministrationModerationAction: {
1381
- lexicon: number;
1382
- id: string;
1383
- defs: {
1384
- view: {
1385
- type: string;
1386
- required: string[];
1387
- properties: {
1388
- id: {
1389
- type: string;
1390
- };
1391
- action: {
1392
- type: string;
1393
- knownValues: string[];
1394
- };
1395
- subject: {
1396
- type: string;
1397
- refs: string[];
1398
- };
1399
- rationale: {
1400
- type: string;
1401
- };
1402
- createdBy: {
1403
- type: string;
1404
- };
1405
- createdAt: {
1406
- type: string;
1407
- };
1408
- reversedBy: {
1409
- type: string;
1410
- };
1411
- reversedAt: {
1412
- type: string;
1413
- };
1414
- reversedRationale: {
1415
- type: string;
1416
- };
1417
- };
1418
- };
1419
- };
1420
- };
1421
- AppBskyAdministrationReverseModerationAction: {
1422
- lexicon: number;
1423
- id: string;
1424
- defs: {
1425
- main: {
1426
- type: string;
1427
- description: string;
1428
- input: {
1429
- encoding: string;
1430
- schema: {
1431
- type: string;
1432
- required: string[];
1433
- properties: {
1434
- id: {
1435
- type: string;
1436
- };
1437
- reversedBy: {
1438
- type: string;
1439
- };
1440
- reversedRationale: {
1441
- type: string;
1442
- };
1443
- };
1444
- };
1445
- };
1446
- output: {
1447
- encoding: string;
1448
- schema: {
1449
- type: string;
1450
- ref: string;
1451
- };
1452
- };
1453
- };
1454
- };
1455
- };
1456
- AppBskyAdministrationTakeModerationAction: {
1457
- lexicon: number;
1458
- id: string;
1459
- defs: {
1460
- main: {
1461
- type: string;
1462
- description: string;
1463
- input: {
1464
- encoding: string;
1465
- schema: {
1466
- type: string;
1467
- required: string[];
1468
- properties: {
1469
- action: {
1470
- type: string;
1471
- knownValues: string[];
1472
- };
1473
- subject: {
1474
- type: string;
1475
- refs: string[];
1476
- };
1477
- rationale: {
1478
- type: string;
1479
- };
1480
- createdBy: {
1481
- type: string;
1482
- };
1483
- };
1484
- };
1485
- };
1486
- output: {
1487
- encoding: string;
1488
- schema: {
1489
- type: string;
1490
- ref: string;
1491
- };
1492
- };
1493
- };
1494
- };
1495
- };
1496
- AppBskyEmbedExternal: {
1497
- lexicon: number;
1498
- id: string;
1499
- description: string;
1500
- defs: {
1501
- main: {
1502
- type: string;
1503
- required: string[];
1504
- properties: {
1505
- external: {
1506
- type: string;
1507
- ref: string;
1508
- };
1509
- };
1510
- };
1511
- external: {
1512
- type: string;
1513
- required: string[];
1514
- properties: {
1515
- uri: {
1516
- type: string;
1517
- };
1518
- title: {
1519
- type: string;
1520
- };
1521
- description: {
1522
- type: string;
1523
- };
1524
- thumb: {
1525
- type: string;
1526
- accept: string[];
1527
- maxWidth: number;
1528
- maxHeight: number;
1529
- maxSize: number;
1530
- };
1531
- };
1532
- };
1533
- presented: {
1534
- type: string;
1535
- required: string[];
1536
- properties: {
1537
- external: {
1538
- type: string;
1539
- ref: string;
1540
- };
1541
- };
1542
- };
1543
- presentedExternal: {
1544
- type: string;
1545
- required: string[];
1546
- properties: {
1547
- uri: {
1548
- type: string;
1549
- };
1550
- title: {
1551
- type: string;
1552
- };
1553
- description: {
1554
- type: string;
1555
- };
1556
- thumb: {
1557
- type: string;
1558
- };
1559
- };
1560
- };
1561
- };
1562
- };
1563
- AppBskyEmbedImages: {
1564
- lexicon: number;
1565
- id: string;
1566
- description: string;
1567
- defs: {
1568
- main: {
1569
- type: string;
1570
- required: string[];
1571
- properties: {
1572
- images: {
1573
- type: string;
1574
- items: {
1575
- type: string;
1576
- ref: string;
1577
- };
1578
- maxLength: number;
1579
- };
1580
- };
1581
- };
1582
- image: {
1583
- type: string;
1584
- required: string[];
1585
- properties: {
1586
- image: {
1587
- type: string;
1588
- accept: string[];
1589
- maxWidth: number;
1590
- maxHeight: number;
1591
- maxSize: number;
1592
- };
1593
- alt: {
1594
- type: string;
1595
- };
1596
- };
1597
- };
1598
- presented: {
1599
- type: string;
1600
- required: string[];
1601
- properties: {
1602
- images: {
1603
- type: string;
1604
- items: {
1605
- type: string;
1606
- ref: string;
1607
- };
1608
- maxLength: number;
1609
- };
1610
- };
1611
- };
1612
- presentedImage: {
1613
- type: string;
1614
- required: string[];
1615
- properties: {
1616
- thumb: {
1617
- type: string;
1618
- };
1619
- fullsize: {
1620
- type: string;
1621
- };
1622
- alt: {
1623
- type: string;
1624
- };
1625
- };
1626
- };
1627
- };
1628
- };
1629
- AppBskyFeedFeedViewPost: {
1630
- lexicon: number;
1631
- id: string;
1632
- defs: {
1633
- main: {
1634
- type: string;
1635
- required: string[];
1636
- properties: {
1637
- post: {
1638
- type: string;
1639
- ref: string;
1640
- };
1641
- reply: {
1642
- type: string;
1643
- ref: string;
1644
- };
1645
- reason: {
1646
- type: string;
1647
- refs: string[];
1648
- };
1649
- };
1650
- };
1651
- replyRef: {
1652
- type: string;
1653
- required: string[];
1654
- properties: {
1655
- root: {
1656
- type: string;
1657
- ref: string;
1658
- };
1659
- parent: {
1660
- type: string;
1661
- ref: string;
1662
- };
1663
- };
1664
- };
1665
- reasonTrend: {
1666
- type: string;
1667
- required: string[];
1668
- properties: {
1669
- by: {
1670
- type: string;
1671
- ref: string;
1672
- };
1673
- indexedAt: {
1674
- type: string;
1675
- };
1676
- };
1677
- };
1678
- reasonRepost: {
1679
- type: string;
1680
- required: string[];
1681
- properties: {
1682
- by: {
1683
- type: string;
1684
- ref: string;
1685
- };
1686
- indexedAt: {
1687
- type: string;
1688
- };
1689
- };
1690
- };
1691
- };
1692
- };
1693
- AppBskyFeedGetAuthorFeed: {
1694
- lexicon: number;
1695
- id: string;
1696
- defs: {
1697
- main: {
1698
- type: string;
1699
- description: string;
1700
- parameters: {
1701
- type: string;
1702
- required: string[];
1703
- properties: {
1704
- author: {
1705
- type: string;
1706
- };
1707
- limit: {
1708
- type: string;
1709
- minimum: number;
1710
- maximum: number;
1711
- default: number;
1712
- };
1713
- before: {
1714
- type: string;
1715
- };
1716
- };
1717
- };
1718
- output: {
1719
- encoding: string;
1720
- schema: {
1721
- type: string;
1722
- required: string[];
1723
- properties: {
1724
- cursor: {
1725
- type: string;
1726
- };
1727
- feed: {
1728
- type: string;
1729
- items: {
1730
- type: string;
1731
- ref: string;
1732
- };
1733
- };
1734
- };
1735
- };
1736
- };
1737
- };
1738
- };
1739
- };
1740
- AppBskyFeedGetPostThread: {
1741
- lexicon: number;
1742
- id: string;
1743
- defs: {
1744
- main: {
1745
- type: string;
1746
- parameters: {
1747
- type: string;
1748
- required: string[];
1749
- properties: {
1750
- uri: {
1751
- type: string;
1752
- };
1753
- depth: {
1754
- type: string;
1755
- };
1756
- };
1757
- };
1758
- output: {
1759
- encoding: string;
1760
- schema: {
1761
- type: string;
1762
- required: string[];
1763
- properties: {
1764
- thread: {
1765
- type: string;
1766
- refs: string[];
1767
- };
1768
- };
1769
- };
1770
- };
1771
- errors: {
1772
- name: string;
1773
- }[];
1774
- };
1775
- threadViewPost: {
1776
- type: string;
1777
- required: string[];
1778
- properties: {
1779
- post: {
1780
- type: string;
1781
- ref: string;
1782
- };
1783
- parent: {
1784
- type: string;
1785
- refs: string[];
1786
- };
1787
- replies: {
1788
- type: string;
1789
- items: {
1790
- type: string;
1791
- refs: string[];
1792
- };
1793
- };
1794
- };
1795
- };
1796
- notFoundPost: {
1797
- type: string;
1798
- required: string[];
1799
- properties: {
1800
- uri: {
1801
- type: string;
1802
- };
1803
- notFound: {
1804
- type: string;
1805
- const: boolean;
1806
- };
1807
- };
1808
- };
1809
- };
1810
- };
1811
- AppBskyFeedGetRepostedBy: {
1812
- lexicon: number;
1813
- id: string;
1814
- defs: {
1815
- main: {
1816
- type: string;
1817
- parameters: {
1818
- type: string;
1819
- required: string[];
1820
- properties: {
1821
- uri: {
1822
- type: string;
1823
- };
1824
- cid: {
1825
- type: string;
1826
- };
1827
- limit: {
1828
- type: string;
1829
- minimum: number;
1830
- maximum: number;
1831
- default: number;
1832
- };
1833
- before: {
1834
- type: string;
1835
- };
1836
- };
1837
- };
1838
- output: {
1839
- encoding: string;
1840
- schema: {
1841
- type: string;
1842
- required: string[];
1843
- properties: {
1844
- uri: {
1845
- type: string;
1846
- };
1847
- cid: {
1848
- type: string;
1849
- };
1850
- cursor: {
1851
- type: string;
1852
- };
1853
- repostedBy: {
1854
- type: string;
1855
- items: {
1856
- type: string;
1857
- ref: string;
1858
- };
1859
- };
1860
- };
1861
- };
1862
- };
1863
- };
1864
- repostedBy: {
1865
- type: string;
1866
- required: string[];
1867
- properties: {
1868
- did: {
1869
- type: string;
1870
- };
1871
- declaration: {
1872
- type: string;
1873
- ref: string;
1874
- };
1875
- handle: {
1876
- type: string;
1877
- };
1878
- displayName: {
1879
- type: string;
1880
- maxLength: number;
1881
- };
1882
- avatar: {
1883
- type: string;
1884
- };
1885
- createdAt: {
1886
- type: string;
1887
- };
1888
- indexedAt: {
1889
- type: string;
1890
- };
1891
- };
1892
- };
1893
- };
1894
- };
1895
- AppBskyFeedGetTimeline: {
1896
- lexicon: number;
1897
- id: string;
1898
- defs: {
1899
- main: {
1900
- type: string;
1901
- description: string;
1902
- parameters: {
1903
- type: string;
1904
- properties: {
1905
- algorithm: {
1906
- type: string;
1907
- };
1908
- limit: {
1909
- type: string;
1910
- minimum: number;
1911
- maximum: number;
1912
- default: number;
1913
- };
1914
- before: {
1915
- type: string;
1916
- };
1917
- };
1918
- };
1919
- output: {
1920
- encoding: string;
1921
- schema: {
1922
- type: string;
1923
- required: string[];
1924
- properties: {
1925
- cursor: {
1926
- type: string;
1927
- };
1928
- feed: {
1929
- type: string;
1930
- items: {
1931
- type: string;
1932
- ref: string;
1933
- };
1934
- };
1935
- };
1936
- };
1937
- };
1938
- };
1939
- };
1940
- };
1941
- AppBskyFeedGetVotes: {
1942
- lexicon: number;
1943
- id: string;
1944
- defs: {
1945
- main: {
1946
- type: string;
1947
- parameters: {
1948
- type: string;
1949
- required: string[];
1950
- properties: {
1951
- uri: {
1952
- type: string;
1953
- };
1954
- cid: {
1955
- type: string;
1956
- };
1957
- direction: {
1958
- type: string;
1959
- enum: string[];
1960
- };
1961
- limit: {
1962
- type: string;
1963
- minimum: number;
1964
- maximum: number;
1965
- default: number;
1966
- };
1967
- before: {
1968
- type: string;
1969
- };
1970
- };
1971
- };
1972
- output: {
1973
- encoding: string;
1974
- schema: {
1975
- type: string;
1976
- required: string[];
1977
- properties: {
1978
- uri: {
1979
- type: string;
1980
- };
1981
- cid: {
1982
- type: string;
1983
- };
1984
- cursor: {
1985
- type: string;
1986
- };
1987
- votes: {
1988
- type: string;
1989
- items: {
1990
- type: string;
1991
- ref: string;
1992
- };
1993
- };
1994
- };
1995
- };
1996
- };
1997
- };
1998
- vote: {
1999
- type: string;
2000
- required: string[];
2001
- properties: {
2002
- direction: {
2003
- type: string;
2004
- enum: string[];
2005
- };
2006
- indexedAt: {
2007
- type: string;
2008
- };
2009
- createdAt: {
2010
- type: string;
2011
- };
2012
- actor: {
2013
- type: string;
2014
- ref: string;
2015
- };
2016
- };
2017
- };
2018
- };
2019
- };
2020
- AppBskyFeedPost: {
2021
- lexicon: number;
2022
- id: string;
2023
- defs: {
2024
- main: {
2025
- type: string;
2026
- key: string;
2027
- record: {
2028
- type: string;
2029
- required: string[];
2030
- properties: {
2031
- text: {
2032
- type: string;
2033
- maxLength: number;
2034
- };
2035
- entities: {
2036
- type: string;
2037
- items: {
2038
- type: string;
2039
- ref: string;
2040
- };
2041
- };
2042
- reply: {
2043
- type: string;
2044
- ref: string;
2045
- };
2046
- embed: {
2047
- type: string;
2048
- refs: string[];
2049
- };
2050
- createdAt: {
2051
- type: string;
2052
- };
2053
- };
2054
- };
2055
- };
2056
- replyRef: {
2057
- type: string;
2058
- required: string[];
2059
- properties: {
2060
- root: {
2061
- type: string;
2062
- ref: string;
2063
- };
2064
- parent: {
2065
- type: string;
2066
- ref: string;
2067
- };
2068
- };
2069
- };
2070
- entity: {
2071
- type: string;
2072
- required: string[];
2073
- properties: {
2074
- index: {
2075
- type: string;
2076
- ref: string;
2077
- };
2078
- type: {
2079
- type: string;
2080
- description: string;
2081
- };
2082
- value: {
2083
- type: string;
2084
- };
2085
- };
2086
- };
2087
- textSlice: {
2088
- type: string;
2089
- description: string;
2090
- required: string[];
2091
- properties: {
2092
- start: {
2093
- type: string;
2094
- minimum: number;
2095
- };
2096
- end: {
2097
- type: string;
2098
- minimum: number;
2099
- };
2100
- };
2101
- };
2102
- view: {
2103
- type: string;
2104
- required: string[];
2105
- properties: {
2106
- uri: {
2107
- type: string;
2108
- };
2109
- cid: {
2110
- type: string;
2111
- };
2112
- author: {
2113
- type: string;
2114
- ref: string;
2115
- };
2116
- record: {
2117
- type: string;
2118
- };
2119
- embed: {
2120
- type: string;
2121
- refs: string[];
2122
- };
2123
- replyCount: {
2124
- type: string;
2125
- };
2126
- repostCount: {
2127
- type: string;
2128
- };
2129
- upvoteCount: {
2130
- type: string;
2131
- };
2132
- downvoteCount: {
2133
- type: string;
2134
- };
2135
- indexedAt: {
2136
- type: string;
2137
- };
2138
- viewer: {
2139
- type: string;
2140
- ref: string;
2141
- };
2142
- };
2143
- };
2144
- viewerState: {
2145
- type: string;
2146
- properties: {
2147
- repost: {
2148
- type: string;
2149
- };
2150
- upvote: {
2151
- type: string;
2152
- };
2153
- downvote: {
2154
- type: string;
2155
- };
2156
- };
2157
- };
2158
- };
2159
- };
2160
- AppBskyFeedRepost: {
2161
- lexicon: number;
2162
- id: string;
2163
- defs: {
2164
- main: {
2165
- type: string;
2166
- key: string;
2167
- record: {
2168
- type: string;
2169
- required: string[];
2170
- properties: {
2171
- subject: {
2172
- type: string;
2173
- ref: string;
2174
- };
2175
- createdAt: {
2176
- type: string;
2177
- };
2178
- };
2179
- };
2180
- };
2181
- };
2182
- };
2183
- AppBskyFeedSetVote: {
2184
- lexicon: number;
2185
- id: string;
2186
- defs: {
2187
- main: {
2188
- type: string;
2189
- description: string;
2190
- input: {
2191
- encoding: string;
2192
- schema: {
2193
- type: string;
2194
- required: string[];
2195
- properties: {
2196
- subject: {
2197
- type: string;
2198
- ref: string;
2199
- };
2200
- direction: {
2201
- type: string;
2202
- enum: string[];
2203
- };
2204
- };
2205
- };
2206
- };
2207
- output: {
2208
- encoding: string;
2209
- schema: {
2210
- type: string;
2211
- properties: {
2212
- upvote: {
2213
- type: string;
2214
- };
2215
- downvote: {
2216
- type: string;
2217
- };
2218
- };
2219
- };
2220
- };
2221
- };
2222
- };
2223
- };
2224
- AppBskyFeedTrend: {
2225
- lexicon: number;
2226
- id: string;
2227
- defs: {
2228
- main: {
2229
- type: string;
2230
- key: string;
2231
- record: {
2232
- type: string;
2233
- required: string[];
2234
- properties: {
2235
- subject: {
2236
- type: string;
2237
- ref: string;
2238
- };
2239
- createdAt: {
2240
- type: string;
2241
- };
2242
- };
2243
- };
2244
- };
2245
- };
2246
- };
2247
- AppBskyFeedVote: {
2248
- lexicon: number;
2249
- id: string;
2250
- defs: {
2251
- main: {
2252
- type: string;
2253
- key: string;
2254
- record: {
2255
- type: string;
2256
- required: string[];
2257
- properties: {
2258
- subject: {
2259
- type: string;
2260
- ref: string;
2261
- };
2262
- direction: {
2263
- type: string;
2264
- enum: string[];
2265
- };
2266
- createdAt: {
2267
- type: string;
2268
- };
2269
- };
2270
- };
2271
- };
2272
- };
2273
- };
2274
- AppBskyGraphAssertCreator: {
2275
- lexicon: number;
2276
- id: string;
2277
- defs: {
2278
- main: {
2279
- type: string;
2280
- description: string;
2281
- };
2282
- };
2283
- };
2284
- AppBskyGraphAssertMember: {
2285
- lexicon: number;
2286
- id: string;
2287
- defs: {
2288
- main: {
2289
- type: string;
2290
- description: string;
2291
- };
2292
- };
2293
- };
2294
- AppBskyGraphAssertion: {
2295
- lexicon: number;
2296
- id: string;
2297
- defs: {
2298
- main: {
2299
- type: string;
2300
- key: string;
2301
- record: {
2302
- type: string;
2303
- required: string[];
2304
- properties: {
2305
- assertion: {
2306
- type: string;
2307
- };
2308
- subject: {
2309
- type: string;
2310
- ref: string;
2311
- };
2312
- createdAt: {
2313
- type: string;
2314
- };
2315
- };
2316
- };
2317
- };
2318
- };
2319
- };
2320
- AppBskyGraphConfirmation: {
2321
- lexicon: number;
2322
- id: string;
2323
- defs: {
2324
- main: {
2325
- type: string;
2326
- key: string;
2327
- record: {
2328
- type: string;
2329
- required: string[];
2330
- properties: {
2331
- originator: {
2332
- type: string;
2333
- ref: string;
2334
- };
2335
- assertion: {
2336
- type: string;
2337
- ref: string;
2338
- };
2339
- createdAt: {
2340
- type: string;
2341
- };
2342
- };
2343
- };
2344
- };
2345
- };
2346
- };
2347
- AppBskyGraphFollow: {
2348
- lexicon: number;
2349
- id: string;
2350
- defs: {
2351
- main: {
2352
- type: string;
2353
- description: string;
2354
- key: string;
2355
- record: {
2356
- type: string;
2357
- required: string[];
2358
- properties: {
2359
- subject: {
2360
- type: string;
2361
- ref: string;
2362
- };
2363
- createdAt: {
2364
- type: string;
2365
- };
2366
- };
2367
- };
2368
- };
2369
- };
2370
- };
2371
- AppBskyGraphGetAssertions: {
2372
- lexicon: number;
2373
- id: string;
2374
- defs: {
2375
- main: {
2376
- type: string;
2377
- description: string;
2378
- parameters: {
2379
- type: string;
2380
- properties: {
2381
- author: {
2382
- type: string;
2383
- };
2384
- subject: {
2385
- type: string;
2386
- };
2387
- assertion: {
2388
- type: string;
2389
- };
2390
- confirmed: {
2391
- type: string;
2392
- };
2393
- limit: {
2394
- type: string;
2395
- minimum: number;
2396
- maximum: number;
2397
- default: number;
2398
- };
2399
- before: {
2400
- type: string;
2401
- };
2402
- };
2403
- };
2404
- output: {
2405
- encoding: string;
2406
- schema: {
2407
- type: string;
2408
- required: string[];
2409
- properties: {
2410
- cursor: {
2411
- type: string;
2412
- };
2413
- assertions: {
2414
- type: string;
2415
- items: {
2416
- type: string;
2417
- ref: string;
2418
- };
2419
- };
2420
- };
2421
- };
2422
- };
2423
- };
2424
- assertion: {
2425
- type: string;
2426
- required: string[];
2427
- properties: {
2428
- uri: {
2429
- type: string;
2430
- };
2431
- cid: {
2432
- type: string;
2433
- };
2434
- assertion: {
2435
- type: string;
2436
- };
2437
- confirmation: {
2438
- type: string;
2439
- ref: string;
2440
- };
2441
- author: {
2442
- type: string;
2443
- ref: string;
2444
- };
2445
- subject: {
2446
- type: string;
2447
- ref: string;
2448
- };
2449
- indexedAt: {
2450
- type: string;
2451
- };
2452
- createdAt: {
2453
- type: string;
2454
- };
2455
- };
2456
- };
2457
- confirmation: {
2458
- type: string;
2459
- required: string[];
2460
- properties: {
2461
- uri: {
2462
- type: string;
2463
- };
2464
- cid: {
2465
- type: string;
2466
- };
2467
- indexedAt: {
2468
- type: string;
2469
- };
2470
- createdAt: {
2471
- type: string;
2472
- };
2473
- };
2474
- };
2475
- };
2476
- };
2477
- AppBskyGraphGetFollowers: {
2478
- lexicon: number;
2479
- id: string;
2480
- defs: {
2481
- main: {
2482
- type: string;
2483
- description: string;
2484
- parameters: {
2485
- type: string;
2486
- required: string[];
2487
- properties: {
2488
- user: {
2489
- type: string;
2490
- };
2491
- limit: {
2492
- type: string;
2493
- minimum: number;
2494
- maximum: number;
2495
- default: number;
2496
- };
2497
- before: {
2498
- type: string;
2499
- };
2500
- };
2501
- };
2502
- output: {
2503
- encoding: string;
2504
- schema: {
2505
- type: string;
2506
- required: string[];
2507
- properties: {
2508
- subject: {
2509
- type: string;
2510
- ref: string;
2511
- };
2512
- cursor: {
2513
- type: string;
2514
- };
2515
- followers: {
2516
- type: string;
2517
- items: {
2518
- type: string;
2519
- ref: string;
2520
- };
2521
- };
2522
- };
2523
- };
2524
- };
2525
- };
2526
- follower: {
2527
- type: string;
2528
- required: string[];
2529
- properties: {
2530
- did: {
2531
- type: string;
2532
- };
2533
- declaration: {
2534
- type: string;
2535
- ref: string;
2536
- };
2537
- handle: {
2538
- type: string;
2539
- };
2540
- displayName: {
2541
- type: string;
2542
- maxLength: number;
2543
- };
2544
- avatar: {
2545
- type: string;
2546
- };
2547
- createdAt: {
2548
- type: string;
2549
- };
2550
- indexedAt: {
2551
- type: string;
2552
- };
2553
- };
2554
- };
2555
- };
2556
- };
2557
- AppBskyGraphGetFollows: {
2558
- lexicon: number;
2559
- id: string;
2560
- defs: {
2561
- main: {
2562
- type: string;
2563
- description: string;
2564
- parameters: {
2565
- type: string;
2566
- required: string[];
2567
- properties: {
2568
- user: {
2569
- type: string;
2570
- };
2571
- limit: {
2572
- type: string;
2573
- minimum: number;
2574
- maximum: number;
2575
- default: number;
2576
- };
2577
- before: {
2578
- type: string;
2579
- };
2580
- };
2581
- };
2582
- output: {
2583
- encoding: string;
2584
- schema: {
2585
- type: string;
2586
- required: string[];
2587
- properties: {
2588
- subject: {
2589
- type: string;
2590
- ref: string;
2591
- };
2592
- cursor: {
2593
- type: string;
2594
- };
2595
- follows: {
2596
- type: string;
2597
- items: {
2598
- type: string;
2599
- ref: string;
2600
- };
2601
- };
2602
- };
2603
- };
2604
- };
2605
- };
2606
- follow: {
2607
- type: string;
2608
- required: string[];
2609
- properties: {
2610
- did: {
2611
- type: string;
2612
- };
2613
- declaration: {
2614
- type: string;
2615
- ref: string;
2616
- };
2617
- handle: {
2618
- type: string;
2619
- };
2620
- displayName: {
2621
- type: string;
2622
- maxLength: number;
2623
- };
2624
- createdAt: {
2625
- type: string;
2626
- };
2627
- indexedAt: {
2628
- type: string;
2629
- };
2630
- };
2631
- };
2632
- };
2633
- };
2634
- AppBskyGraphGetMembers: {
2635
- lexicon: number;
2636
- id: string;
2637
- defs: {
2638
- main: {
2639
- type: string;
2640
- description: string;
2641
- parameters: {
2642
- type: string;
2643
- required: string[];
2644
- properties: {
2645
- actor: {
2646
- type: string;
2647
- };
2648
- limit: {
2649
- type: string;
2650
- minimum: number;
2651
- maximum: number;
2652
- default: number;
2653
- };
2654
- before: {
2655
- type: string;
2656
- };
2657
- };
2658
- };
2659
- output: {
2660
- encoding: string;
2661
- schema: {
2662
- type: string;
2663
- required: string[];
2664
- properties: {
2665
- subject: {
2666
- type: string;
2667
- ref: string;
2668
- };
2669
- cursor: {
2670
- type: string;
2671
- };
2672
- members: {
2673
- type: string;
2674
- items: {
2675
- type: string;
2676
- ref: string;
2677
- };
2678
- };
2679
- };
2680
- };
2681
- };
2682
- };
2683
- member: {
2684
- type: string;
2685
- required: string[];
2686
- properties: {
2687
- did: {
2688
- type: string;
2689
- };
2690
- declaration: {
2691
- type: string;
2692
- ref: string;
2693
- };
2694
- handle: {
2695
- type: string;
2696
- };
2697
- displayName: {
2698
- type: string;
2699
- maxLength: number;
2700
- };
2701
- createdAt: {
2702
- type: string;
2703
- };
2704
- indexedAt: {
2705
- type: string;
2706
- };
2707
- };
2708
- };
2709
- };
2710
- };
2711
- AppBskyGraphGetMemberships: {
2712
- lexicon: number;
2713
- id: string;
2714
- defs: {
2715
- main: {
2716
- type: string;
2717
- description: string;
2718
- parameters: {
2719
- type: string;
2720
- required: string[];
2721
- properties: {
2722
- actor: {
2723
- type: string;
2724
- };
2725
- limit: {
2726
- type: string;
2727
- minimum: number;
2728
- maximum: number;
2729
- default: number;
2730
- };
2731
- before: {
2732
- type: string;
2733
- };
2734
- };
2735
- };
2736
- output: {
2737
- encoding: string;
2738
- schema: {
2739
- type: string;
2740
- required: string[];
2741
- properties: {
2742
- subject: {
2743
- type: string;
2744
- ref: string;
2745
- };
2746
- cursor: {
2747
- type: string;
2748
- };
2749
- memberships: {
2750
- type: string;
2751
- items: {
2752
- type: string;
2753
- ref: string;
2754
- };
2755
- };
2756
- };
2757
- };
2758
- };
2759
- };
2760
- membership: {
2761
- type: string;
2762
- required: string[];
2763
- properties: {
2764
- did: {
2765
- type: string;
2766
- };
2767
- declaration: {
2768
- type: string;
2769
- ref: string;
2770
- };
2771
- handle: {
2772
- type: string;
2773
- };
2774
- displayName: {
2775
- type: string;
2776
- maxLength: number;
2777
- };
2778
- createdAt: {
2779
- type: string;
2780
- };
2781
- indexedAt: {
2782
- type: string;
2783
- };
2784
- };
2785
- };
2786
- };
2787
- };
2788
- AppBskyNotificationGetCount: {
2789
- lexicon: number;
2790
- id: string;
2791
- defs: {
2792
- main: {
2793
- type: string;
2794
- output: {
2795
- encoding: string;
2796
- schema: {
2797
- type: string;
2798
- required: string[];
2799
- properties: {
2800
- count: {
2801
- type: string;
2802
- };
2803
- };
2804
- };
2805
- };
2806
- };
2807
- };
2808
- };
2809
- AppBskyNotificationList: {
2810
- lexicon: number;
2811
- id: string;
2812
- defs: {
2813
- main: {
2814
- type: string;
2815
- parameters: {
2816
- type: string;
2817
- properties: {
2818
- limit: {
2819
- type: string;
2820
- minimum: number;
2821
- maximum: number;
2822
- default: number;
2823
- };
2824
- before: {
2825
- type: string;
2826
- };
2827
- };
2828
- };
2829
- output: {
2830
- encoding: string;
2831
- schema: {
2832
- type: string;
2833
- required: string[];
2834
- properties: {
2835
- cursor: {
2836
- type: string;
2837
- };
2838
- notifications: {
2839
- type: string;
2840
- items: {
2841
- type: string;
2842
- ref: string;
2843
- };
2844
- };
2845
- };
2846
- };
2847
- };
2848
- };
2849
- notification: {
2850
- type: string;
2851
- required: string[];
2852
- properties: {
2853
- uri: {
2854
- type: string;
2855
- };
2856
- cid: {
2857
- type: string;
2858
- };
2859
- author: {
2860
- type: string;
2861
- ref: string;
2862
- };
2863
- reason: {
2864
- type: string;
2865
- description: string;
2866
- knownValues: string[];
2867
- };
2868
- reasonSubject: {
2869
- type: string;
2870
- };
2871
- record: {
2872
- type: string;
2873
- };
2874
- isRead: {
2875
- type: string;
2876
- };
2877
- indexedAt: {
2878
- type: string;
2879
- };
2880
- };
2881
- };
2882
- };
2883
- };
2884
- AppBskyNotificationUpdateSeen: {
2885
- lexicon: number;
2886
- id: string;
2887
- defs: {
2888
- main: {
2889
- type: string;
2890
- description: string;
2891
- input: {
2892
- encoding: string;
2893
- schema: {
2894
- type: string;
2895
- required: string[];
2896
- properties: {
2897
- seenAt: {
2898
- type: string;
2899
- };
2900
- };
2901
- };
2902
- };
2903
- };
2904
- };
2905
- };
2906
- AppBskySystemActorScene: {
2907
- lexicon: number;
2908
- id: string;
2909
- defs: {
2910
- main: {
2911
- type: string;
2912
- description: string;
2913
- };
2914
- };
2915
- };
2916
- AppBskySystemActorUser: {
2917
- lexicon: number;
2918
- id: string;
2919
- defs: {
2920
- main: {
2921
- type: string;
2922
- description: string;
2923
- };
2924
- };
2925
- };
2926
- AppBskySystemDeclRef: {
2927
- lexicon: number;
2928
- id: string;
2929
- defs: {
2930
- main: {
2931
- description: string;
2932
- type: string;
2933
- required: string[];
2934
- properties: {
2935
- cid: {
2936
- type: string;
2937
- };
2938
- actorType: {
2939
- type: string;
2940
- knownValues: string[];
2941
- };
2942
- };
2943
- };
2944
- };
2945
- };
2946
- AppBskySystemDeclaration: {
2947
- lexicon: number;
2948
- id: string;
2949
- defs: {
2950
- main: {
2951
- description: string;
2952
- type: string;
2953
- key: string;
2954
- record: {
2955
- type: string;
2956
- required: string[];
2957
- properties: {
2958
- actorType: {
2959
- type: string;
2960
- knownValues: string[];
2961
- };
2962
- };
2963
- };
2964
- };
2965
- };
2966
- };
2967
- };
2968
- export declare const schemas: LexiconDoc[];
2969
- export declare const lexicons: Lexicons;
2970
- export declare const ids: {
2971
- ComAtprotoAccountCreate: string;
2972
- ComAtprotoAccountCreateInviteCode: string;
2973
- ComAtprotoAccountDelete: string;
2974
- ComAtprotoAccountGet: string;
2975
- ComAtprotoAccountRequestPasswordReset: string;
2976
- ComAtprotoAccountResetPassword: string;
2977
- ComAtprotoBlobUpload: string;
2978
- ComAtprotoHandleResolve: string;
2979
- ComAtprotoRepoBatchWrite: string;
2980
- ComAtprotoRepoCreateRecord: string;
2981
- ComAtprotoRepoDeleteRecord: string;
2982
- ComAtprotoRepoDescribe: string;
2983
- ComAtprotoRepoGetRecord: string;
2984
- ComAtprotoRepoListRecords: string;
2985
- ComAtprotoRepoPutRecord: string;
2986
- ComAtprotoRepoStrongRef: string;
2987
- ComAtprotoServerGetAccountsConfig: string;
2988
- ComAtprotoSessionCreate: string;
2989
- ComAtprotoSessionDelete: string;
2990
- ComAtprotoSessionGet: string;
2991
- ComAtprotoSessionRefresh: string;
2992
- ComAtprotoSyncGetRepo: string;
2993
- ComAtprotoSyncGetRoot: string;
2994
- ComAtprotoSyncUpdateRepo: string;
2995
- AppBskyActorCreateScene: string;
2996
- AppBskyActorGetProfile: string;
2997
- AppBskyActorGetSuggestions: string;
2998
- AppBskyActorProfile: string;
2999
- AppBskyActorRef: string;
3000
- AppBskyActorSearch: string;
3001
- AppBskyActorSearchTypeahead: string;
3002
- AppBskyActorUpdateProfile: string;
3003
- AppBskyAdministrationModerationAction: string;
3004
- AppBskyAdministrationReverseModerationAction: string;
3005
- AppBskyAdministrationTakeModerationAction: string;
3006
- AppBskyEmbedExternal: string;
3007
- AppBskyEmbedImages: string;
3008
- AppBskyFeedFeedViewPost: string;
3009
- AppBskyFeedGetAuthorFeed: string;
3010
- AppBskyFeedGetPostThread: string;
3011
- AppBskyFeedGetRepostedBy: string;
3012
- AppBskyFeedGetTimeline: string;
3013
- AppBskyFeedGetVotes: string;
3014
- AppBskyFeedPost: string;
3015
- AppBskyFeedRepost: string;
3016
- AppBskyFeedSetVote: string;
3017
- AppBskyFeedTrend: string;
3018
- AppBskyFeedVote: string;
3019
- AppBskyGraphAssertCreator: string;
3020
- AppBskyGraphAssertMember: string;
3021
- AppBskyGraphAssertion: string;
3022
- AppBskyGraphConfirmation: string;
3023
- AppBskyGraphFollow: string;
3024
- AppBskyGraphGetAssertions: string;
3025
- AppBskyGraphGetFollowers: string;
3026
- AppBskyGraphGetFollows: string;
3027
- AppBskyGraphGetMembers: string;
3028
- AppBskyGraphGetMemberships: string;
3029
- AppBskyNotificationGetCount: string;
3030
- AppBskyNotificationList: string;
3031
- AppBskyNotificationUpdateSeen: string;
3032
- AppBskySystemActorScene: string;
3033
- AppBskySystemActorUser: string;
3034
- AppBskySystemDeclRef: string;
3035
- AppBskySystemDeclaration: string;
3036
- };