@atproto/api 0.1.2 → 0.2.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 (205) hide show
  1. package/README.md +179 -25
  2. package/build.js +10 -1
  3. package/dist/agent.d.ts +11 -6
  4. package/dist/bsky-agent.d.ts +43 -0
  5. package/dist/client/index.d.ts +127 -215
  6. package/dist/client/lexicons.d.ts +1496 -1347
  7. package/dist/client/types/app/bsky/actor/defs.d.ts +47 -0
  8. package/dist/client/types/app/bsky/actor/getProfile.d.ts +2 -2
  9. package/dist/client/types/app/bsky/actor/getProfiles.d.ts +2 -2
  10. package/dist/client/types/app/bsky/actor/getSuggestions.d.ts +2 -2
  11. package/dist/client/types/app/bsky/actor/profile.d.ts +4 -60
  12. package/dist/client/types/app/bsky/actor/searchActors.d.ts +22 -0
  13. package/dist/client/types/app/bsky/actor/searchActorsTypeahead.d.ts +20 -0
  14. package/dist/client/types/app/bsky/actor/updateProfile.d.ts +4 -11
  15. package/dist/client/types/app/bsky/embed/external.d.ts +9 -13
  16. package/dist/client/types/app/bsky/embed/images.d.ts +9 -13
  17. package/dist/client/types/app/bsky/embed/record.d.ts +41 -0
  18. package/dist/client/types/app/bsky/embed/recordWithMedia.d.ts +24 -0
  19. package/dist/client/types/app/bsky/feed/defs.d.ts +77 -0
  20. package/dist/client/types/app/bsky/feed/getAuthorFeed.d.ts +4 -4
  21. package/dist/client/types/app/bsky/feed/getLikes.d.ts +34 -0
  22. package/dist/client/types/app/bsky/feed/getPostThread.d.ts +2 -24
  23. package/dist/client/types/app/bsky/feed/getRepostedBy.d.ts +3 -3
  24. package/dist/client/types/app/bsky/feed/getTimeline.d.ts +3 -3
  25. package/dist/client/types/app/bsky/feed/like.d.ts +9 -0
  26. package/dist/client/types/app/bsky/feed/post.d.ts +5 -29
  27. package/dist/client/types/app/bsky/graph/follow.d.ts +1 -2
  28. package/dist/client/types/app/bsky/graph/getFollowers.d.ts +5 -5
  29. package/dist/client/types/app/bsky/graph/getFollows.d.ts +5 -5
  30. package/dist/client/types/app/bsky/graph/getMutes.d.ts +3 -3
  31. package/dist/client/types/app/bsky/graph/muteActor.d.ts +17 -0
  32. package/dist/client/types/app/bsky/graph/unmuteActor.d.ts +17 -0
  33. package/dist/client/types/app/bsky/notification/getUnreadCount.d.ts +17 -0
  34. package/dist/client/types/app/bsky/notification/listNotifications.d.ts +35 -0
  35. package/dist/client/types/app/bsky/richtext/facet.d.ts +30 -0
  36. package/dist/client/types/app/bsky/unspecced/getPopular.d.ts +21 -0
  37. package/dist/client/types/com/atproto/admin/defs.d.ts +181 -0
  38. package/dist/client/types/com/atproto/admin/getModerationAction.d.ts +2 -2
  39. package/dist/client/types/com/atproto/admin/getModerationActions.d.ts +3 -3
  40. package/dist/client/types/com/atproto/admin/getModerationReport.d.ts +2 -2
  41. package/dist/client/types/com/atproto/admin/getModerationReports.d.ts +3 -3
  42. package/dist/client/types/com/atproto/admin/getRecord.d.ts +2 -2
  43. package/dist/client/types/com/atproto/admin/getRepo.d.ts +2 -2
  44. package/dist/client/types/com/atproto/admin/resolveModerationReports.d.ts +2 -2
  45. package/dist/client/types/com/atproto/admin/reverseModerationAction.d.ts +2 -2
  46. package/dist/client/types/com/atproto/admin/searchRepos.d.ts +3 -3
  47. package/dist/client/types/com/atproto/admin/takeModerationAction.d.ts +5 -6
  48. package/dist/client/types/com/atproto/identity/resolveHandle.d.ts +18 -0
  49. package/dist/client/types/com/atproto/identity/updateHandle.d.ts +17 -0
  50. package/dist/client/types/com/atproto/moderation/createReport.d.ts +38 -0
  51. package/dist/client/types/com/atproto/moderation/defs.d.ts +3 -0
  52. package/dist/client/types/com/atproto/repo/applyWrites.d.ts +47 -0
  53. package/dist/client/types/com/atproto/repo/createRecord.d.ts +7 -2
  54. package/dist/client/types/com/atproto/repo/deleteRecord.d.ts +7 -2
  55. package/dist/client/types/com/atproto/repo/describeRepo.d.ts +22 -0
  56. package/dist/client/types/com/atproto/repo/getRecord.d.ts +1 -1
  57. package/dist/client/types/com/atproto/repo/listRecords.d.ts +3 -3
  58. package/dist/client/types/com/atproto/repo/putRecord.d.ts +7 -2
  59. package/dist/client/types/com/atproto/repo/uploadBlob.d.ts +20 -0
  60. package/dist/client/types/com/atproto/server/createAccount.d.ts +44 -0
  61. package/dist/client/types/com/atproto/server/createInviteCode.d.ts +22 -0
  62. package/dist/client/types/com/atproto/server/createSession.d.ts +29 -0
  63. package/dist/client/types/com/atproto/server/deleteAccount.d.ts +25 -0
  64. package/dist/client/types/com/atproto/server/deleteSession.d.ts +13 -0
  65. package/dist/client/types/com/atproto/server/describeServer.d.ts +27 -0
  66. package/dist/client/types/com/atproto/server/getSession.d.ts +18 -0
  67. package/dist/client/types/com/atproto/server/refreshSession.d.ts +24 -0
  68. package/dist/client/types/com/atproto/server/requestAccountDelete.d.ts +13 -0
  69. package/dist/client/types/com/atproto/server/requestPasswordReset.d.ts +17 -0
  70. package/dist/client/types/com/atproto/server/resetPassword.d.ts +24 -0
  71. package/dist/client/types/com/atproto/sync/getBlob.d.ts +15 -0
  72. package/dist/client/types/com/atproto/sync/getBlocks.d.ts +15 -0
  73. package/dist/client/types/com/atproto/sync/listBlobs.d.ts +20 -0
  74. package/dist/client/types/com/atproto/sync/notifyOfUpdate.d.ts +13 -0
  75. package/dist/client/types/com/atproto/sync/requestCrawl.d.ts +13 -0
  76. package/dist/client/types/com/atproto/sync/subscribeAllRepos.d.ts +6 -17
  77. package/dist/client/types/com/atproto/sync/subscribeRepos.d.ts +58 -0
  78. package/dist/helpers/bsky.d.ts +20 -0
  79. package/dist/index.d.ts +6 -0
  80. package/dist/index.js +8222 -3608
  81. package/dist/index.js.map +4 -4
  82. package/dist/mixins/bsky.d.ts +23 -0
  83. package/dist/rich-text/detection.d.ts +4 -0
  84. package/dist/rich-text/rich-text.d.ts +39 -0
  85. package/dist/rich-text/sanitization.d.ts +4 -0
  86. package/dist/rich-text/sanitize.d.ts +4 -0
  87. package/dist/rich-text/unicode.d.ts +11 -0
  88. package/dist/types.d.ts +2 -2
  89. package/docs/rn-fetch-handler.ts +88 -0
  90. package/package.json +4 -1
  91. package/src/agent.ts +51 -15
  92. package/src/bsky-agent.ts +228 -0
  93. package/src/client/index.ts +371 -581
  94. package/src/client/lexicons.ts +1920 -1746
  95. package/src/client/types/app/bsky/actor/defs.ts +97 -0
  96. package/src/client/types/app/bsky/actor/getProfile.ts +4 -3
  97. package/src/client/types/app/bsky/actor/getProfiles.ts +4 -3
  98. package/src/client/types/app/bsky/actor/getSuggestions.ts +4 -3
  99. package/src/client/types/app/bsky/actor/profile.ts +5 -95
  100. package/src/client/types/app/bsky/actor/{searchTypeahead.ts → searchActors.ts} +6 -3
  101. package/src/client/types/app/bsky/actor/{search.ts → searchActorsTypeahead.ts} +4 -5
  102. package/src/client/types/app/bsky/embed/external.ts +14 -13
  103. package/src/client/types/app/bsky/embed/images.ts +14 -15
  104. package/src/client/types/app/bsky/embed/record.ts +90 -0
  105. package/src/client/types/app/bsky/embed/recordWithMedia.ts +53 -0
  106. package/src/client/types/app/bsky/feed/defs.ts +156 -0
  107. package/src/client/types/app/bsky/feed/getAuthorFeed.ts +6 -5
  108. package/src/client/types/app/bsky/feed/{getVotes.ts → getLikes.ts} +11 -12
  109. package/src/client/types/app/bsky/feed/getPostThread.ts +5 -48
  110. package/src/client/types/app/bsky/feed/getRepostedBy.ts +5 -4
  111. package/src/client/types/app/bsky/feed/getTimeline.ts +5 -4
  112. package/src/client/types/app/bsky/feed/{vote.ts → like.ts} +4 -4
  113. package/src/client/types/app/bsky/feed/post.ts +12 -51
  114. package/src/client/types/app/bsky/feed/repost.ts +2 -1
  115. package/src/client/types/app/bsky/graph/follow.ts +3 -3
  116. package/src/client/types/app/bsky/graph/getFollowers.ts +7 -6
  117. package/src/client/types/app/bsky/graph/getFollows.ts +7 -6
  118. package/src/client/types/app/bsky/graph/getMutes.ts +5 -4
  119. package/src/client/types/app/bsky/graph/{mute.ts → muteActor.ts} +3 -2
  120. package/src/client/types/app/bsky/graph/{unmute.ts → unmuteActor.ts} +3 -2
  121. package/src/client/types/app/bsky/notification/{getCount.ts → getUnreadCount.ts} +2 -1
  122. package/src/client/types/app/bsky/notification/{list.ts → listNotifications.ts} +13 -9
  123. package/src/client/types/app/bsky/notification/updateSeen.ts +2 -1
  124. package/src/client/types/app/bsky/richtext/facet.ts +81 -0
  125. package/src/client/types/app/bsky/unspecced/getPopular.ts +38 -0
  126. package/src/client/types/com/atproto/admin/defs.ts +366 -0
  127. package/src/client/types/com/atproto/admin/getModerationAction.ts +4 -3
  128. package/src/client/types/com/atproto/admin/getModerationActions.ts +5 -4
  129. package/src/client/types/com/atproto/admin/getModerationReport.ts +4 -3
  130. package/src/client/types/com/atproto/admin/getModerationReports.ts +5 -4
  131. package/src/client/types/com/atproto/admin/getRecord.ts +4 -3
  132. package/src/client/types/com/atproto/admin/getRepo.ts +4 -3
  133. package/src/client/types/com/atproto/admin/resolveModerationReports.ts +4 -3
  134. package/src/client/types/com/atproto/admin/reverseModerationAction.ts +4 -3
  135. package/src/client/types/com/atproto/admin/searchRepos.ts +5 -4
  136. package/src/client/types/com/atproto/admin/takeModerationAction.ts +10 -10
  137. package/src/client/types/com/atproto/{handle/resolve.ts → identity/resolveHandle.ts} +2 -1
  138. package/src/client/types/com/atproto/{handle/update.ts → identity/updateHandle.ts} +2 -1
  139. package/src/client/types/com/atproto/{report/create.ts → moderation/createReport.ts} +10 -10
  140. package/src/client/types/com/atproto/moderation/defs.ts +17 -0
  141. package/src/client/types/com/atproto/repo/{batchWrite.ts → applyWrites.ts} +21 -12
  142. package/src/client/types/com/atproto/repo/createRecord.ts +15 -3
  143. package/src/client/types/com/atproto/repo/deleteRecord.ts +15 -3
  144. package/src/client/types/com/atproto/repo/{describe.ts → describeRepo.ts} +3 -2
  145. package/src/client/types/com/atproto/repo/getRecord.ts +4 -3
  146. package/src/client/types/com/atproto/repo/listRecords.ts +7 -6
  147. package/src/client/types/com/atproto/repo/putRecord.ts +18 -6
  148. package/src/client/types/com/atproto/repo/strongRef.ts +2 -1
  149. package/src/client/types/com/atproto/{blob/upload.ts → repo/uploadBlob.ts} +3 -2
  150. package/src/client/types/com/atproto/{account/create.ts → server/createAccount.ts} +9 -1
  151. package/src/client/types/com/atproto/{account → server}/createInviteCode.ts +2 -1
  152. package/src/client/types/com/atproto/{session/create.ts → server/createSession.ts} +2 -1
  153. package/src/client/types/com/atproto/{account/delete.ts → server/deleteAccount.ts} +2 -1
  154. package/src/client/types/com/atproto/{account/requestDelete.ts → server/deleteSession.ts} +2 -1
  155. package/src/client/types/com/atproto/server/{getAccountsConfig.ts → describeServer.ts} +4 -3
  156. package/src/client/types/com/atproto/{session/get.ts → server/getSession.ts} +2 -1
  157. package/src/client/types/com/atproto/{session/refresh.ts → server/refreshSession.ts} +2 -1
  158. package/src/client/types/com/atproto/{session/delete.ts → server/requestAccountDelete.ts} +2 -1
  159. package/src/client/types/com/atproto/{account → server}/requestPasswordReset.ts +2 -1
  160. package/src/client/types/com/atproto/{account → server}/resetPassword.ts +2 -1
  161. package/src/client/types/com/atproto/sync/getBlob.ts +33 -0
  162. package/src/client/types/com/atproto/sync/getBlocks.ts +32 -0
  163. package/src/client/types/com/atproto/sync/getCheckout.ts +2 -1
  164. package/src/client/types/com/atproto/sync/getCommitPath.ts +2 -1
  165. package/src/client/types/com/atproto/sync/getHead.ts +2 -1
  166. package/src/client/types/com/atproto/sync/getRecord.ts +2 -1
  167. package/src/client/types/com/atproto/sync/getRepo.ts +2 -1
  168. package/src/client/types/com/atproto/sync/listBlobs.ts +40 -0
  169. package/src/client/types/com/atproto/sync/notifyOfUpdate.ts +30 -0
  170. package/src/client/types/com/atproto/{account/get.ts → sync/requestCrawl.ts} +6 -2
  171. package/src/client/types/com/atproto/sync/subscribeRepos.ts +131 -0
  172. package/src/index.ts +12 -0
  173. package/src/rich-text/detection.ts +83 -0
  174. package/src/rich-text/rich-text.ts +401 -0
  175. package/src/rich-text/sanitization.ts +40 -0
  176. package/src/rich-text/unicode.ts +47 -0
  177. package/src/types.ts +2 -2
  178. package/tests/agent.test.ts +10 -6
  179. package/tests/bsky-agent.test.ts +140 -0
  180. package/tests/errors.test.ts +4 -4
  181. package/tests/rich-text-detection.test.ts +229 -0
  182. package/tests/rich-text-sanitization.test.ts +211 -0
  183. package/tests/rich-text.test.ts +661 -0
  184. package/tsconfig.build.tsbuildinfo +1 -1
  185. package/src/client/types/app/bsky/actor/ref.ts +0 -64
  186. package/src/client/types/app/bsky/actor/updateProfile.ts +0 -71
  187. package/src/client/types/app/bsky/feed/feedViewPost.ts +0 -64
  188. package/src/client/types/app/bsky/feed/setVote.ts +0 -40
  189. package/src/client/types/app/bsky/graph/assertCreator.ts +0 -9
  190. package/src/client/types/app/bsky/graph/assertMember.ts +0 -9
  191. package/src/client/types/app/bsky/graph/assertion.ts +0 -27
  192. package/src/client/types/app/bsky/graph/confirmation.ts +0 -28
  193. package/src/client/types/app/bsky/system/actorUser.ts +0 -9
  194. package/src/client/types/app/bsky/system/declRef.ts +0 -26
  195. package/src/client/types/app/bsky/system/declaration.ts +0 -24
  196. package/src/client/types/com/atproto/admin/blob.ts +0 -84
  197. package/src/client/types/com/atproto/admin/moderationAction.ts +0 -118
  198. package/src/client/types/com/atproto/admin/moderationReport.ts +0 -64
  199. package/src/client/types/com/atproto/admin/record.ts +0 -92
  200. package/src/client/types/com/atproto/admin/repo.ts +0 -103
  201. package/src/client/types/com/atproto/repo/recordRef.ts +0 -25
  202. package/src/client/types/com/atproto/repo/repoRef.ts +0 -24
  203. package/src/client/types/com/atproto/report/reasonType.ts +0 -16
  204. package/src/client/types/com/atproto/report/subject.ts +0 -66
  205. package/src/client/types/com/atproto/sync/subscribeAllRepos.ts +0 -48
@@ -1,474 +1,10 @@
1
1
  import { LexiconDoc, Lexicons } from '@atproto/lexicon';
2
2
  export declare const schemaDict: {
3
- ComAtprotoAccountCreate: {
3
+ ComAtprotoAdminDefs: {
4
4
  lexicon: number;
5
5
  id: string;
6
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
- input: {
103
- encoding: string;
104
- schema: {
105
- type: string;
106
- required: string[];
107
- properties: {
108
- did: {
109
- type: string;
110
- };
111
- password: {
112
- type: string;
113
- };
114
- token: {
115
- type: string;
116
- };
117
- };
118
- };
119
- };
120
- errors: {
121
- name: string;
122
- }[];
123
- };
124
- };
125
- };
126
- ComAtprotoAccountGet: {
127
- lexicon: number;
128
- id: string;
129
- defs: {
130
- main: {
131
- type: string;
132
- description: string;
133
- };
134
- };
135
- };
136
- ComAtprotoAccountRequestDelete: {
137
- lexicon: number;
138
- id: string;
139
- defs: {
140
- main: {
141
- type: string;
142
- description: string;
143
- };
144
- };
145
- };
146
- ComAtprotoAccountRequestPasswordReset: {
147
- lexicon: number;
148
- id: string;
149
- defs: {
150
- main: {
151
- type: string;
152
- description: string;
153
- input: {
154
- encoding: string;
155
- schema: {
156
- type: string;
157
- required: string[];
158
- properties: {
159
- email: {
160
- type: string;
161
- };
162
- };
163
- };
164
- };
165
- };
166
- };
167
- };
168
- ComAtprotoAccountResetPassword: {
169
- lexicon: number;
170
- id: string;
171
- defs: {
172
- main: {
173
- type: string;
174
- description: string;
175
- input: {
176
- encoding: string;
177
- schema: {
178
- type: string;
179
- required: string[];
180
- properties: {
181
- token: {
182
- type: string;
183
- };
184
- password: {
185
- type: string;
186
- };
187
- };
188
- };
189
- };
190
- errors: {
191
- name: string;
192
- }[];
193
- };
194
- };
195
- };
196
- ComAtprotoAdminBlob: {
197
- lexicon: number;
198
- id: string;
199
- defs: {
200
- view: {
201
- type: string;
202
- required: string[];
203
- properties: {
204
- cid: {
205
- type: string;
206
- };
207
- mimeType: {
208
- type: string;
209
- };
210
- size: {
211
- type: string;
212
- };
213
- createdAt: {
214
- type: string;
215
- };
216
- details: {
217
- type: string;
218
- refs: string[];
219
- };
220
- moderation: {
221
- type: string;
222
- ref: string;
223
- };
224
- };
225
- };
226
- imageDetails: {
227
- type: string;
228
- required: string[];
229
- properties: {
230
- width: {
231
- type: string;
232
- };
233
- height: {
234
- type: string;
235
- };
236
- };
237
- };
238
- videoDetails: {
239
- type: string;
240
- required: string[];
241
- properties: {
242
- width: {
243
- type: string;
244
- };
245
- height: {
246
- type: string;
247
- };
248
- length: {
249
- type: string;
250
- };
251
- };
252
- };
253
- moderation: {
254
- type: string;
255
- required: never[];
256
- properties: {
257
- currentAction: {
258
- type: string;
259
- ref: string;
260
- };
261
- };
262
- };
263
- };
264
- };
265
- ComAtprotoAdminGetModerationAction: {
266
- lexicon: number;
267
- id: string;
268
- defs: {
269
- main: {
270
- type: string;
271
- description: string;
272
- parameters: {
273
- type: string;
274
- required: string[];
275
- properties: {
276
- id: {
277
- type: string;
278
- };
279
- };
280
- };
281
- output: {
282
- encoding: string;
283
- schema: {
284
- type: string;
285
- ref: string;
286
- };
287
- };
288
- };
289
- };
290
- };
291
- ComAtprotoAdminGetModerationActions: {
292
- lexicon: number;
293
- id: string;
294
- defs: {
295
- main: {
296
- type: string;
297
- description: string;
298
- parameters: {
299
- type: string;
300
- properties: {
301
- subject: {
302
- type: string;
303
- };
304
- limit: {
305
- type: string;
306
- minimum: number;
307
- maximum: number;
308
- default: number;
309
- };
310
- before: {
311
- type: string;
312
- };
313
- };
314
- };
315
- output: {
316
- encoding: string;
317
- schema: {
318
- type: string;
319
- required: string[];
320
- properties: {
321
- cursor: {
322
- type: string;
323
- };
324
- actions: {
325
- type: string;
326
- items: {
327
- type: string;
328
- ref: string;
329
- };
330
- };
331
- };
332
- };
333
- };
334
- };
335
- };
336
- };
337
- ComAtprotoAdminGetModerationReport: {
338
- lexicon: number;
339
- id: string;
340
- defs: {
341
- main: {
342
- type: string;
343
- description: string;
344
- parameters: {
345
- type: string;
346
- required: string[];
347
- properties: {
348
- id: {
349
- type: string;
350
- };
351
- };
352
- };
353
- output: {
354
- encoding: string;
355
- schema: {
356
- type: string;
357
- ref: string;
358
- };
359
- };
360
- };
361
- };
362
- };
363
- ComAtprotoAdminGetModerationReports: {
364
- lexicon: number;
365
- id: string;
366
- defs: {
367
- main: {
368
- type: string;
369
- description: string;
370
- parameters: {
371
- type: string;
372
- properties: {
373
- subject: {
374
- type: string;
375
- };
376
- resolved: {
377
- type: string;
378
- };
379
- limit: {
380
- type: string;
381
- minimum: number;
382
- maximum: number;
383
- default: number;
384
- };
385
- before: {
386
- type: string;
387
- };
388
- };
389
- };
390
- output: {
391
- encoding: string;
392
- schema: {
393
- type: string;
394
- required: string[];
395
- properties: {
396
- cursor: {
397
- type: string;
398
- };
399
- reports: {
400
- type: string;
401
- items: {
402
- type: string;
403
- ref: string;
404
- };
405
- };
406
- };
407
- };
408
- };
409
- };
410
- };
411
- };
412
- ComAtprotoAdminGetRecord: {
413
- lexicon: number;
414
- id: string;
415
- defs: {
416
- main: {
417
- type: string;
418
- description: string;
419
- parameters: {
420
- type: string;
421
- required: string[];
422
- properties: {
423
- uri: {
424
- type: string;
425
- };
426
- cid: {
427
- type: string;
428
- };
429
- };
430
- };
431
- output: {
432
- encoding: string;
433
- schema: {
434
- type: string;
435
- ref: string;
436
- };
437
- };
438
- };
439
- };
440
- };
441
- ComAtprotoAdminGetRepo: {
442
- lexicon: number;
443
- id: string;
444
- defs: {
445
- main: {
446
- type: string;
447
- description: string;
448
- parameters: {
449
- type: string;
450
- required: string[];
451
- properties: {
452
- did: {
453
- type: string;
454
- };
455
- };
456
- };
457
- output: {
458
- encoding: string;
459
- schema: {
460
- type: string;
461
- ref: string;
462
- };
463
- };
464
- };
465
- };
466
- };
467
- ComAtprotoAdminModerationAction: {
468
- lexicon: number;
469
- id: string;
470
- defs: {
471
- view: {
7
+ actionView: {
472
8
  type: string;
473
9
  required: string[];
474
10
  properties: {
@@ -494,9 +30,11 @@ export declare const schemaDict: {
494
30
  };
495
31
  createdBy: {
496
32
  type: string;
33
+ format: string;
497
34
  };
498
35
  createdAt: {
499
36
  type: string;
37
+ format: string;
500
38
  };
501
39
  reversal: {
502
40
  type: string;
@@ -510,7 +48,7 @@ export declare const schemaDict: {
510
48
  };
511
49
  };
512
50
  };
513
- viewDetail: {
51
+ actionViewDetail: {
514
52
  type: string;
515
53
  required: string[];
516
54
  properties: {
@@ -537,9 +75,11 @@ export declare const schemaDict: {
537
75
  };
538
76
  createdBy: {
539
77
  type: string;
78
+ format: string;
540
79
  };
541
80
  createdAt: {
542
81
  type: string;
82
+ format: string;
543
83
  };
544
84
  reversal: {
545
85
  type: string;
@@ -554,7 +94,7 @@ export declare const schemaDict: {
554
94
  };
555
95
  };
556
96
  };
557
- viewCurrent: {
97
+ actionViewCurrent: {
558
98
  type: string;
559
99
  required: string[];
560
100
  properties: {
@@ -567,7 +107,7 @@ export declare const schemaDict: {
567
107
  };
568
108
  };
569
109
  };
570
- reversal: {
110
+ actionReversal: {
571
111
  type: string;
572
112
  required: string[];
573
113
  properties: {
@@ -576,9 +116,11 @@ export declare const schemaDict: {
576
116
  };
577
117
  createdBy: {
578
118
  type: string;
119
+ format: string;
579
120
  };
580
121
  createdAt: {
581
122
  type: string;
123
+ format: string;
582
124
  };
583
125
  };
584
126
  };
@@ -598,13 +140,7 @@ export declare const schemaDict: {
598
140
  type: string;
599
141
  description: string;
600
142
  };
601
- };
602
- };
603
- ComAtprotoAdminModerationReport: {
604
- lexicon: number;
605
- id: string;
606
- defs: {
607
- view: {
143
+ reportView: {
608
144
  type: string;
609
145
  required: string[];
610
146
  properties: {
@@ -622,11 +158,13 @@ export declare const schemaDict: {
622
158
  type: string;
623
159
  refs: string[];
624
160
  };
625
- reportedByDid: {
161
+ reportedBy: {
626
162
  type: string;
163
+ format: string;
627
164
  };
628
165
  createdAt: {
629
166
  type: string;
167
+ format: string;
630
168
  };
631
169
  resolvedByActionIds: {
632
170
  type: string;
@@ -636,7 +174,7 @@ export declare const schemaDict: {
636
174
  };
637
175
  };
638
176
  };
639
- viewDetail: {
177
+ reportViewDetail: {
640
178
  type: string;
641
179
  required: string[];
642
180
  properties: {
@@ -654,36 +192,106 @@ export declare const schemaDict: {
654
192
  type: string;
655
193
  refs: string[];
656
194
  };
657
- reportedByDid: {
195
+ reportedBy: {
196
+ type: string;
197
+ format: string;
198
+ };
199
+ createdAt: {
200
+ type: string;
201
+ format: string;
202
+ };
203
+ resolvedByActions: {
204
+ type: string;
205
+ items: {
206
+ type: string;
207
+ ref: string;
208
+ };
209
+ };
210
+ };
211
+ };
212
+ repoView: {
213
+ type: string;
214
+ required: string[];
215
+ properties: {
216
+ did: {
217
+ type: string;
218
+ format: string;
219
+ };
220
+ handle: {
221
+ type: string;
222
+ format: string;
223
+ };
224
+ email: {
225
+ type: string;
226
+ };
227
+ relatedRecords: {
228
+ type: string;
229
+ items: {
230
+ type: string;
231
+ };
232
+ };
233
+ indexedAt: {
234
+ type: string;
235
+ format: string;
236
+ };
237
+ moderation: {
238
+ type: string;
239
+ ref: string;
240
+ };
241
+ };
242
+ };
243
+ repoViewDetail: {
244
+ type: string;
245
+ required: string[];
246
+ properties: {
247
+ did: {
248
+ type: string;
249
+ format: string;
250
+ };
251
+ handle: {
252
+ type: string;
253
+ format: string;
254
+ };
255
+ email: {
256
+ type: string;
257
+ };
258
+ relatedRecords: {
259
+ type: string;
260
+ items: {
261
+ type: string;
262
+ };
263
+ };
264
+ indexedAt: {
658
265
  type: string;
266
+ format: string;
659
267
  };
660
- createdAt: {
268
+ moderation: {
661
269
  type: string;
270
+ ref: string;
662
271
  };
663
- resolvedByActions: {
272
+ };
273
+ };
274
+ repoRef: {
275
+ type: string;
276
+ required: string[];
277
+ properties: {
278
+ did: {
664
279
  type: string;
665
- items: {
666
- type: string;
667
- ref: string;
668
- };
280
+ format: string;
669
281
  };
670
282
  };
671
283
  };
672
- };
673
- };
674
- ComAtprotoAdminRecord: {
675
- lexicon: number;
676
- id: string;
677
- defs: {
678
- view: {
284
+ recordView: {
679
285
  type: string;
680
286
  required: string[];
681
287
  properties: {
682
288
  uri: {
683
289
  type: string;
290
+ format: string;
684
291
  };
685
292
  cid: {
686
293
  type: string;
294
+ format: string;
687
295
  };
688
296
  value: {
689
297
  type: string;
@@ -692,10 +300,12 @@ export declare const schemaDict: {
692
300
  type: string;
693
301
  items: {
694
302
  type: string;
303
+ format: string;
695
304
  };
696
305
  };
697
306
  indexedAt: {
698
307
  type: string;
308
+ format: string;
699
309
  };
700
310
  moderation: {
701
311
  type: string;
@@ -707,15 +317,17 @@ export declare const schemaDict: {
707
317
  };
708
318
  };
709
319
  };
710
- viewDetail: {
320
+ recordViewDetail: {
711
321
  type: string;
712
322
  required: string[];
713
323
  properties: {
714
324
  uri: {
715
325
  type: string;
326
+ format: string;
716
327
  };
717
328
  cid: {
718
329
  type: string;
330
+ format: string;
719
331
  };
720
332
  value: {
721
333
  type: string;
@@ -729,6 +341,7 @@ export declare const schemaDict: {
729
341
  };
730
342
  indexedAt: {
731
343
  type: string;
344
+ format: string;
732
345
  };
733
346
  moderation: {
734
347
  type: string;
@@ -774,34 +387,27 @@ export declare const schemaDict: {
774
387
  };
775
388
  };
776
389
  };
777
- };
778
- };
779
- ComAtprotoAdminRepo: {
780
- lexicon: number;
781
- id: string;
782
- defs: {
783
- view: {
390
+ blobView: {
784
391
  type: string;
785
392
  required: string[];
786
393
  properties: {
787
- did: {
394
+ cid: {
788
395
  type: string;
396
+ format: string;
789
397
  };
790
- handle: {
398
+ mimeType: {
791
399
  type: string;
792
400
  };
793
- account: {
401
+ size: {
794
402
  type: string;
795
- ref: string;
796
403
  };
797
- relatedRecords: {
404
+ createdAt: {
798
405
  type: string;
799
- items: {
800
- type: string;
801
- };
406
+ format: string;
802
407
  };
803
- indexedAt: {
408
+ details: {
804
409
  type: string;
410
+ refs: string[];
805
411
  };
806
412
  moderation: {
807
413
  type: string;
@@ -809,77 +415,237 @@ export declare const schemaDict: {
809
415
  };
810
416
  };
811
417
  };
812
- viewDetail: {
418
+ imageDetails: {
813
419
  type: string;
814
420
  required: string[];
815
421
  properties: {
816
- did: {
422
+ width: {
817
423
  type: string;
818
424
  };
819
- handle: {
425
+ height: {
820
426
  type: string;
821
427
  };
822
- account: {
428
+ };
429
+ };
430
+ videoDetails: {
431
+ type: string;
432
+ required: string[];
433
+ properties: {
434
+ width: {
823
435
  type: string;
824
- ref: string;
825
436
  };
826
- relatedRecords: {
437
+ height: {
827
438
  type: string;
828
- items: {
829
- type: string;
830
- };
831
439
  };
832
- indexedAt: {
440
+ length: {
833
441
  type: string;
834
442
  };
835
- moderation: {
443
+ };
444
+ };
445
+ };
446
+ };
447
+ ComAtprotoAdminGetModerationAction: {
448
+ lexicon: number;
449
+ id: string;
450
+ defs: {
451
+ main: {
452
+ type: string;
453
+ description: string;
454
+ parameters: {
455
+ type: string;
456
+ required: string[];
457
+ properties: {
458
+ id: {
459
+ type: string;
460
+ };
461
+ };
462
+ };
463
+ output: {
464
+ encoding: string;
465
+ schema: {
836
466
  type: string;
837
467
  ref: string;
838
468
  };
839
469
  };
840
470
  };
841
- account: {
471
+ };
472
+ };
473
+ ComAtprotoAdminGetModerationActions: {
474
+ lexicon: number;
475
+ id: string;
476
+ defs: {
477
+ main: {
842
478
  type: string;
843
- required: string[];
844
- properties: {
845
- email: {
479
+ description: string;
480
+ parameters: {
481
+ type: string;
482
+ properties: {
483
+ subject: {
484
+ type: string;
485
+ };
486
+ limit: {
487
+ type: string;
488
+ minimum: number;
489
+ maximum: number;
490
+ default: number;
491
+ };
492
+ cursor: {
493
+ type: string;
494
+ };
495
+ };
496
+ };
497
+ output: {
498
+ encoding: string;
499
+ schema: {
846
500
  type: string;
501
+ required: string[];
502
+ properties: {
503
+ cursor: {
504
+ type: string;
505
+ };
506
+ actions: {
507
+ type: string;
508
+ items: {
509
+ type: string;
510
+ ref: string;
511
+ };
512
+ };
513
+ };
847
514
  };
848
515
  };
849
516
  };
850
- moderation: {
517
+ };
518
+ };
519
+ ComAtprotoAdminGetModerationReport: {
520
+ lexicon: number;
521
+ id: string;
522
+ defs: {
523
+ main: {
851
524
  type: string;
852
- required: never[];
853
- properties: {
854
- currentAction: {
525
+ description: string;
526
+ parameters: {
527
+ type: string;
528
+ required: string[];
529
+ properties: {
530
+ id: {
531
+ type: string;
532
+ };
533
+ };
534
+ };
535
+ output: {
536
+ encoding: string;
537
+ schema: {
855
538
  type: string;
856
539
  ref: string;
857
540
  };
858
541
  };
859
542
  };
860
- moderationDetail: {
543
+ };
544
+ };
545
+ ComAtprotoAdminGetModerationReports: {
546
+ lexicon: number;
547
+ id: string;
548
+ defs: {
549
+ main: {
861
550
  type: string;
862
- required: string[];
863
- properties: {
864
- currentAction: {
865
- type: string;
866
- ref: string;
551
+ description: string;
552
+ parameters: {
553
+ type: string;
554
+ properties: {
555
+ subject: {
556
+ type: string;
557
+ };
558
+ resolved: {
559
+ type: string;
560
+ };
561
+ limit: {
562
+ type: string;
563
+ minimum: number;
564
+ maximum: number;
565
+ default: number;
566
+ };
567
+ cursor: {
568
+ type: string;
569
+ };
867
570
  };
868
- actions: {
571
+ };
572
+ output: {
573
+ encoding: string;
574
+ schema: {
869
575
  type: string;
870
- items: {
576
+ required: string[];
577
+ properties: {
578
+ cursor: {
579
+ type: string;
580
+ };
581
+ reports: {
582
+ type: string;
583
+ items: {
584
+ type: string;
585
+ ref: string;
586
+ };
587
+ };
588
+ };
589
+ };
590
+ };
591
+ };
592
+ };
593
+ };
594
+ ComAtprotoAdminGetRecord: {
595
+ lexicon: number;
596
+ id: string;
597
+ defs: {
598
+ main: {
599
+ type: string;
600
+ description: string;
601
+ parameters: {
602
+ type: string;
603
+ required: string[];
604
+ properties: {
605
+ uri: {
871
606
  type: string;
872
- ref: string;
607
+ format: string;
608
+ };
609
+ cid: {
610
+ type: string;
611
+ format: string;
873
612
  };
874
613
  };
875
- reports: {
614
+ };
615
+ output: {
616
+ encoding: string;
617
+ schema: {
876
618
  type: string;
877
- items: {
619
+ ref: string;
620
+ };
621
+ };
622
+ };
623
+ };
624
+ };
625
+ ComAtprotoAdminGetRepo: {
626
+ lexicon: number;
627
+ id: string;
628
+ defs: {
629
+ main: {
630
+ type: string;
631
+ description: string;
632
+ parameters: {
633
+ type: string;
634
+ required: string[];
635
+ properties: {
636
+ did: {
878
637
  type: string;
879
- ref: string;
638
+ format: string;
880
639
  };
881
640
  };
882
641
  };
642
+ output: {
643
+ encoding: string;
644
+ schema: {
645
+ type: string;
646
+ ref: string;
647
+ };
648
+ };
883
649
  };
884
650
  };
885
651
  };
@@ -907,6 +673,7 @@ export declare const schemaDict: {
907
673
  };
908
674
  createdBy: {
909
675
  type: string;
676
+ format: string;
910
677
  };
911
678
  };
912
679
  };
@@ -942,6 +709,7 @@ export declare const schemaDict: {
942
709
  };
943
710
  createdBy: {
944
711
  type: string;
712
+ format: string;
945
713
  };
946
714
  };
947
715
  };
@@ -975,7 +743,7 @@ export declare const schemaDict: {
975
743
  maximum: number;
976
744
  default: number;
977
745
  };
978
- before: {
746
+ cursor: {
979
747
  type: string;
980
748
  };
981
749
  };
@@ -1027,6 +795,7 @@ export declare const schemaDict: {
1027
795
  type: string;
1028
796
  items: {
1029
797
  type: string;
798
+ format: string;
1030
799
  };
1031
800
  };
1032
801
  reason: {
@@ -1034,6 +803,7 @@ export declare const schemaDict: {
1034
803
  };
1035
804
  createdBy: {
1036
805
  type: string;
806
+ format: string;
1037
807
  };
1038
808
  };
1039
809
  };
@@ -1051,15 +821,22 @@ export declare const schemaDict: {
1051
821
  };
1052
822
  };
1053
823
  };
1054
- ComAtprotoBlobUpload: {
824
+ ComAtprotoIdentityResolveHandle: {
1055
825
  lexicon: number;
1056
826
  id: string;
1057
827
  defs: {
1058
828
  main: {
1059
829
  type: string;
1060
830
  description: string;
1061
- input: {
1062
- encoding: string;
831
+ parameters: {
832
+ type: string;
833
+ properties: {
834
+ handle: {
835
+ type: string;
836
+ format: string;
837
+ description: string;
838
+ };
839
+ };
1063
840
  };
1064
841
  output: {
1065
842
  encoding: string;
@@ -1067,8 +844,9 @@ export declare const schemaDict: {
1067
844
  type: string;
1068
845
  required: string[];
1069
846
  properties: {
1070
- cid: {
847
+ did: {
1071
848
  type: string;
849
+ format: string;
1072
850
  };
1073
851
  };
1074
852
  };
@@ -1076,30 +854,22 @@ export declare const schemaDict: {
1076
854
  };
1077
855
  };
1078
856
  };
1079
- ComAtprotoHandleResolve: {
857
+ ComAtprotoIdentityUpdateHandle: {
1080
858
  lexicon: number;
1081
859
  id: string;
1082
860
  defs: {
1083
861
  main: {
1084
862
  type: string;
1085
863
  description: string;
1086
- parameters: {
1087
- type: string;
1088
- properties: {
1089
- handle: {
1090
- type: string;
1091
- description: string;
1092
- };
1093
- };
1094
- };
1095
- output: {
864
+ input: {
1096
865
  encoding: string;
1097
866
  schema: {
1098
867
  type: string;
1099
868
  required: string[];
1100
869
  properties: {
1101
- did: {
870
+ handle: {
1102
871
  type: string;
872
+ format: string;
1103
873
  };
1104
874
  };
1105
875
  };
@@ -1107,7 +877,7 @@ export declare const schemaDict: {
1107
877
  };
1108
878
  };
1109
879
  };
1110
- ComAtprotoHandleUpdate: {
880
+ ComAtprotoModerationCreateReport: {
1111
881
  lexicon: number;
1112
882
  id: string;
1113
883
  defs: {
@@ -1120,8 +890,47 @@ export declare const schemaDict: {
1120
890
  type: string;
1121
891
  required: string[];
1122
892
  properties: {
1123
- handle: {
893
+ reasonType: {
894
+ type: string;
895
+ ref: string;
896
+ };
897
+ reason: {
898
+ type: string;
899
+ };
900
+ subject: {
901
+ type: string;
902
+ refs: string[];
903
+ };
904
+ };
905
+ };
906
+ };
907
+ output: {
908
+ encoding: string;
909
+ schema: {
910
+ type: string;
911
+ required: string[];
912
+ properties: {
913
+ id: {
914
+ type: string;
915
+ };
916
+ reasonType: {
917
+ type: string;
918
+ ref: string;
919
+ };
920
+ reason: {
921
+ type: string;
922
+ };
923
+ subject: {
924
+ type: string;
925
+ refs: string[];
926
+ };
927
+ reportedBy: {
928
+ type: string;
929
+ format: string;
930
+ };
931
+ createdAt: {
1124
932
  type: string;
933
+ format: string;
1125
934
  };
1126
935
  };
1127
936
  };
@@ -1129,7 +938,25 @@ export declare const schemaDict: {
1129
938
  };
1130
939
  };
1131
940
  };
1132
- ComAtprotoRepoBatchWrite: {
941
+ ComAtprotoModerationDefs: {
942
+ lexicon: number;
943
+ id: string;
944
+ defs: {
945
+ reasonType: {
946
+ type: string;
947
+ knownValues: string[];
948
+ };
949
+ reasonSpam: {
950
+ type: string;
951
+ description: string;
952
+ };
953
+ reasonOther: {
954
+ type: string;
955
+ description: string;
956
+ };
957
+ };
958
+ };
959
+ ComAtprotoRepoApplyWrites: {
1133
960
  lexicon: number;
1134
961
  id: string;
1135
962
  defs: {
@@ -1142,8 +969,9 @@ export declare const schemaDict: {
1142
969
  type: string;
1143
970
  required: string[];
1144
971
  properties: {
1145
- did: {
972
+ repo: {
1146
973
  type: string;
974
+ format: string;
1147
975
  description: string;
1148
976
  };
1149
977
  validate: {
@@ -1159,20 +987,25 @@ export declare const schemaDict: {
1159
987
  closed: boolean;
1160
988
  };
1161
989
  };
990
+ swapCommit: {
991
+ type: string;
992
+ format: string;
993
+ };
1162
994
  };
1163
995
  };
1164
996
  };
997
+ errors: {
998
+ name: string;
999
+ }[];
1165
1000
  };
1166
1001
  create: {
1167
1002
  type: string;
1003
+ description: string;
1168
1004
  required: string[];
1169
1005
  properties: {
1170
- action: {
1171
- type: string;
1172
- const: string;
1173
- };
1174
1006
  collection: {
1175
1007
  type: string;
1008
+ format: string;
1176
1009
  };
1177
1010
  rkey: {
1178
1011
  type: string;
@@ -1184,14 +1017,12 @@ export declare const schemaDict: {
1184
1017
  };
1185
1018
  update: {
1186
1019
  type: string;
1020
+ description: string;
1187
1021
  required: string[];
1188
1022
  properties: {
1189
- action: {
1190
- type: string;
1191
- const: string;
1192
- };
1193
1023
  collection: {
1194
1024
  type: string;
1025
+ format: string;
1195
1026
  };
1196
1027
  rkey: {
1197
1028
  type: string;
@@ -1203,14 +1034,12 @@ export declare const schemaDict: {
1203
1034
  };
1204
1035
  delete: {
1205
1036
  type: string;
1037
+ description: string;
1206
1038
  required: string[];
1207
1039
  properties: {
1208
- action: {
1209
- type: string;
1210
- const: string;
1211
- };
1212
1040
  collection: {
1213
1041
  type: string;
1042
+ format: string;
1214
1043
  };
1215
1044
  rkey: {
1216
1045
  type: string;
@@ -1232,11 +1061,17 @@ export declare const schemaDict: {
1232
1061
  type: string;
1233
1062
  required: string[];
1234
1063
  properties: {
1235
- did: {
1064
+ repo: {
1236
1065
  type: string;
1066
+ format: string;
1237
1067
  description: string;
1238
1068
  };
1239
1069
  collection: {
1070
+ type: string;
1071
+ format: string;
1072
+ description: string;
1073
+ };
1074
+ rkey: {
1240
1075
  type: string;
1241
1076
  description: string;
1242
1077
  };
@@ -1249,6 +1084,11 @@ export declare const schemaDict: {
1249
1084
  type: string;
1250
1085
  description: string;
1251
1086
  };
1087
+ swapCommit: {
1088
+ type: string;
1089
+ format: string;
1090
+ description: string;
1091
+ };
1252
1092
  };
1253
1093
  };
1254
1094
  };
@@ -1260,13 +1100,18 @@ export declare const schemaDict: {
1260
1100
  properties: {
1261
1101
  uri: {
1262
1102
  type: string;
1103
+ format: string;
1263
1104
  };
1264
1105
  cid: {
1265
1106
  type: string;
1107
+ format: string;
1266
1108
  };
1267
1109
  };
1268
1110
  };
1269
1111
  };
1112
+ errors: {
1113
+ name: string;
1114
+ }[];
1270
1115
  };
1271
1116
  };
1272
1117
  };
@@ -1283,25 +1128,40 @@ export declare const schemaDict: {
1283
1128
  type: string;
1284
1129
  required: string[];
1285
1130
  properties: {
1286
- did: {
1131
+ repo: {
1287
1132
  type: string;
1133
+ format: string;
1288
1134
  description: string;
1289
1135
  };
1290
1136
  collection: {
1291
1137
  type: string;
1138
+ format: string;
1292
1139
  description: string;
1293
1140
  };
1294
1141
  rkey: {
1295
1142
  type: string;
1296
1143
  description: string;
1297
1144
  };
1145
+ swapRecord: {
1146
+ type: string;
1147
+ format: string;
1148
+ description: string;
1149
+ };
1150
+ swapCommit: {
1151
+ type: string;
1152
+ format: string;
1153
+ description: string;
1154
+ };
1298
1155
  };
1299
1156
  };
1300
1157
  };
1158
+ errors: {
1159
+ name: string;
1160
+ }[];
1301
1161
  };
1302
1162
  };
1303
1163
  };
1304
- ComAtprotoRepoDescribe: {
1164
+ ComAtprotoRepoDescribeRepo: {
1305
1165
  lexicon: number;
1306
1166
  id: string;
1307
1167
  defs: {
@@ -1312,8 +1172,9 @@ export declare const schemaDict: {
1312
1172
  type: string;
1313
1173
  required: string[];
1314
1174
  properties: {
1315
- user: {
1175
+ repo: {
1316
1176
  type: string;
1177
+ format: string;
1317
1178
  description: string;
1318
1179
  };
1319
1180
  };
@@ -1326,9 +1187,11 @@ export declare const schemaDict: {
1326
1187
  properties: {
1327
1188
  handle: {
1328
1189
  type: string;
1190
+ format: string;
1329
1191
  };
1330
1192
  did: {
1331
1193
  type: string;
1194
+ format: string;
1332
1195
  };
1333
1196
  didDoc: {
1334
1197
  type: string;
@@ -1337,6 +1200,7 @@ export declare const schemaDict: {
1337
1200
  type: string;
1338
1201
  items: {
1339
1202
  type: string;
1203
+ format: string;
1340
1204
  };
1341
1205
  };
1342
1206
  handleIsCorrect: {
@@ -1359,12 +1223,14 @@ export declare const schemaDict: {
1359
1223
  type: string;
1360
1224
  required: string[];
1361
1225
  properties: {
1362
- user: {
1226
+ repo: {
1363
1227
  type: string;
1228
+ format: string;
1364
1229
  description: string;
1365
1230
  };
1366
1231
  collection: {
1367
1232
  type: string;
1233
+ format: string;
1368
1234
  description: string;
1369
1235
  };
1370
1236
  rkey: {
@@ -1373,6 +1239,7 @@ export declare const schemaDict: {
1373
1239
  };
1374
1240
  cid: {
1375
1241
  type: string;
1242
+ format: string;
1376
1243
  description: string;
1377
1244
  };
1378
1245
  };
@@ -1385,9 +1252,11 @@ export declare const schemaDict: {
1385
1252
  properties: {
1386
1253
  uri: {
1387
1254
  type: string;
1255
+ format: string;
1388
1256
  };
1389
1257
  cid: {
1390
1258
  type: string;
1259
+ format: string;
1391
1260
  };
1392
1261
  value: {
1393
1262
  type: string;
@@ -1409,12 +1278,14 @@ export declare const schemaDict: {
1409
1278
  type: string;
1410
1279
  required: string[];
1411
1280
  properties: {
1412
- user: {
1281
+ repo: {
1413
1282
  type: string;
1283
+ format: string;
1414
1284
  description: string;
1415
1285
  };
1416
1286
  collection: {
1417
1287
  type: string;
1288
+ format: string;
1418
1289
  description: string;
1419
1290
  };
1420
1291
  limit: {
@@ -1424,11 +1295,11 @@ export declare const schemaDict: {
1424
1295
  default: number;
1425
1296
  description: string;
1426
1297
  };
1427
- before: {
1298
+ rkeyStart: {
1428
1299
  type: string;
1429
1300
  description: string;
1430
1301
  };
1431
- after: {
1302
+ rkeyEnd: {
1432
1303
  type: string;
1433
1304
  description: string;
1434
1305
  };
@@ -1464,9 +1335,11 @@ export declare const schemaDict: {
1464
1335
  properties: {
1465
1336
  uri: {
1466
1337
  type: string;
1338
+ format: string;
1467
1339
  };
1468
1340
  cid: {
1469
1341
  type: string;
1342
+ format: string;
1470
1343
  };
1471
1344
  value: {
1472
1345
  type: string;
@@ -1487,13 +1360,16 @@ export declare const schemaDict: {
1487
1360
  schema: {
1488
1361
  type: string;
1489
1362
  required: string[];
1363
+ nullable: string[];
1490
1364
  properties: {
1491
- did: {
1365
+ repo: {
1492
1366
  type: string;
1367
+ format: string;
1493
1368
  description: string;
1494
1369
  };
1495
1370
  collection: {
1496
1371
  type: string;
1372
+ format: string;
1497
1373
  description: string;
1498
1374
  };
1499
1375
  rkey: {
@@ -1509,6 +1385,16 @@ export declare const schemaDict: {
1509
1385
  type: string;
1510
1386
  description: string;
1511
1387
  };
1388
+ swapRecord: {
1389
+ type: string;
1390
+ format: string;
1391
+ description: string;
1392
+ };
1393
+ swapCommit: {
1394
+ type: string;
1395
+ format: string;
1396
+ description: string;
1397
+ };
1512
1398
  };
1513
1399
  };
1514
1400
  };
@@ -1520,17 +1406,22 @@ export declare const schemaDict: {
1520
1406
  properties: {
1521
1407
  uri: {
1522
1408
  type: string;
1409
+ format: string;
1523
1410
  };
1524
1411
  cid: {
1525
1412
  type: string;
1413
+ format: string;
1526
1414
  };
1527
1415
  };
1528
1416
  };
1529
1417
  };
1418
+ errors: {
1419
+ name: string;
1420
+ }[];
1530
1421
  };
1531
1422
  };
1532
1423
  };
1533
- ComAtprotoRepoRecordRef: {
1424
+ ComAtprotoRepoStrongRef: {
1534
1425
  lexicon: number;
1535
1426
  id: string;
1536
1427
  description: string;
@@ -1541,50 +1432,103 @@ export declare const schemaDict: {
1541
1432
  properties: {
1542
1433
  uri: {
1543
1434
  type: string;
1435
+ format: string;
1544
1436
  };
1545
1437
  cid: {
1546
1438
  type: string;
1439
+ format: string;
1547
1440
  };
1548
1441
  };
1549
1442
  };
1550
1443
  };
1551
1444
  };
1552
- ComAtprotoRepoRepoRef: {
1445
+ ComAtprotoRepoUploadBlob: {
1553
1446
  lexicon: number;
1554
1447
  id: string;
1555
- description: string;
1556
1448
  defs: {
1557
1449
  main: {
1558
1450
  type: string;
1559
- required: string[];
1560
- properties: {
1561
- did: {
1451
+ description: string;
1452
+ input: {
1453
+ encoding: string;
1454
+ };
1455
+ output: {
1456
+ encoding: string;
1457
+ schema: {
1562
1458
  type: string;
1459
+ required: string[];
1460
+ properties: {
1461
+ blob: {
1462
+ type: string;
1463
+ };
1464
+ };
1563
1465
  };
1564
1466
  };
1565
1467
  };
1566
1468
  };
1567
1469
  };
1568
- ComAtprotoRepoStrongRef: {
1470
+ ComAtprotoServerCreateAccount: {
1569
1471
  lexicon: number;
1570
1472
  id: string;
1571
- description: string;
1572
1473
  defs: {
1573
1474
  main: {
1574
1475
  type: string;
1575
- required: string[];
1576
- properties: {
1577
- uri: {
1476
+ description: string;
1477
+ input: {
1478
+ encoding: string;
1479
+ schema: {
1578
1480
  type: string;
1481
+ required: string[];
1482
+ properties: {
1483
+ email: {
1484
+ type: string;
1485
+ };
1486
+ handle: {
1487
+ type: string;
1488
+ format: string;
1489
+ };
1490
+ inviteCode: {
1491
+ type: string;
1492
+ };
1493
+ password: {
1494
+ type: string;
1495
+ };
1496
+ recoveryKey: {
1497
+ type: string;
1498
+ };
1499
+ };
1579
1500
  };
1580
- cid: {
1501
+ };
1502
+ output: {
1503
+ encoding: string;
1504
+ schema: {
1581
1505
  type: string;
1506
+ required: string[];
1507
+ properties: {
1508
+ accessJwt: {
1509
+ type: string;
1510
+ };
1511
+ refreshJwt: {
1512
+ type: string;
1513
+ };
1514
+ handle: {
1515
+ type: string;
1516
+ format: string;
1517
+ };
1518
+ did: {
1519
+ type: string;
1520
+ format: string;
1521
+ };
1522
+ };
1582
1523
  };
1583
1524
  };
1525
+ errors: {
1526
+ name: string;
1527
+ }[];
1584
1528
  };
1585
1529
  };
1586
1530
  };
1587
- ComAtprotoReportCreate: {
1531
+ ComAtprotoServerCreateInviteCode: {
1588
1532
  lexicon: number;
1589
1533
  id: string;
1590
1534
  defs: {
@@ -1597,16 +1541,46 @@ export declare const schemaDict: {
1597
1541
  type: string;
1598
1542
  required: string[];
1599
1543
  properties: {
1600
- reasonType: {
1544
+ useCount: {
1601
1545
  type: string;
1602
- ref: string;
1603
1546
  };
1604
- reason: {
1547
+ };
1548
+ };
1549
+ };
1550
+ output: {
1551
+ encoding: string;
1552
+ schema: {
1553
+ type: string;
1554
+ required: string[];
1555
+ properties: {
1556
+ code: {
1605
1557
  type: string;
1606
1558
  };
1607
- subject: {
1559
+ };
1560
+ };
1561
+ };
1562
+ };
1563
+ };
1564
+ };
1565
+ ComAtprotoServerCreateSession: {
1566
+ lexicon: number;
1567
+ id: string;
1568
+ defs: {
1569
+ main: {
1570
+ type: string;
1571
+ description: string;
1572
+ input: {
1573
+ encoding: string;
1574
+ schema: {
1575
+ type: string;
1576
+ required: string[];
1577
+ properties: {
1578
+ identifier: {
1579
+ type: string;
1580
+ description: string;
1581
+ };
1582
+ password: {
1608
1583
  type: string;
1609
- refs: string[];
1610
1584
  };
1611
1585
  };
1612
1586
  };
@@ -1617,101 +1591,72 @@ export declare const schemaDict: {
1617
1591
  type: string;
1618
1592
  required: string[];
1619
1593
  properties: {
1620
- id: {
1594
+ accessJwt: {
1621
1595
  type: string;
1622
1596
  };
1623
- reasonType: {
1597
+ refreshJwt: {
1624
1598
  type: string;
1625
- ref: string;
1626
1599
  };
1627
- reason: {
1600
+ handle: {
1628
1601
  type: string;
1602
+ format: string;
1629
1603
  };
1630
- subject: {
1604
+ did: {
1605
+ type: string;
1606
+ format: string;
1607
+ };
1608
+ };
1609
+ };
1610
+ };
1611
+ errors: {
1612
+ name: string;
1613
+ }[];
1614
+ };
1615
+ };
1616
+ };
1617
+ ComAtprotoServerDeleteAccount: {
1618
+ lexicon: number;
1619
+ id: string;
1620
+ defs: {
1621
+ main: {
1622
+ type: string;
1623
+ description: string;
1624
+ input: {
1625
+ encoding: string;
1626
+ schema: {
1627
+ type: string;
1628
+ required: string[];
1629
+ properties: {
1630
+ did: {
1631
1631
  type: string;
1632
- refs: string[];
1632
+ format: string;
1633
1633
  };
1634
- reportedByDid: {
1634
+ password: {
1635
1635
  type: string;
1636
1636
  };
1637
- createdAt: {
1637
+ token: {
1638
1638
  type: string;
1639
1639
  };
1640
1640
  };
1641
1641
  };
1642
1642
  };
1643
+ errors: {
1644
+ name: string;
1645
+ }[];
1643
1646
  };
1644
1647
  };
1645
1648
  };
1646
- ComAtprotoReportReasonType: {
1649
+ ComAtprotoServerDeleteSession: {
1647
1650
  lexicon: number;
1648
1651
  id: string;
1649
1652
  defs: {
1650
1653
  main: {
1651
- type: string;
1652
- knownValues: string[];
1653
- };
1654
- spam: {
1655
- type: string;
1656
- description: string;
1657
- };
1658
- other: {
1659
1654
  type: string;
1660
1655
  description: string;
1661
1656
  };
1662
1657
  };
1663
1658
  };
1664
- ComAtprotoReportSubject: {
1665
- lexicon: number;
1666
- id: string;
1667
- defs: {
1668
- repo: {
1669
- type: string;
1670
- required: string[];
1671
- properties: {
1672
- did: {
1673
- type: string;
1674
- description: string;
1675
- };
1676
- };
1677
- };
1678
- record: {
1679
- type: string;
1680
- required: string[];
1681
- properties: {
1682
- did: {
1683
- type: string;
1684
- description: string;
1685
- };
1686
- collection: {
1687
- type: string;
1688
- description: string;
1689
- };
1690
- rkey: {
1691
- type: string;
1692
- description: string;
1693
- };
1694
- cid: {
1695
- type: string;
1696
- description: string;
1697
- };
1698
- };
1699
- };
1700
- recordRef: {
1701
- type: string;
1702
- required: string[];
1703
- properties: {
1704
- uri: {
1705
- type: string;
1706
- };
1707
- cid: {
1708
- type: string;
1709
- };
1710
- };
1711
- };
1712
- };
1713
- };
1714
- ComAtprotoServerGetAccountsConfig: {
1659
+ ComAtprotoServerDescribeServer: {
1715
1660
  lexicon: number;
1716
1661
  id: string;
1717
1662
  defs: {
@@ -1754,29 +1699,40 @@ export declare const schemaDict: {
1754
1699
  };
1755
1700
  };
1756
1701
  };
1757
- ComAtprotoSessionCreate: {
1702
+ ComAtprotoServerGetSession: {
1758
1703
  lexicon: number;
1759
1704
  id: string;
1760
1705
  defs: {
1761
1706
  main: {
1762
1707
  type: string;
1763
1708
  description: string;
1764
- input: {
1709
+ output: {
1765
1710
  encoding: string;
1766
1711
  schema: {
1767
1712
  type: string;
1768
1713
  required: string[];
1769
1714
  properties: {
1770
- identifier: {
1715
+ handle: {
1771
1716
  type: string;
1772
- description: string;
1717
+ format: string;
1773
1718
  };
1774
- password: {
1719
+ did: {
1775
1720
  type: string;
1721
+ format: string;
1776
1722
  };
1777
1723
  };
1778
1724
  };
1779
1725
  };
1726
+ };
1727
+ };
1728
+ };
1729
+ ComAtprotoServerRefreshSession: {
1730
+ lexicon: number;
1731
+ id: string;
1732
+ defs: {
1733
+ main: {
1734
+ type: string;
1735
+ description: string;
1780
1736
  output: {
1781
1737
  encoding: string;
1782
1738
  schema: {
@@ -1791,9 +1747,11 @@ export declare const schemaDict: {
1791
1747
  };
1792
1748
  handle: {
1793
1749
  type: string;
1750
+ format: string;
1794
1751
  };
1795
1752
  did: {
1796
1753
  type: string;
1754
+ format: string;
1797
1755
  };
1798
1756
  };
1799
1757
  };
@@ -1804,7 +1762,7 @@ export declare const schemaDict: {
1804
1762
  };
1805
1763
  };
1806
1764
  };
1807
- ComAtprotoSessionDelete: {
1765
+ ComAtprotoServerRequestAccountDelete: {
1808
1766
  lexicon: number;
1809
1767
  id: string;
1810
1768
  defs: {
@@ -1814,23 +1772,20 @@ export declare const schemaDict: {
1814
1772
  };
1815
1773
  };
1816
1774
  };
1817
- ComAtprotoSessionGet: {
1775
+ ComAtprotoServerRequestPasswordReset: {
1818
1776
  lexicon: number;
1819
1777
  id: string;
1820
1778
  defs: {
1821
1779
  main: {
1822
1780
  type: string;
1823
1781
  description: string;
1824
- output: {
1782
+ input: {
1825
1783
  encoding: string;
1826
1784
  schema: {
1827
1785
  type: string;
1828
1786
  required: string[];
1829
1787
  properties: {
1830
- handle: {
1831
- type: string;
1832
- };
1833
- did: {
1788
+ email: {
1834
1789
  type: string;
1835
1790
  };
1836
1791
  };
@@ -1839,29 +1794,23 @@ export declare const schemaDict: {
1839
1794
  };
1840
1795
  };
1841
1796
  };
1842
- ComAtprotoSessionRefresh: {
1797
+ ComAtprotoServerResetPassword: {
1843
1798
  lexicon: number;
1844
1799
  id: string;
1845
1800
  defs: {
1846
1801
  main: {
1847
1802
  type: string;
1848
1803
  description: string;
1849
- output: {
1804
+ input: {
1850
1805
  encoding: string;
1851
1806
  schema: {
1852
1807
  type: string;
1853
1808
  required: string[];
1854
1809
  properties: {
1855
- accessJwt: {
1856
- type: string;
1857
- };
1858
- refreshJwt: {
1859
- type: string;
1860
- };
1861
- handle: {
1810
+ token: {
1862
1811
  type: string;
1863
1812
  };
1864
- did: {
1813
+ password: {
1865
1814
  type: string;
1866
1815
  };
1867
1816
  };
@@ -1873,6 +1822,66 @@ export declare const schemaDict: {
1873
1822
  };
1874
1823
  };
1875
1824
  };
1825
+ ComAtprotoSyncGetBlob: {
1826
+ lexicon: number;
1827
+ id: string;
1828
+ defs: {
1829
+ main: {
1830
+ type: string;
1831
+ description: string;
1832
+ parameters: {
1833
+ type: string;
1834
+ required: string[];
1835
+ properties: {
1836
+ did: {
1837
+ type: string;
1838
+ format: string;
1839
+ description: string;
1840
+ };
1841
+ cid: {
1842
+ type: string;
1843
+ format: string;
1844
+ description: string;
1845
+ };
1846
+ };
1847
+ };
1848
+ output: {
1849
+ encoding: string;
1850
+ };
1851
+ };
1852
+ };
1853
+ };
1854
+ ComAtprotoSyncGetBlocks: {
1855
+ lexicon: number;
1856
+ id: string;
1857
+ defs: {
1858
+ main: {
1859
+ type: string;
1860
+ description: string;
1861
+ parameters: {
1862
+ type: string;
1863
+ required: string[];
1864
+ properties: {
1865
+ did: {
1866
+ type: string;
1867
+ format: string;
1868
+ description: string;
1869
+ };
1870
+ cids: {
1871
+ type: string;
1872
+ items: {
1873
+ type: string;
1874
+ format: string;
1875
+ };
1876
+ };
1877
+ };
1878
+ };
1879
+ output: {
1880
+ encoding: string;
1881
+ };
1882
+ };
1883
+ };
1884
+ };
1876
1885
  ComAtprotoSyncGetCheckout: {
1877
1886
  lexicon: number;
1878
1887
  id: string;
@@ -1886,10 +1895,12 @@ export declare const schemaDict: {
1886
1895
  properties: {
1887
1896
  did: {
1888
1897
  type: string;
1898
+ format: string;
1889
1899
  description: string;
1890
1900
  };
1891
1901
  commit: {
1892
1902
  type: string;
1903
+ format: string;
1893
1904
  description: string;
1894
1905
  };
1895
1906
  };
@@ -1913,14 +1924,17 @@ export declare const schemaDict: {
1913
1924
  properties: {
1914
1925
  did: {
1915
1926
  type: string;
1927
+ format: string;
1916
1928
  description: string;
1917
1929
  };
1918
1930
  latest: {
1919
1931
  type: string;
1932
+ format: string;
1920
1933
  description: string;
1921
1934
  };
1922
1935
  earliest: {
1923
1936
  type: string;
1937
+ format: string;
1924
1938
  description: string;
1925
1939
  };
1926
1940
  };
@@ -1935,6 +1949,7 @@ export declare const schemaDict: {
1935
1949
  type: string;
1936
1950
  items: {
1937
1951
  type: string;
1952
+ format: string;
1938
1953
  };
1939
1954
  };
1940
1955
  };
@@ -1956,6 +1971,7 @@ export declare const schemaDict: {
1956
1971
  properties: {
1957
1972
  did: {
1958
1973
  type: string;
1974
+ format: string;
1959
1975
  description: string;
1960
1976
  };
1961
1977
  };
@@ -1968,6 +1984,7 @@ export declare const schemaDict: {
1968
1984
  properties: {
1969
1985
  root: {
1970
1986
  type: string;
1987
+ format: string;
1971
1988
  };
1972
1989
  };
1973
1990
  };
@@ -1988,16 +2005,19 @@ export declare const schemaDict: {
1988
2005
  properties: {
1989
2006
  did: {
1990
2007
  type: string;
2008
+ format: string;
1991
2009
  description: string;
1992
2010
  };
1993
2011
  collection: {
1994
2012
  type: string;
2013
+ format: string;
1995
2014
  };
1996
2015
  rkey: {
1997
2016
  type: string;
1998
2017
  };
1999
2018
  commit: {
2000
2019
  type: string;
2020
+ format: string;
2001
2021
  description: string;
2002
2022
  };
2003
2023
  };
@@ -2021,14 +2041,17 @@ export declare const schemaDict: {
2021
2041
  properties: {
2022
2042
  did: {
2023
2043
  type: string;
2044
+ format: string;
2024
2045
  description: string;
2025
2046
  };
2026
2047
  earliest: {
2027
2048
  type: string;
2049
+ format: string;
2028
2050
  description: string;
2029
2051
  };
2030
2052
  latest: {
2031
2053
  type: string;
2054
+ format: string;
2032
2055
  description: string;
2033
2056
  };
2034
2057
  };
@@ -2039,7 +2062,7 @@ export declare const schemaDict: {
2039
2062
  };
2040
2063
  };
2041
2064
  };
2042
- ComAtprotoSyncSubscribeAllRepos: {
2065
+ ComAtprotoSyncListBlobs: {
2043
2066
  lexicon: number;
2044
2067
  id: string;
2045
2068
  defs: {
@@ -2048,109 +2071,22 @@ export declare const schemaDict: {
2048
2071
  description: string;
2049
2072
  parameters: {
2050
2073
  type: string;
2074
+ required: string[];
2051
2075
  properties: {
2052
- backfillFrom: {
2076
+ did: {
2053
2077
  type: string;
2078
+ format: string;
2054
2079
  description: string;
2055
2080
  };
2056
- };
2057
- };
2058
- message: {
2059
- schema: {
2060
- type: string;
2061
- refs: string[];
2062
- };
2063
- codes: {
2064
- 'lex:com.atproto.sync.subscribeAllRepos#repoAppend': number;
2065
- 'lex:com.atproto.sync.subscribeAllRepos#repoRebase': number;
2066
- };
2067
- };
2068
- };
2069
- repoAppend: {
2070
- type: string;
2071
- required: string[];
2072
- properties: {
2073
- time: {
2074
- type: string;
2075
- };
2076
- repo: {
2077
- type: string;
2078
- };
2079
- commit: {
2080
- type: string;
2081
- };
2082
- prev: {
2083
- type: string;
2084
- };
2085
- blocks: {
2086
- type: string;
2087
- };
2088
- blobs: {
2089
- type: string;
2090
- items: {
2091
- type: string;
2092
- };
2093
- };
2094
- };
2095
- };
2096
- repoRebase: {
2097
- type: string;
2098
- required: string[];
2099
- properties: {
2100
- time: {
2101
- type: string;
2102
- };
2103
- repo: {
2104
- type: string;
2105
- };
2106
- commit: {
2107
- type: string;
2108
- };
2109
- };
2110
- };
2111
- };
2112
- };
2113
- AppBskyActorGetProfile: {
2114
- lexicon: number;
2115
- id: string;
2116
- defs: {
2117
- main: {
2118
- type: string;
2119
- parameters: {
2120
- type: string;
2121
- required: string[];
2122
- properties: {
2123
- actor: {
2081
+ latest: {
2124
2082
  type: string;
2083
+ format: string;
2084
+ description: string;
2125
2085
  };
2126
- };
2127
- };
2128
- output: {
2129
- encoding: string;
2130
- schema: {
2131
- type: string;
2132
- ref: string;
2133
- };
2134
- };
2135
- };
2136
- };
2137
- };
2138
- AppBskyActorGetProfiles: {
2139
- lexicon: number;
2140
- id: string;
2141
- defs: {
2142
- main: {
2143
- type: string;
2144
- parameters: {
2145
- type: string;
2146
- required: string[];
2147
- properties: {
2148
- actors: {
2086
+ earliest: {
2149
2087
  type: string;
2150
- items: {
2151
- type: string;
2152
- };
2153
- maxLength: number;
2088
+ format: string;
2089
+ description: string;
2154
2090
  };
2155
2091
  };
2156
2092
  };
@@ -2160,11 +2096,11 @@ export declare const schemaDict: {
2160
2096
  type: string;
2161
2097
  required: string[];
2162
2098
  properties: {
2163
- profiles: {
2099
+ cids: {
2164
2100
  type: string;
2165
2101
  items: {
2166
2102
  type: string;
2167
- ref: string;
2103
+ format: string;
2168
2104
  };
2169
2105
  };
2170
2106
  };
@@ -2173,7 +2109,7 @@ export declare const schemaDict: {
2173
2109
  };
2174
2110
  };
2175
2111
  };
2176
- AppBskyActorGetSuggestions: {
2112
+ ComAtprotoSyncNotifyOfUpdate: {
2177
2113
  lexicon: number;
2178
2114
  id: string;
2179
2115
  defs: {
@@ -2182,230 +2118,305 @@ export declare const schemaDict: {
2182
2118
  description: string;
2183
2119
  parameters: {
2184
2120
  type: string;
2121
+ required: string[];
2185
2122
  properties: {
2186
- limit: {
2187
- type: string;
2188
- minimum: number;
2189
- maximum: number;
2190
- default: number;
2191
- };
2192
- cursor: {
2123
+ hostname: {
2193
2124
  type: string;
2194
- };
2195
- };
2196
- };
2197
- output: {
2198
- encoding: string;
2199
- schema: {
2200
- type: string;
2201
- required: string[];
2202
- properties: {
2203
- cursor: {
2204
- type: string;
2205
- };
2206
- actors: {
2207
- type: string;
2208
- items: {
2209
- type: string;
2210
- ref: string;
2211
- };
2212
- };
2125
+ description: string;
2213
2126
  };
2214
2127
  };
2215
2128
  };
2216
2129
  };
2217
2130
  };
2218
2131
  };
2219
- AppBskyActorProfile: {
2132
+ ComAtprotoSyncRequestCrawl: {
2220
2133
  lexicon: number;
2221
2134
  id: string;
2222
2135
  defs: {
2223
2136
  main: {
2224
2137
  type: string;
2225
- key: string;
2226
- record: {
2138
+ description: string;
2139
+ parameters: {
2227
2140
  type: string;
2228
2141
  required: string[];
2229
2142
  properties: {
2230
- displayName: {
2231
- type: string;
2232
- maxLength: number;
2233
- };
2234
- description: {
2143
+ hostname: {
2235
2144
  type: string;
2236
- maxLength: number;
2237
- };
2238
- avatar: {
2239
- type: string;
2240
- accept: string[];
2241
- maxWidth: number;
2242
- maxHeight: number;
2243
- maxSize: number;
2145
+ description: string;
2244
2146
  };
2245
- banner: {
2147
+ };
2148
+ };
2149
+ };
2150
+ };
2151
+ };
2152
+ ComAtprotoSyncSubscribeRepos: {
2153
+ lexicon: number;
2154
+ id: string;
2155
+ defs: {
2156
+ main: {
2157
+ type: string;
2158
+ description: string;
2159
+ parameters: {
2160
+ type: string;
2161
+ properties: {
2162
+ cursor: {
2246
2163
  type: string;
2247
- accept: string[];
2248
- maxWidth: number;
2249
- maxHeight: number;
2250
- maxSize: number;
2164
+ description: string;
2251
2165
  };
2252
2166
  };
2253
2167
  };
2168
+ message: {
2169
+ schema: {
2170
+ type: string;
2171
+ refs: string[];
2172
+ };
2173
+ };
2174
+ errors: {
2175
+ name: string;
2176
+ }[];
2254
2177
  };
2255
- view: {
2178
+ commit: {
2256
2179
  type: string;
2257
2180
  required: string[];
2181
+ nullable: string[];
2258
2182
  properties: {
2259
- did: {
2183
+ seq: {
2260
2184
  type: string;
2261
2185
  };
2262
- declaration: {
2186
+ rebase: {
2263
2187
  type: string;
2264
- ref: string;
2265
2188
  };
2266
- handle: {
2189
+ tooBig: {
2267
2190
  type: string;
2268
2191
  };
2269
- displayName: {
2192
+ repo: {
2270
2193
  type: string;
2271
- maxLength: number;
2194
+ format: string;
2272
2195
  };
2273
- description: {
2196
+ commit: {
2274
2197
  type: string;
2275
- maxLength: number;
2276
2198
  };
2277
- avatar: {
2199
+ prev: {
2278
2200
  type: string;
2279
2201
  };
2280
- banner: {
2202
+ blocks: {
2281
2203
  type: string;
2204
+ description: string;
2205
+ maxLength: number;
2282
2206
  };
2283
- followersCount: {
2207
+ ops: {
2284
2208
  type: string;
2209
+ items: {
2210
+ type: string;
2211
+ ref: string;
2212
+ };
2213
+ maxLength: number;
2285
2214
  };
2286
- followsCount: {
2215
+ blobs: {
2287
2216
  type: string;
2217
+ items: {
2218
+ type: string;
2219
+ };
2288
2220
  };
2289
- postsCount: {
2221
+ time: {
2290
2222
  type: string;
2223
+ format: string;
2291
2224
  };
2292
- creator: {
2225
+ };
2226
+ };
2227
+ handle: {
2228
+ type: string;
2229
+ required: string[];
2230
+ properties: {
2231
+ seq: {
2293
2232
  type: string;
2294
2233
  };
2295
- indexedAt: {
2234
+ did: {
2296
2235
  type: string;
2236
+ format: string;
2297
2237
  };
2298
- viewer: {
2238
+ handle: {
2299
2239
  type: string;
2300
- ref: string;
2240
+ format: string;
2301
2241
  };
2302
- myState: {
2242
+ time: {
2303
2243
  type: string;
2304
- ref: string;
2305
- description: string;
2244
+ format: string;
2306
2245
  };
2307
2246
  };
2308
2247
  };
2309
- viewBasic: {
2248
+ migrate: {
2310
2249
  type: string;
2311
2250
  required: string[];
2251
+ nullable: string[];
2312
2252
  properties: {
2313
- did: {
2314
- type: string;
2315
- };
2316
- declaration: {
2253
+ seq: {
2317
2254
  type: string;
2318
- ref: string;
2319
2255
  };
2320
- handle: {
2256
+ did: {
2321
2257
  type: string;
2258
+ format: string;
2322
2259
  };
2323
- displayName: {
2260
+ migrateTo: {
2324
2261
  type: string;
2325
- maxLength: number;
2326
2262
  };
2327
- description: {
2263
+ time: {
2328
2264
  type: string;
2329
- maxLength: number;
2265
+ format: string;
2330
2266
  };
2331
- avatar: {
2267
+ };
2268
+ };
2269
+ tombstone: {
2270
+ type: string;
2271
+ required: string[];
2272
+ properties: {
2273
+ seq: {
2332
2274
  type: string;
2333
2275
  };
2334
- indexedAt: {
2276
+ did: {
2335
2277
  type: string;
2278
+ format: string;
2336
2279
  };
2337
- viewer: {
2280
+ time: {
2338
2281
  type: string;
2339
- ref: string;
2282
+ format: string;
2340
2283
  };
2341
2284
  };
2342
2285
  };
2343
- viewerState: {
2286
+ info: {
2344
2287
  type: string;
2288
+ required: string[];
2345
2289
  properties: {
2346
- muted: {
2347
- type: string;
2348
- };
2349
- following: {
2290
+ name: {
2350
2291
  type: string;
2292
+ knownValues: string[];
2351
2293
  };
2352
- followedBy: {
2294
+ message: {
2353
2295
  type: string;
2354
2296
  };
2355
2297
  };
2356
2298
  };
2357
- myState: {
2299
+ repoOp: {
2358
2300
  type: string;
2359
- description: string;
2301
+ required: string[];
2302
+ nullable: string[];
2360
2303
  properties: {
2361
- follow: {
2304
+ action: {
2362
2305
  type: string;
2306
+ knownValues: string[];
2363
2307
  };
2364
- muted: {
2308
+ path: {
2309
+ type: string;
2310
+ };
2311
+ cid: {
2365
2312
  type: string;
2366
2313
  };
2367
2314
  };
2368
2315
  };
2369
2316
  };
2370
2317
  };
2371
- AppBskyActorRef: {
2318
+ AppBskyActorDefs: {
2372
2319
  lexicon: number;
2373
2320
  id: string;
2374
2321
  description: string;
2375
2322
  defs: {
2376
- main: {
2323
+ profileViewBasic: {
2377
2324
  type: string;
2378
2325
  required: string[];
2379
2326
  properties: {
2380
2327
  did: {
2381
2328
  type: string;
2329
+ format: string;
2330
+ };
2331
+ handle: {
2332
+ type: string;
2333
+ format: string;
2334
+ };
2335
+ displayName: {
2336
+ type: string;
2337
+ maxLength: number;
2338
+ };
2339
+ avatar: {
2340
+ type: string;
2382
2341
  };
2383
- declarationCid: {
2342
+ viewer: {
2384
2343
  type: string;
2344
+ ref: string;
2385
2345
  };
2386
2346
  };
2387
2347
  };
2388
- withInfo: {
2348
+ profileView: {
2389
2349
  type: string;
2390
2350
  required: string[];
2391
2351
  properties: {
2392
2352
  did: {
2393
2353
  type: string;
2354
+ format: string;
2355
+ };
2356
+ handle: {
2357
+ type: string;
2358
+ format: string;
2359
+ };
2360
+ displayName: {
2361
+ type: string;
2362
+ maxLength: number;
2363
+ };
2364
+ description: {
2365
+ type: string;
2366
+ maxLength: number;
2367
+ };
2368
+ avatar: {
2369
+ type: string;
2370
+ };
2371
+ indexedAt: {
2372
+ type: string;
2373
+ format: string;
2394
2374
  };
2395
- declaration: {
2375
+ viewer: {
2396
2376
  type: string;
2397
2377
  ref: string;
2398
2378
  };
2379
+ };
2380
+ };
2381
+ profileViewDetailed: {
2382
+ type: string;
2383
+ required: string[];
2384
+ properties: {
2385
+ did: {
2386
+ type: string;
2387
+ format: string;
2388
+ };
2399
2389
  handle: {
2400
2390
  type: string;
2391
+ format: string;
2401
2392
  };
2402
2393
  displayName: {
2403
2394
  type: string;
2404
2395
  maxLength: number;
2405
2396
  };
2397
+ description: {
2398
+ type: string;
2399
+ maxLength: number;
2400
+ };
2406
2401
  avatar: {
2407
2402
  type: string;
2408
2403
  };
2404
+ banner: {
2405
+ type: string;
2406
+ };
2407
+ followersCount: {
2408
+ type: string;
2409
+ };
2410
+ followsCount: {
2411
+ type: string;
2412
+ };
2413
+ postsCount: {
2414
+ type: string;
2415
+ };
2416
+ indexedAt: {
2417
+ type: string;
2418
+ format: string;
2419
+ };
2409
2420
  viewer: {
2410
2421
  type: string;
2411
2422
  ref: string;
@@ -2420,15 +2431,82 @@ export declare const schemaDict: {
2420
2431
  };
2421
2432
  following: {
2422
2433
  type: string;
2434
+ format: string;
2435
+ };
2436
+ followedBy: {
2437
+ type: string;
2438
+ format: string;
2439
+ };
2440
+ };
2441
+ };
2442
+ };
2443
+ };
2444
+ AppBskyActorGetProfile: {
2445
+ lexicon: number;
2446
+ id: string;
2447
+ defs: {
2448
+ main: {
2449
+ type: string;
2450
+ parameters: {
2451
+ type: string;
2452
+ required: string[];
2453
+ properties: {
2454
+ actor: {
2455
+ type: string;
2456
+ format: string;
2457
+ };
2458
+ };
2459
+ };
2460
+ output: {
2461
+ encoding: string;
2462
+ schema: {
2463
+ type: string;
2464
+ ref: string;
2465
+ };
2466
+ };
2467
+ };
2468
+ };
2469
+ };
2470
+ AppBskyActorGetProfiles: {
2471
+ lexicon: number;
2472
+ id: string;
2473
+ defs: {
2474
+ main: {
2475
+ type: string;
2476
+ parameters: {
2477
+ type: string;
2478
+ required: string[];
2479
+ properties: {
2480
+ actors: {
2481
+ type: string;
2482
+ items: {
2483
+ type: string;
2484
+ format: string;
2485
+ };
2486
+ maxLength: number;
2487
+ };
2423
2488
  };
2424
- followedBy: {
2489
+ };
2490
+ output: {
2491
+ encoding: string;
2492
+ schema: {
2425
2493
  type: string;
2494
+ required: string[];
2495
+ properties: {
2496
+ profiles: {
2497
+ type: string;
2498
+ items: {
2499
+ type: string;
2500
+ ref: string;
2501
+ };
2502
+ };
2503
+ };
2426
2504
  };
2427
2505
  };
2428
2506
  };
2429
2507
  };
2430
2508
  };
2431
- AppBskyActorSearch: {
2509
+ AppBskyActorGetSuggestions: {
2432
2510
  lexicon: number;
2433
2511
  id: string;
2434
2512
  defs: {
@@ -2438,16 +2516,13 @@ export declare const schemaDict: {
2438
2516
  parameters: {
2439
2517
  type: string;
2440
2518
  properties: {
2441
- term: {
2442
- type: string;
2443
- };
2444
2519
  limit: {
2445
2520
  type: string;
2446
2521
  minimum: number;
2447
2522
  maximum: number;
2448
2523
  default: number;
2449
2524
  };
2450
- before: {
2525
+ cursor: {
2451
2526
  type: string;
2452
2527
  };
2453
2528
  };
@@ -2461,7 +2536,7 @@ export declare const schemaDict: {
2461
2536
  cursor: {
2462
2537
  type: string;
2463
2538
  };
2464
- users: {
2539
+ actors: {
2465
2540
  type: string;
2466
2541
  items: {
2467
2542
  type: string;
@@ -2474,7 +2549,40 @@ export declare const schemaDict: {
2474
2549
  };
2475
2550
  };
2476
2551
  };
2477
- AppBskyActorSearchTypeahead: {
2552
+ AppBskyActorProfile: {
2553
+ lexicon: number;
2554
+ id: string;
2555
+ defs: {
2556
+ main: {
2557
+ type: string;
2558
+ key: string;
2559
+ record: {
2560
+ type: string;
2561
+ properties: {
2562
+ displayName: {
2563
+ type: string;
2564
+ maxLength: number;
2565
+ };
2566
+ description: {
2567
+ type: string;
2568
+ maxLength: number;
2569
+ };
2570
+ avatar: {
2571
+ type: string;
2572
+ accept: string[];
2573
+ maxSize: number;
2574
+ };
2575
+ banner: {
2576
+ type: string;
2577
+ accept: string[];
2578
+ maxSize: number;
2579
+ };
2580
+ };
2581
+ };
2582
+ };
2583
+ };
2584
+ };
2585
+ AppBskyActorSearchActors: {
2478
2586
  lexicon: number;
2479
2587
  id: string;
2480
2588
  defs: {
@@ -2493,6 +2601,9 @@ export declare const schemaDict: {
2493
2601
  maximum: number;
2494
2602
  default: number;
2495
2603
  };
2604
+ cursor: {
2605
+ type: string;
2606
+ };
2496
2607
  };
2497
2608
  };
2498
2609
  output: {
@@ -2501,7 +2612,10 @@ export declare const schemaDict: {
2501
2612
  type: string;
2502
2613
  required: string[];
2503
2614
  properties: {
2504
- users: {
2615
+ cursor: {
2616
+ type: string;
2617
+ };
2618
+ actors: {
2505
2619
  type: string;
2506
2620
  items: {
2507
2621
  type: string;
@@ -2514,40 +2628,24 @@ export declare const schemaDict: {
2514
2628
  };
2515
2629
  };
2516
2630
  };
2517
- AppBskyActorUpdateProfile: {
2631
+ AppBskyActorSearchActorsTypeahead: {
2518
2632
  lexicon: number;
2519
2633
  id: string;
2520
2634
  defs: {
2521
2635
  main: {
2522
2636
  type: string;
2523
2637
  description: string;
2524
- input: {
2525
- encoding: string;
2526
- schema: {
2527
- type: string;
2528
- properties: {
2529
- displayName: {
2530
- type: string;
2531
- maxLength: number;
2532
- };
2533
- description: {
2534
- type: string;
2535
- maxLength: number;
2536
- };
2537
- avatar: {
2538
- type: string;
2539
- accept: string[];
2540
- maxWidth: number;
2541
- maxHeight: number;
2542
- maxSize: number;
2543
- };
2544
- banner: {
2545
- type: string;
2546
- accept: string[];
2547
- maxWidth: number;
2548
- maxHeight: number;
2549
- maxSize: number;
2550
- };
2638
+ parameters: {
2639
+ type: string;
2640
+ properties: {
2641
+ term: {
2642
+ type: string;
2643
+ };
2644
+ limit: {
2645
+ type: string;
2646
+ minimum: number;
2647
+ maximum: number;
2648
+ default: number;
2551
2649
  };
2552
2650
  };
2553
2651
  };
@@ -2557,21 +2655,16 @@ export declare const schemaDict: {
2557
2655
  type: string;
2558
2656
  required: string[];
2559
2657
  properties: {
2560
- uri: {
2561
- type: string;
2562
- };
2563
- cid: {
2564
- type: string;
2565
- };
2566
- record: {
2658
+ actors: {
2567
2659
  type: string;
2660
+ items: {
2661
+ type: string;
2662
+ ref: string;
2663
+ };
2568
2664
  };
2569
2665
  };
2570
2666
  };
2571
2667
  };
2572
- errors: {
2573
- name: string;
2574
- }[];
2575
2668
  };
2576
2669
  };
2577
2670
  };
@@ -2596,6 +2689,7 @@ export declare const schemaDict: {
2596
2689
  properties: {
2597
2690
  uri: {
2598
2691
  type: string;
2692
+ format: string;
2599
2693
  };
2600
2694
  title: {
2601
2695
  type: string;
@@ -2606,13 +2700,11 @@ export declare const schemaDict: {
2606
2700
  thumb: {
2607
2701
  type: string;
2608
2702
  accept: string[];
2609
- maxWidth: number;
2610
- maxHeight: number;
2611
2703
  maxSize: number;
2612
2704
  };
2613
2705
  };
2614
2706
  };
2615
- presented: {
2707
+ view: {
2616
2708
  type: string;
2617
2709
  required: string[];
2618
2710
  properties: {
@@ -2622,12 +2714,13 @@ export declare const schemaDict: {
2622
2714
  };
2623
2715
  };
2624
2716
  };
2625
- presentedExternal: {
2717
+ viewExternal: {
2626
2718
  type: string;
2627
2719
  required: string[];
2628
2720
  properties: {
2629
2721
  uri: {
2630
2722
  type: string;
2723
+ format: string;
2631
2724
  };
2632
2725
  title: {
2633
2726
  type: string;
@@ -2668,8 +2761,6 @@ export declare const schemaDict: {
2668
2761
  image: {
2669
2762
  type: string;
2670
2763
  accept: string[];
2671
- maxWidth: number;
2672
- maxHeight: number;
2673
2764
  maxSize: number;
2674
2765
  };
2675
2766
  alt: {
@@ -2677,7 +2768,7 @@ export declare const schemaDict: {
2677
2768
  };
2678
2769
  };
2679
2770
  };
2680
- presented: {
2771
+ view: {
2681
2772
  type: string;
2682
2773
  required: string[];
2683
2774
  properties: {
@@ -2691,7 +2782,7 @@ export declare const schemaDict: {
2691
2782
  };
2692
2783
  };
2693
2784
  };
2694
- presentedImage: {
2785
+ viewImage: {
2695
2786
  type: string;
2696
2787
  required: string[];
2697
2788
  properties: {
@@ -2708,138 +2799,214 @@ export declare const schemaDict: {
2708
2799
  };
2709
2800
  };
2710
2801
  };
2711
- AppBskyFeedFeedViewPost: {
2802
+ AppBskyEmbedRecord: {
2712
2803
  lexicon: number;
2713
2804
  id: string;
2805
+ description: string;
2714
2806
  defs: {
2715
2807
  main: {
2716
2808
  type: string;
2717
2809
  required: string[];
2718
2810
  properties: {
2719
- post: {
2811
+ record: {
2720
2812
  type: string;
2721
2813
  ref: string;
2722
2814
  };
2723
- reply: {
2815
+ };
2816
+ };
2817
+ view: {
2818
+ type: string;
2819
+ required: string[];
2820
+ properties: {
2821
+ record: {
2822
+ type: string;
2823
+ refs: string[];
2824
+ };
2825
+ };
2826
+ };
2827
+ viewRecord: {
2828
+ type: string;
2829
+ required: string[];
2830
+ properties: {
2831
+ uri: {
2832
+ type: string;
2833
+ format: string;
2834
+ };
2835
+ cid: {
2836
+ type: string;
2837
+ format: string;
2838
+ };
2839
+ author: {
2724
2840
  type: string;
2725
2841
  ref: string;
2726
2842
  };
2727
- reason: {
2843
+ value: {
2728
2844
  type: string;
2729
- refs: string[];
2845
+ };
2846
+ embeds: {
2847
+ type: string;
2848
+ items: {
2849
+ type: string;
2850
+ refs: string[];
2851
+ };
2852
+ };
2853
+ indexedAt: {
2854
+ type: string;
2855
+ format: string;
2730
2856
  };
2731
2857
  };
2732
2858
  };
2733
- replyRef: {
2859
+ viewNotFound: {
2734
2860
  type: string;
2735
2861
  required: string[];
2736
2862
  properties: {
2737
- root: {
2863
+ uri: {
2738
2864
  type: string;
2739
- ref: string;
2865
+ format: string;
2740
2866
  };
2741
- parent: {
2867
+ };
2868
+ };
2869
+ };
2870
+ };
2871
+ AppBskyEmbedRecordWithMedia: {
2872
+ lexicon: number;
2873
+ id: string;
2874
+ description: string;
2875
+ defs: {
2876
+ main: {
2877
+ type: string;
2878
+ required: string[];
2879
+ properties: {
2880
+ record: {
2742
2881
  type: string;
2743
2882
  ref: string;
2744
2883
  };
2884
+ media: {
2885
+ type: string;
2886
+ refs: string[];
2887
+ };
2745
2888
  };
2746
2889
  };
2747
- reasonRepost: {
2890
+ view: {
2748
2891
  type: string;
2749
2892
  required: string[];
2750
2893
  properties: {
2751
- by: {
2894
+ record: {
2752
2895
  type: string;
2753
2896
  ref: string;
2754
2897
  };
2755
- indexedAt: {
2898
+ media: {
2756
2899
  type: string;
2900
+ refs: string[];
2757
2901
  };
2758
2902
  };
2759
2903
  };
2760
2904
  };
2761
2905
  };
2762
- AppBskyFeedGetAuthorFeed: {
2906
+ AppBskyFeedDefs: {
2763
2907
  lexicon: number;
2764
2908
  id: string;
2765
2909
  defs: {
2766
- main: {
2910
+ postView: {
2767
2911
  type: string;
2768
- description: string;
2769
- parameters: {
2770
- type: string;
2771
- required: string[];
2772
- properties: {
2773
- author: {
2774
- type: string;
2775
- };
2776
- limit: {
2777
- type: string;
2778
- minimum: number;
2779
- maximum: number;
2780
- default: number;
2781
- };
2782
- before: {
2783
- type: string;
2784
- };
2912
+ required: string[];
2913
+ properties: {
2914
+ uri: {
2915
+ type: string;
2916
+ format: string;
2917
+ };
2918
+ cid: {
2919
+ type: string;
2920
+ format: string;
2921
+ };
2922
+ author: {
2923
+ type: string;
2924
+ ref: string;
2925
+ };
2926
+ record: {
2927
+ type: string;
2928
+ };
2929
+ embed: {
2930
+ type: string;
2931
+ refs: string[];
2932
+ };
2933
+ replyCount: {
2934
+ type: string;
2935
+ };
2936
+ repostCount: {
2937
+ type: string;
2938
+ };
2939
+ likeCount: {
2940
+ type: string;
2941
+ };
2942
+ indexedAt: {
2943
+ type: string;
2944
+ format: string;
2945
+ };
2946
+ viewer: {
2947
+ type: string;
2948
+ ref: string;
2949
+ };
2950
+ };
2951
+ };
2952
+ viewerState: {
2953
+ type: string;
2954
+ properties: {
2955
+ repost: {
2956
+ type: string;
2957
+ format: string;
2958
+ };
2959
+ like: {
2960
+ type: string;
2961
+ format: string;
2962
+ };
2963
+ };
2964
+ };
2965
+ feedViewPost: {
2966
+ type: string;
2967
+ required: string[];
2968
+ properties: {
2969
+ post: {
2970
+ type: string;
2971
+ ref: string;
2972
+ };
2973
+ reply: {
2974
+ type: string;
2975
+ ref: string;
2976
+ };
2977
+ reason: {
2978
+ type: string;
2979
+ refs: string[];
2980
+ };
2981
+ };
2982
+ };
2983
+ replyRef: {
2984
+ type: string;
2985
+ required: string[];
2986
+ properties: {
2987
+ root: {
2988
+ type: string;
2989
+ ref: string;
2785
2990
  };
2786
- };
2787
- output: {
2788
- encoding: string;
2789
- schema: {
2991
+ parent: {
2790
2992
  type: string;
2791
- required: string[];
2792
- properties: {
2793
- cursor: {
2794
- type: string;
2795
- };
2796
- feed: {
2797
- type: string;
2798
- items: {
2799
- type: string;
2800
- ref: string;
2801
- };
2802
- };
2803
- };
2993
+ ref: string;
2804
2994
  };
2805
2995
  };
2806
2996
  };
2807
- };
2808
- };
2809
- AppBskyFeedGetPostThread: {
2810
- lexicon: number;
2811
- id: string;
2812
- defs: {
2813
- main: {
2997
+ reasonRepost: {
2814
2998
  type: string;
2815
- parameters: {
2816
- type: string;
2817
- required: string[];
2818
- properties: {
2819
- uri: {
2820
- type: string;
2821
- };
2822
- depth: {
2823
- type: string;
2824
- };
2999
+ required: string[];
3000
+ properties: {
3001
+ by: {
3002
+ type: string;
3003
+ ref: string;
2825
3004
  };
2826
- };
2827
- output: {
2828
- encoding: string;
2829
- schema: {
3005
+ indexedAt: {
2830
3006
  type: string;
2831
- required: string[];
2832
- properties: {
2833
- thread: {
2834
- type: string;
2835
- refs: string[];
2836
- };
2837
- };
3007
+ format: string;
2838
3008
  };
2839
3009
  };
2840
- errors: {
2841
- name: string;
2842
- }[];
2843
3010
  };
2844
3011
  threadViewPost: {
2845
3012
  type: string;
@@ -2868,6 +3035,7 @@ export declare const schemaDict: {
2868
3035
  properties: {
2869
3036
  uri: {
2870
3037
  type: string;
3038
+ format: string;
2871
3039
  };
2872
3040
  notFound: {
2873
3041
  type: string;
@@ -2877,62 +3045,7 @@ export declare const schemaDict: {
2877
3045
  };
2878
3046
  };
2879
3047
  };
2880
- AppBskyFeedGetRepostedBy: {
2881
- lexicon: number;
2882
- id: string;
2883
- defs: {
2884
- main: {
2885
- type: string;
2886
- parameters: {
2887
- type: string;
2888
- required: string[];
2889
- properties: {
2890
- uri: {
2891
- type: string;
2892
- };
2893
- cid: {
2894
- type: string;
2895
- };
2896
- limit: {
2897
- type: string;
2898
- minimum: number;
2899
- maximum: number;
2900
- default: number;
2901
- };
2902
- before: {
2903
- type: string;
2904
- };
2905
- };
2906
- };
2907
- output: {
2908
- encoding: string;
2909
- schema: {
2910
- type: string;
2911
- required: string[];
2912
- properties: {
2913
- uri: {
2914
- type: string;
2915
- };
2916
- cid: {
2917
- type: string;
2918
- };
2919
- cursor: {
2920
- type: string;
2921
- };
2922
- repostedBy: {
2923
- type: string;
2924
- items: {
2925
- type: string;
2926
- ref: string;
2927
- };
2928
- };
2929
- };
2930
- };
2931
- };
2932
- };
2933
- };
2934
- };
2935
- AppBskyFeedGetTimeline: {
3048
+ AppBskyFeedGetAuthorFeed: {
2936
3049
  lexicon: number;
2937
3050
  id: string;
2938
3051
  defs: {
@@ -2941,9 +3054,11 @@ export declare const schemaDict: {
2941
3054
  description: string;
2942
3055
  parameters: {
2943
3056
  type: string;
3057
+ required: string[];
2944
3058
  properties: {
2945
- algorithm: {
3059
+ actor: {
2946
3060
  type: string;
3061
+ format: string;
2947
3062
  };
2948
3063
  limit: {
2949
3064
  type: string;
@@ -2951,7 +3066,7 @@ export declare const schemaDict: {
2951
3066
  maximum: number;
2952
3067
  default: number;
2953
3068
  };
2954
- before: {
3069
+ cursor: {
2955
3070
  type: string;
2956
3071
  };
2957
3072
  };
@@ -2978,7 +3093,7 @@ export declare const schemaDict: {
2978
3093
  };
2979
3094
  };
2980
3095
  };
2981
- AppBskyFeedGetVotes: {
3096
+ AppBskyFeedGetLikes: {
2982
3097
  lexicon: number;
2983
3098
  id: string;
2984
3099
  defs: {
@@ -2990,13 +3105,11 @@ export declare const schemaDict: {
2990
3105
  properties: {
2991
3106
  uri: {
2992
3107
  type: string;
3108
+ format: string;
2993
3109
  };
2994
3110
  cid: {
2995
3111
  type: string;
2996
- };
2997
- direction: {
2998
- type: string;
2999
- enum: string[];
3112
+ format: string;
3000
3113
  };
3001
3114
  limit: {
3002
3115
  type: string;
@@ -3004,7 +3117,7 @@ export declare const schemaDict: {
3004
3117
  maximum: number;
3005
3118
  default: number;
3006
3119
  };
3007
- before: {
3120
+ cursor: {
3008
3121
  type: string;
3009
3122
  };
3010
3123
  };
@@ -3017,14 +3130,16 @@ export declare const schemaDict: {
3017
3130
  properties: {
3018
3131
  uri: {
3019
3132
  type: string;
3133
+ format: string;
3020
3134
  };
3021
3135
  cid: {
3022
3136
  type: string;
3137
+ format: string;
3023
3138
  };
3024
3139
  cursor: {
3025
3140
  type: string;
3026
3141
  };
3027
- votes: {
3142
+ likes: {
3028
3143
  type: string;
3029
3144
  items: {
3030
3145
  type: string;
@@ -3035,19 +3150,17 @@ export declare const schemaDict: {
3035
3150
  };
3036
3151
  };
3037
3152
  };
3038
- vote: {
3153
+ like: {
3039
3154
  type: string;
3040
3155
  required: string[];
3041
3156
  properties: {
3042
- direction: {
3043
- type: string;
3044
- enum: string[];
3045
- };
3046
3157
  indexedAt: {
3047
3158
  type: string;
3159
+ format: string;
3048
3160
  };
3049
3161
  createdAt: {
3050
3162
  type: string;
3163
+ format: string;
3051
3164
  };
3052
3165
  actor: {
3053
3166
  type: string;
@@ -3057,203 +3170,142 @@ export declare const schemaDict: {
3057
3170
  };
3058
3171
  };
3059
3172
  };
3060
- AppBskyFeedPost: {
3173
+ AppBskyFeedGetPostThread: {
3061
3174
  lexicon: number;
3062
3175
  id: string;
3063
3176
  defs: {
3064
3177
  main: {
3065
3178
  type: string;
3066
- key: string;
3067
- record: {
3179
+ parameters: {
3068
3180
  type: string;
3069
3181
  required: string[];
3070
3182
  properties: {
3071
- text: {
3072
- type: string;
3073
- maxLength: number;
3074
- };
3075
- entities: {
3076
- type: string;
3077
- items: {
3078
- type: string;
3079
- ref: string;
3080
- };
3081
- };
3082
- reply: {
3083
- type: string;
3084
- ref: string;
3085
- };
3086
- embed: {
3183
+ uri: {
3087
3184
  type: string;
3088
- refs: string[];
3185
+ format: string;
3089
3186
  };
3090
- createdAt: {
3187
+ depth: {
3091
3188
  type: string;
3092
3189
  };
3093
3190
  };
3094
3191
  };
3095
- };
3096
- replyRef: {
3097
- type: string;
3098
- required: string[];
3099
- properties: {
3100
- root: {
3101
- type: string;
3102
- ref: string;
3103
- };
3104
- parent: {
3105
- type: string;
3106
- ref: string;
3107
- };
3108
- };
3109
- };
3110
- entity: {
3111
- type: string;
3112
- required: string[];
3113
- properties: {
3114
- index: {
3115
- type: string;
3116
- ref: string;
3117
- };
3118
- type: {
3119
- type: string;
3120
- description: string;
3121
- };
3122
- value: {
3123
- type: string;
3124
- };
3125
- };
3126
- };
3127
- textSlice: {
3128
- type: string;
3129
- description: string;
3130
- required: string[];
3131
- properties: {
3132
- start: {
3133
- type: string;
3134
- minimum: number;
3135
- };
3136
- end: {
3137
- type: string;
3138
- minimum: number;
3139
- };
3140
- };
3141
- };
3142
- view: {
3143
- type: string;
3144
- required: string[];
3145
- properties: {
3146
- uri: {
3147
- type: string;
3148
- };
3149
- cid: {
3150
- type: string;
3151
- };
3152
- author: {
3153
- type: string;
3154
- ref: string;
3155
- };
3156
- record: {
3157
- type: string;
3158
- };
3159
- embed: {
3160
- type: string;
3161
- refs: string[];
3162
- };
3163
- replyCount: {
3164
- type: string;
3165
- };
3166
- repostCount: {
3167
- type: string;
3168
- };
3169
- upvoteCount: {
3170
- type: string;
3171
- };
3172
- downvoteCount: {
3173
- type: string;
3174
- };
3175
- indexedAt: {
3176
- type: string;
3177
- };
3178
- viewer: {
3179
- type: string;
3180
- ref: string;
3181
- };
3182
- };
3183
- };
3184
- viewerState: {
3185
- type: string;
3186
- properties: {
3187
- repost: {
3188
- type: string;
3189
- };
3190
- upvote: {
3191
- type: string;
3192
- };
3193
- downvote: {
3192
+ output: {
3193
+ encoding: string;
3194
+ schema: {
3194
3195
  type: string;
3196
+ required: string[];
3197
+ properties: {
3198
+ thread: {
3199
+ type: string;
3200
+ refs: string[];
3201
+ };
3202
+ };
3195
3203
  };
3196
3204
  };
3205
+ errors: {
3206
+ name: string;
3207
+ }[];
3197
3208
  };
3198
3209
  };
3199
3210
  };
3200
- AppBskyFeedRepost: {
3211
+ AppBskyFeedGetRepostedBy: {
3201
3212
  lexicon: number;
3202
3213
  id: string;
3203
3214
  defs: {
3204
3215
  main: {
3205
3216
  type: string;
3206
- key: string;
3207
- record: {
3217
+ parameters: {
3208
3218
  type: string;
3209
3219
  required: string[];
3210
3220
  properties: {
3211
- subject: {
3221
+ uri: {
3212
3222
  type: string;
3213
- ref: string;
3223
+ format: string;
3214
3224
  };
3215
- createdAt: {
3225
+ cid: {
3226
+ type: string;
3227
+ format: string;
3228
+ };
3229
+ limit: {
3230
+ type: string;
3231
+ minimum: number;
3232
+ maximum: number;
3233
+ default: number;
3234
+ };
3235
+ cursor: {
3216
3236
  type: string;
3217
3237
  };
3218
3238
  };
3219
3239
  };
3220
- };
3221
- };
3222
- };
3223
- AppBskyFeedSetVote: {
3224
- lexicon: number;
3225
- id: string;
3226
- defs: {
3227
- main: {
3228
- type: string;
3229
- description: string;
3230
- input: {
3240
+ output: {
3231
3241
  encoding: string;
3232
3242
  schema: {
3233
3243
  type: string;
3234
3244
  required: string[];
3235
3245
  properties: {
3236
- subject: {
3246
+ uri: {
3237
3247
  type: string;
3238
- ref: string;
3248
+ format: string;
3249
+ };
3250
+ cid: {
3251
+ type: string;
3252
+ format: string;
3239
3253
  };
3240
- direction: {
3254
+ cursor: {
3255
+ type: string;
3256
+ };
3257
+ repostedBy: {
3241
3258
  type: string;
3242
- enum: string[];
3259
+ items: {
3260
+ type: string;
3261
+ ref: string;
3262
+ };
3243
3263
  };
3244
3264
  };
3245
3265
  };
3246
3266
  };
3267
+ };
3268
+ };
3269
+ };
3270
+ AppBskyFeedGetTimeline: {
3271
+ lexicon: number;
3272
+ id: string;
3273
+ defs: {
3274
+ main: {
3275
+ type: string;
3276
+ description: string;
3277
+ parameters: {
3278
+ type: string;
3279
+ properties: {
3280
+ algorithm: {
3281
+ type: string;
3282
+ };
3283
+ limit: {
3284
+ type: string;
3285
+ minimum: number;
3286
+ maximum: number;
3287
+ default: number;
3288
+ };
3289
+ cursor: {
3290
+ type: string;
3291
+ };
3292
+ };
3293
+ };
3247
3294
  output: {
3248
3295
  encoding: string;
3249
3296
  schema: {
3250
3297
  type: string;
3298
+ required: string[];
3251
3299
  properties: {
3252
- upvote: {
3300
+ cursor: {
3253
3301
  type: string;
3254
3302
  };
3255
- downvote: {
3303
+ feed: {
3256
3304
  type: string;
3305
+ items: {
3306
+ type: string;
3307
+ ref: string;
3308
+ };
3257
3309
  };
3258
3310
  };
3259
3311
  };
@@ -3261,7 +3313,7 @@ export declare const schemaDict: {
3261
3313
  };
3262
3314
  };
3263
3315
  };
3264
- AppBskyFeedVote: {
3316
+ AppBskyFeedLike: {
3265
3317
  lexicon: number;
3266
3318
  id: string;
3267
3319
  defs: {
@@ -3276,39 +3328,16 @@ export declare const schemaDict: {
3276
3328
  type: string;
3277
3329
  ref: string;
3278
3330
  };
3279
- direction: {
3280
- type: string;
3281
- enum: string[];
3282
- };
3283
3331
  createdAt: {
3284
3332
  type: string;
3333
+ format: string;
3285
3334
  };
3286
3335
  };
3287
3336
  };
3288
3337
  };
3289
3338
  };
3290
3339
  };
3291
- AppBskyGraphAssertCreator: {
3292
- lexicon: number;
3293
- id: string;
3294
- defs: {
3295
- main: {
3296
- type: string;
3297
- description: string;
3298
- };
3299
- };
3300
- };
3301
- AppBskyGraphAssertMember: {
3302
- lexicon: number;
3303
- id: string;
3304
- defs: {
3305
- main: {
3306
- type: string;
3307
- description: string;
3308
- };
3309
- };
3310
- };
3311
- AppBskyGraphAssertion: {
3340
+ AppBskyFeedPost: {
3312
3341
  lexicon: number;
3313
3342
  id: string;
3314
3343
  defs: {
@@ -3319,22 +3348,91 @@ export declare const schemaDict: {
3319
3348
  type: string;
3320
3349
  required: string[];
3321
3350
  properties: {
3322
- assertion: {
3351
+ text: {
3323
3352
  type: string;
3353
+ maxLength: number;
3354
+ maxGraphemes: number;
3324
3355
  };
3325
- subject: {
3356
+ entities: {
3357
+ type: string;
3358
+ description: string;
3359
+ items: {
3360
+ type: string;
3361
+ ref: string;
3362
+ };
3363
+ };
3364
+ facets: {
3365
+ type: string;
3366
+ items: {
3367
+ type: string;
3368
+ ref: string;
3369
+ };
3370
+ };
3371
+ reply: {
3326
3372
  type: string;
3327
3373
  ref: string;
3328
3374
  };
3375
+ embed: {
3376
+ type: string;
3377
+ refs: string[];
3378
+ };
3329
3379
  createdAt: {
3330
3380
  type: string;
3381
+ format: string;
3331
3382
  };
3332
3383
  };
3333
3384
  };
3334
3385
  };
3386
+ replyRef: {
3387
+ type: string;
3388
+ required: string[];
3389
+ properties: {
3390
+ root: {
3391
+ type: string;
3392
+ ref: string;
3393
+ };
3394
+ parent: {
3395
+ type: string;
3396
+ ref: string;
3397
+ };
3398
+ };
3399
+ };
3400
+ entity: {
3401
+ type: string;
3402
+ description: string;
3403
+ required: string[];
3404
+ properties: {
3405
+ index: {
3406
+ type: string;
3407
+ ref: string;
3408
+ };
3409
+ type: {
3410
+ type: string;
3411
+ description: string;
3412
+ };
3413
+ value: {
3414
+ type: string;
3415
+ };
3416
+ };
3417
+ };
3418
+ textSlice: {
3419
+ type: string;
3420
+ description: string;
3421
+ required: string[];
3422
+ properties: {
3423
+ start: {
3424
+ type: string;
3425
+ minimum: number;
3426
+ };
3427
+ end: {
3428
+ type: string;
3429
+ minimum: number;
3430
+ };
3431
+ };
3432
+ };
3335
3433
  };
3336
3434
  };
3337
- AppBskyGraphConfirmation: {
3435
+ AppBskyFeedRepost: {
3338
3436
  lexicon: number;
3339
3437
  id: string;
3340
3438
  defs: {
@@ -3345,16 +3443,13 @@ export declare const schemaDict: {
3345
3443
  type: string;
3346
3444
  required: string[];
3347
3445
  properties: {
3348
- originator: {
3349
- type: string;
3350
- ref: string;
3351
- };
3352
- assertion: {
3446
+ subject: {
3353
3447
  type: string;
3354
3448
  ref: string;
3355
3449
  };
3356
3450
  createdAt: {
3357
3451
  type: string;
3452
+ format: string;
3358
3453
  };
3359
3454
  };
3360
3455
  };
@@ -3375,10 +3470,11 @@ export declare const schemaDict: {
3375
3470
  properties: {
3376
3471
  subject: {
3377
3472
  type: string;
3378
- ref: string;
3473
+ format: string;
3379
3474
  };
3380
3475
  createdAt: {
3381
3476
  type: string;
3477
+ format: string;
3382
3478
  };
3383
3479
  };
3384
3480
  };
@@ -3396,8 +3492,9 @@ export declare const schemaDict: {
3396
3492
  type: string;
3397
3493
  required: string[];
3398
3494
  properties: {
3399
- user: {
3495
+ actor: {
3400
3496
  type: string;
3497
+ format: string;
3401
3498
  };
3402
3499
  limit: {
3403
3500
  type: string;
@@ -3405,7 +3502,7 @@ export declare const schemaDict: {
3405
3502
  maximum: number;
3406
3503
  default: number;
3407
3504
  };
3408
- before: {
3505
+ cursor: {
3409
3506
  type: string;
3410
3507
  };
3411
3508
  };
@@ -3447,8 +3544,9 @@ export declare const schemaDict: {
3447
3544
  type: string;
3448
3545
  required: string[];
3449
3546
  properties: {
3450
- user: {
3547
+ actor: {
3451
3548
  type: string;
3549
+ format: string;
3452
3550
  };
3453
3551
  limit: {
3454
3552
  type: string;
@@ -3456,7 +3554,7 @@ export declare const schemaDict: {
3456
3554
  maximum: number;
3457
3555
  default: number;
3458
3556
  };
3459
- before: {
3557
+ cursor: {
3460
3558
  type: string;
3461
3559
  };
3462
3560
  };
@@ -3503,7 +3601,7 @@ export declare const schemaDict: {
3503
3601
  maximum: number;
3504
3602
  default: number;
3505
3603
  };
3506
- before: {
3604
+ cursor: {
3507
3605
  type: string;
3508
3606
  };
3509
3607
  };
@@ -3530,7 +3628,7 @@ export declare const schemaDict: {
3530
3628
  };
3531
3629
  };
3532
3630
  };
3533
- AppBskyGraphMute: {
3631
+ AppBskyGraphMuteActor: {
3534
3632
  lexicon: number;
3535
3633
  id: string;
3536
3634
  defs: {
@@ -3543,8 +3641,9 @@ export declare const schemaDict: {
3543
3641
  type: string;
3544
3642
  required: string[];
3545
3643
  properties: {
3546
- user: {
3644
+ actor: {
3547
3645
  type: string;
3646
+ format: string;
3548
3647
  };
3549
3648
  };
3550
3649
  };
@@ -3552,7 +3651,7 @@ export declare const schemaDict: {
3552
3651
  };
3553
3652
  };
3554
3653
  };
3555
- AppBskyGraphUnmute: {
3654
+ AppBskyGraphUnmuteActor: {
3556
3655
  lexicon: number;
3557
3656
  id: string;
3558
3657
  defs: {
@@ -3565,8 +3664,9 @@ export declare const schemaDict: {
3565
3664
  type: string;
3566
3665
  required: string[];
3567
3666
  properties: {
3568
- user: {
3667
+ actor: {
3569
3668
  type: string;
3669
+ format: string;
3570
3670
  };
3571
3671
  };
3572
3672
  };
@@ -3574,7 +3674,7 @@ export declare const schemaDict: {
3574
3674
  };
3575
3675
  };
3576
3676
  };
3577
- AppBskyNotificationGetCount: {
3677
+ AppBskyNotificationGetUnreadCount: {
3578
3678
  lexicon: number;
3579
3679
  id: string;
3580
3680
  defs: {
@@ -3595,7 +3695,7 @@ export declare const schemaDict: {
3595
3695
  };
3596
3696
  };
3597
3697
  };
3598
- AppBskyNotificationList: {
3698
+ AppBskyNotificationListNotifications: {
3599
3699
  lexicon: number;
3600
3700
  id: string;
3601
3701
  defs: {
@@ -3610,7 +3710,7 @@ export declare const schemaDict: {
3610
3710
  maximum: number;
3611
3711
  default: number;
3612
3712
  };
3613
- before: {
3713
+ cursor: {
3614
3714
  type: string;
3615
3715
  };
3616
3716
  };
@@ -3641,9 +3741,11 @@ export declare const schemaDict: {
3641
3741
  properties: {
3642
3742
  uri: {
3643
3743
  type: string;
3744
+ format: string;
3644
3745
  };
3645
3746
  cid: {
3646
3747
  type: string;
3748
+ format: string;
3647
3749
  };
3648
3750
  author: {
3649
3751
  type: string;
@@ -3656,6 +3758,7 @@ export declare const schemaDict: {
3656
3758
  };
3657
3759
  reasonSubject: {
3658
3760
  type: string;
3761
+ format: string;
3659
3762
  };
3660
3763
  record: {
3661
3764
  type: string;
@@ -3665,6 +3768,7 @@ export declare const schemaDict: {
3665
3768
  };
3666
3769
  indexedAt: {
3667
3770
  type: string;
3771
+ format: string;
3668
3772
  };
3669
3773
  };
3670
3774
  };
@@ -3685,6 +3789,7 @@ export declare const schemaDict: {
3685
3789
  properties: {
3686
3790
  seenAt: {
3687
3791
  type: string;
3792
+ format: string;
3688
3793
  };
3689
3794
  };
3690
3795
  };
@@ -3692,51 +3797,103 @@ export declare const schemaDict: {
3692
3797
  };
3693
3798
  };
3694
3799
  };
3695
- AppBskySystemActorUser: {
3800
+ AppBskyRichtextFacet: {
3696
3801
  lexicon: number;
3697
3802
  id: string;
3698
3803
  defs: {
3699
3804
  main: {
3805
+ type: string;
3806
+ required: string[];
3807
+ properties: {
3808
+ index: {
3809
+ type: string;
3810
+ ref: string;
3811
+ };
3812
+ features: {
3813
+ type: string;
3814
+ items: {
3815
+ type: string;
3816
+ refs: string[];
3817
+ };
3818
+ };
3819
+ };
3820
+ };
3821
+ mention: {
3700
3822
  type: string;
3701
3823
  description: string;
3824
+ required: string[];
3825
+ properties: {
3826
+ did: {
3827
+ type: string;
3828
+ format: string;
3829
+ };
3830
+ };
3702
3831
  };
3703
- };
3704
- };
3705
- AppBskySystemDeclRef: {
3706
- lexicon: number;
3707
- id: string;
3708
- defs: {
3709
- main: {
3832
+ link: {
3833
+ type: string;
3710
3834
  description: string;
3835
+ required: string[];
3836
+ properties: {
3837
+ uri: {
3838
+ type: string;
3839
+ format: string;
3840
+ };
3841
+ };
3842
+ };
3843
+ byteSlice: {
3711
3844
  type: string;
3845
+ description: string;
3712
3846
  required: string[];
3713
3847
  properties: {
3714
- cid: {
3848
+ byteStart: {
3715
3849
  type: string;
3850
+ minimum: number;
3716
3851
  };
3717
- actorType: {
3852
+ byteEnd: {
3718
3853
  type: string;
3719
- knownValues: string[];
3854
+ minimum: number;
3720
3855
  };
3721
3856
  };
3722
3857
  };
3723
3858
  };
3724
3859
  };
3725
- AppBskySystemDeclaration: {
3860
+ AppBskyUnspeccedGetPopular: {
3726
3861
  lexicon: number;
3727
3862
  id: string;
3728
3863
  defs: {
3729
3864
  main: {
3730
- description: string;
3731
3865
  type: string;
3732
- key: string;
3733
- record: {
3866
+ description: string;
3867
+ parameters: {
3734
3868
  type: string;
3735
- required: string[];
3736
3869
  properties: {
3737
- actorType: {
3870
+ limit: {
3871
+ type: string;
3872
+ minimum: number;
3873
+ maximum: number;
3874
+ default: number;
3875
+ };
3876
+ cursor: {
3738
3877
  type: string;
3739
- knownValues: string[];
3878
+ };
3879
+ };
3880
+ };
3881
+ output: {
3882
+ encoding: string;
3883
+ schema: {
3884
+ type: string;
3885
+ required: string[];
3886
+ properties: {
3887
+ cursor: {
3888
+ type: string;
3889
+ };
3890
+ feed: {
3891
+ type: string;
3892
+ items: {
3893
+ type: string;
3894
+ ref: string;
3895
+ };
3896
+ };
3740
3897
  };
3741
3898
  };
3742
3899
  };
@@ -3747,89 +3904,81 @@ export declare const schemaDict: {
3747
3904
  export declare const schemas: LexiconDoc[];
3748
3905
  export declare const lexicons: Lexicons;
3749
3906
  export declare const ids: {
3750
- ComAtprotoAccountCreate: string;
3751
- ComAtprotoAccountCreateInviteCode: string;
3752
- ComAtprotoAccountDelete: string;
3753
- ComAtprotoAccountGet: string;
3754
- ComAtprotoAccountRequestDelete: string;
3755
- ComAtprotoAccountRequestPasswordReset: string;
3756
- ComAtprotoAccountResetPassword: string;
3757
- ComAtprotoAdminBlob: string;
3907
+ ComAtprotoAdminDefs: string;
3758
3908
  ComAtprotoAdminGetModerationAction: string;
3759
3909
  ComAtprotoAdminGetModerationActions: string;
3760
3910
  ComAtprotoAdminGetModerationReport: string;
3761
3911
  ComAtprotoAdminGetModerationReports: string;
3762
3912
  ComAtprotoAdminGetRecord: string;
3763
3913
  ComAtprotoAdminGetRepo: string;
3764
- ComAtprotoAdminModerationAction: string;
3765
- ComAtprotoAdminModerationReport: string;
3766
- ComAtprotoAdminRecord: string;
3767
- ComAtprotoAdminRepo: string;
3768
3914
  ComAtprotoAdminResolveModerationReports: string;
3769
3915
  ComAtprotoAdminReverseModerationAction: string;
3770
3916
  ComAtprotoAdminSearchRepos: string;
3771
3917
  ComAtprotoAdminTakeModerationAction: string;
3772
- ComAtprotoBlobUpload: string;
3773
- ComAtprotoHandleResolve: string;
3774
- ComAtprotoHandleUpdate: string;
3775
- ComAtprotoRepoBatchWrite: string;
3918
+ ComAtprotoIdentityResolveHandle: string;
3919
+ ComAtprotoIdentityUpdateHandle: string;
3920
+ ComAtprotoModerationCreateReport: string;
3921
+ ComAtprotoModerationDefs: string;
3922
+ ComAtprotoRepoApplyWrites: string;
3776
3923
  ComAtprotoRepoCreateRecord: string;
3777
3924
  ComAtprotoRepoDeleteRecord: string;
3778
- ComAtprotoRepoDescribe: string;
3925
+ ComAtprotoRepoDescribeRepo: string;
3779
3926
  ComAtprotoRepoGetRecord: string;
3780
3927
  ComAtprotoRepoListRecords: string;
3781
3928
  ComAtprotoRepoPutRecord: string;
3782
- ComAtprotoRepoRecordRef: string;
3783
- ComAtprotoRepoRepoRef: string;
3784
3929
  ComAtprotoRepoStrongRef: string;
3785
- ComAtprotoReportCreate: string;
3786
- ComAtprotoReportReasonType: string;
3787
- ComAtprotoReportSubject: string;
3788
- ComAtprotoServerGetAccountsConfig: string;
3789
- ComAtprotoSessionCreate: string;
3790
- ComAtprotoSessionDelete: string;
3791
- ComAtprotoSessionGet: string;
3792
- ComAtprotoSessionRefresh: string;
3930
+ ComAtprotoRepoUploadBlob: string;
3931
+ ComAtprotoServerCreateAccount: string;
3932
+ ComAtprotoServerCreateInviteCode: string;
3933
+ ComAtprotoServerCreateSession: string;
3934
+ ComAtprotoServerDeleteAccount: string;
3935
+ ComAtprotoServerDeleteSession: string;
3936
+ ComAtprotoServerDescribeServer: string;
3937
+ ComAtprotoServerGetSession: string;
3938
+ ComAtprotoServerRefreshSession: string;
3939
+ ComAtprotoServerRequestAccountDelete: string;
3940
+ ComAtprotoServerRequestPasswordReset: string;
3941
+ ComAtprotoServerResetPassword: string;
3942
+ ComAtprotoSyncGetBlob: string;
3943
+ ComAtprotoSyncGetBlocks: string;
3793
3944
  ComAtprotoSyncGetCheckout: string;
3794
3945
  ComAtprotoSyncGetCommitPath: string;
3795
3946
  ComAtprotoSyncGetHead: string;
3796
3947
  ComAtprotoSyncGetRecord: string;
3797
3948
  ComAtprotoSyncGetRepo: string;
3798
- ComAtprotoSyncSubscribeAllRepos: string;
3949
+ ComAtprotoSyncListBlobs: string;
3950
+ ComAtprotoSyncNotifyOfUpdate: string;
3951
+ ComAtprotoSyncRequestCrawl: string;
3952
+ ComAtprotoSyncSubscribeRepos: string;
3953
+ AppBskyActorDefs: string;
3799
3954
  AppBskyActorGetProfile: string;
3800
3955
  AppBskyActorGetProfiles: string;
3801
3956
  AppBskyActorGetSuggestions: string;
3802
3957
  AppBskyActorProfile: string;
3803
- AppBskyActorRef: string;
3804
- AppBskyActorSearch: string;
3805
- AppBskyActorSearchTypeahead: string;
3806
- AppBskyActorUpdateProfile: string;
3958
+ AppBskyActorSearchActors: string;
3959
+ AppBskyActorSearchActorsTypeahead: string;
3807
3960
  AppBskyEmbedExternal: string;
3808
3961
  AppBskyEmbedImages: string;
3809
- AppBskyFeedFeedViewPost: string;
3962
+ AppBskyEmbedRecord: string;
3963
+ AppBskyEmbedRecordWithMedia: string;
3964
+ AppBskyFeedDefs: string;
3810
3965
  AppBskyFeedGetAuthorFeed: string;
3966
+ AppBskyFeedGetLikes: string;
3811
3967
  AppBskyFeedGetPostThread: string;
3812
3968
  AppBskyFeedGetRepostedBy: string;
3813
3969
  AppBskyFeedGetTimeline: string;
3814
- AppBskyFeedGetVotes: string;
3970
+ AppBskyFeedLike: string;
3815
3971
  AppBskyFeedPost: string;
3816
3972
  AppBskyFeedRepost: string;
3817
- AppBskyFeedSetVote: string;
3818
- AppBskyFeedVote: string;
3819
- AppBskyGraphAssertCreator: string;
3820
- AppBskyGraphAssertMember: string;
3821
- AppBskyGraphAssertion: string;
3822
- AppBskyGraphConfirmation: string;
3823
3973
  AppBskyGraphFollow: string;
3824
3974
  AppBskyGraphGetFollowers: string;
3825
3975
  AppBskyGraphGetFollows: string;
3826
3976
  AppBskyGraphGetMutes: string;
3827
- AppBskyGraphMute: string;
3828
- AppBskyGraphUnmute: string;
3829
- AppBskyNotificationGetCount: string;
3830
- AppBskyNotificationList: string;
3977
+ AppBskyGraphMuteActor: string;
3978
+ AppBskyGraphUnmuteActor: string;
3979
+ AppBskyNotificationGetUnreadCount: string;
3980
+ AppBskyNotificationListNotifications: string;
3831
3981
  AppBskyNotificationUpdateSeen: string;
3832
- AppBskySystemActorUser: string;
3833
- AppBskySystemDeclRef: string;
3834
- AppBskySystemDeclaration: string;
3982
+ AppBskyRichtextFacet: string;
3983
+ AppBskyUnspeccedGetPopular: string;
3835
3984
  };