@atproto/bsky 0.0.15 → 0.0.17

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 (236) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/api/com/atproto/moderation/util.d.ts +4 -3
  3. package/dist/cache/read-through.d.ts +30 -0
  4. package/dist/config.d.ts +18 -0
  5. package/dist/context.d.ts +21 -6
  6. package/dist/daemon/config.d.ts +15 -0
  7. package/dist/daemon/context.d.ts +15 -0
  8. package/dist/daemon/index.d.ts +23 -0
  9. package/dist/daemon/logger.d.ts +3 -0
  10. package/dist/daemon/notifications.d.ts +18 -0
  11. package/dist/daemon/services.d.ts +11 -0
  12. package/dist/db/database-schema.d.ts +1 -2
  13. package/dist/db/index.js +41 -1
  14. package/dist/db/index.js.map +3 -3
  15. package/dist/db/migrations/20231003T202833377Z-create-moderation-subject-status.d.ts +3 -0
  16. package/dist/db/migrations/20231205T000257238Z-remove-did-cache.d.ts +3 -0
  17. package/dist/db/migrations/index.d.ts +2 -0
  18. package/dist/db/pagination.d.ts +2 -1
  19. package/dist/db/{periodic-moderation-action-reversal.d.ts → periodic-moderation-event-reversal.d.ts} +3 -5
  20. package/dist/db/tables/moderation.d.ts +24 -34
  21. package/dist/did-cache.d.ts +10 -7
  22. package/dist/feed-gen/types.d.ts +1 -1
  23. package/dist/index.d.ts +6 -1
  24. package/dist/index.js +4370 -2758
  25. package/dist/index.js.map +3 -3
  26. package/dist/indexer/context.d.ts +2 -0
  27. package/dist/indexer/index.d.ts +1 -0
  28. package/dist/lexicon/index.d.ts +23 -18
  29. package/dist/lexicon/lexicons.d.ts +561 -412
  30. package/dist/lexicon/types/app/bsky/feed/defs.d.ts +1 -7
  31. package/dist/lexicon/types/app/bsky/graph/defs.d.ts +1 -0
  32. package/dist/lexicon/types/com/atproto/admin/defs.d.ts +114 -48
  33. package/dist/lexicon/types/com/atproto/admin/{resolveModerationReports.d.ts → deleteAccount.d.ts} +2 -13
  34. package/dist/lexicon/types/com/atproto/admin/{takeModerationAction.d.ts → emitModerationEvent.d.ts} +5 -6
  35. package/dist/lexicon/types/com/atproto/admin/{getModerationAction.d.ts → getModerationEvent.d.ts} +1 -1
  36. package/dist/lexicon/types/com/atproto/admin/{getModerationActions.d.ts → queryModerationEvents.d.ts} +5 -1
  37. package/dist/lexicon/types/com/atproto/admin/{getModerationReports.d.ts → queryModerationStatuses.d.ts} +12 -6
  38. package/dist/lexicon/types/com/atproto/admin/sendEmail.d.ts +1 -0
  39. package/dist/lexicon/types/com/atproto/{admin/getModerationReport.d.ts → temp/importRepo.d.ts} +10 -7
  40. package/dist/lexicon/types/com/atproto/temp/pushBlob.d.ts +25 -0
  41. package/dist/lexicon/types/com/atproto/{admin/reverseModerationAction.d.ts → temp/transferAccount.d.ts} +11 -5
  42. package/dist/logger.d.ts +1 -0
  43. package/dist/migrate-moderation-data.d.ts +1 -0
  44. package/dist/redis.d.ts +10 -1
  45. package/dist/services/actor/index.d.ts +18 -4
  46. package/dist/services/actor/views.d.ts +6 -8
  47. package/dist/services/feed/index.d.ts +7 -4
  48. package/dist/services/feed/util.d.ts +9 -1
  49. package/dist/services/feed/views.d.ts +11 -21
  50. package/dist/services/graph/index.d.ts +5 -29
  51. package/dist/services/graph/types.d.ts +1 -0
  52. package/dist/services/index.d.ts +3 -7
  53. package/dist/services/label/index.d.ts +10 -4
  54. package/dist/services/moderation/index.d.ts +134 -72
  55. package/dist/services/moderation/pagination.d.ts +36 -0
  56. package/dist/services/moderation/status.d.ts +13 -0
  57. package/dist/services/moderation/types.d.ts +35 -0
  58. package/dist/services/moderation/views.d.ts +18 -14
  59. package/dist/services/types.d.ts +3 -0
  60. package/dist/services/util/notification.d.ts +5 -0
  61. package/dist/services/util/post.d.ts +6 -6
  62. package/dist/util/debug.d.ts +1 -1
  63. package/dist/util/retry.d.ts +1 -6
  64. package/package.json +11 -11
  65. package/src/api/app/bsky/feed/getActorFeeds.ts +2 -1
  66. package/src/api/app/bsky/feed/getActorLikes.ts +1 -3
  67. package/src/api/app/bsky/feed/getAuthorFeed.ts +1 -3
  68. package/src/api/app/bsky/feed/getFeed.ts +9 -9
  69. package/src/api/app/bsky/feed/getFeedGenerator.ts +3 -0
  70. package/src/api/app/bsky/feed/getFeedGenerators.ts +2 -1
  71. package/src/api/app/bsky/feed/getListFeed.ts +1 -3
  72. package/src/api/app/bsky/feed/getPostThread.ts +15 -54
  73. package/src/api/app/bsky/feed/getPosts.ts +21 -18
  74. package/src/api/app/bsky/feed/getSuggestedFeeds.ts +2 -1
  75. package/src/api/app/bsky/feed/getTimeline.ts +1 -3
  76. package/src/api/app/bsky/feed/searchPosts.ts +20 -17
  77. package/src/api/app/bsky/graph/getList.ts +6 -3
  78. package/src/api/app/bsky/graph/getListBlocks.ts +3 -2
  79. package/src/api/app/bsky/graph/getListMutes.ts +2 -1
  80. package/src/api/app/bsky/graph/getLists.ts +2 -1
  81. package/src/api/app/bsky/unspecced/getPopularFeedGenerators.ts +3 -1
  82. package/src/api/blob-resolver.ts +6 -11
  83. package/src/api/com/atproto/admin/emitModerationEvent.ts +220 -0
  84. package/src/api/com/atproto/admin/{getModerationActions.ts → getModerationEvent.ts} +5 -11
  85. package/src/api/com/atproto/admin/getRecord.ts +1 -0
  86. package/src/api/com/atproto/admin/{getModerationReports.ts → queryModerationEvents.ts} +13 -16
  87. package/src/api/com/atproto/admin/queryModerationStatuses.ts +55 -0
  88. package/src/api/com/atproto/moderation/createReport.ts +9 -7
  89. package/src/api/com/atproto/moderation/util.ts +38 -20
  90. package/src/api/index.ts +8 -14
  91. package/src/auth.ts +29 -21
  92. package/src/auto-moderator/index.ts +26 -19
  93. package/src/cache/read-through.ts +151 -0
  94. package/src/config.ts +90 -1
  95. package/src/context.ts +11 -7
  96. package/src/daemon/config.ts +60 -0
  97. package/src/daemon/context.ts +27 -0
  98. package/src/daemon/index.ts +78 -0
  99. package/src/daemon/logger.ts +6 -0
  100. package/src/daemon/notifications.ts +54 -0
  101. package/src/daemon/services.ts +22 -0
  102. package/src/db/database-schema.ts +0 -2
  103. package/src/db/migrations/20231003T202833377Z-create-moderation-subject-status.ts +123 -0
  104. package/src/db/migrations/20231205T000257238Z-remove-did-cache.ts +14 -0
  105. package/src/db/migrations/index.ts +2 -0
  106. package/src/db/pagination.ts +26 -3
  107. package/src/db/{periodic-moderation-action-reversal.ts → periodic-moderation-event-reversal.ts} +50 -46
  108. package/src/db/tables/moderation.ts +35 -52
  109. package/src/did-cache.ts +33 -56
  110. package/src/feed-gen/bsky-team.ts +1 -1
  111. package/src/feed-gen/hot-classic.ts +1 -1
  112. package/src/feed-gen/index.ts +0 -4
  113. package/src/feed-gen/mutuals.ts +6 -2
  114. package/src/feed-gen/types.ts +1 -1
  115. package/src/index.ts +57 -17
  116. package/src/indexer/context.ts +5 -0
  117. package/src/indexer/index.ts +10 -7
  118. package/src/lexicon/index.ts +80 -67
  119. package/src/lexicon/lexicons.ts +698 -507
  120. package/src/lexicon/types/app/bsky/feed/defs.ts +1 -18
  121. package/src/lexicon/types/app/bsky/graph/defs.ts +1 -0
  122. package/src/lexicon/types/com/atproto/admin/defs.ts +276 -84
  123. package/src/lexicon/types/com/atproto/admin/{resolveModerationReports.ts → deleteAccount.ts} +2 -13
  124. package/src/lexicon/types/com/atproto/admin/{takeModerationAction.ts → emitModerationEvent.ts} +13 -11
  125. package/src/lexicon/types/com/atproto/admin/{getModerationReport.ts → getModerationEvent.ts} +1 -1
  126. package/src/lexicon/types/com/atproto/admin/{getModerationActions.ts → queryModerationEvents.ts} +8 -1
  127. package/src/lexicon/types/com/atproto/admin/{getModerationReports.ts → queryModerationStatuses.ts} +21 -14
  128. package/src/lexicon/types/com/atproto/admin/sendEmail.ts +1 -0
  129. package/src/lexicon/types/com/atproto/{admin/getModerationAction.ts → temp/importRepo.ts} +11 -7
  130. package/src/lexicon/types/com/atproto/temp/pushBlob.ts +39 -0
  131. package/src/lexicon/types/com/atproto/{admin/reverseModerationAction.ts → temp/transferAccount.ts} +18 -5
  132. package/src/logger.ts +2 -0
  133. package/src/migrate-moderation-data.ts +414 -0
  134. package/src/redis.ts +43 -3
  135. package/src/services/actor/index.ts +55 -7
  136. package/src/services/actor/views.ts +18 -21
  137. package/src/services/feed/index.ts +52 -19
  138. package/src/services/feed/util.ts +47 -19
  139. package/src/services/feed/views.ts +87 -13
  140. package/src/services/graph/index.ts +21 -3
  141. package/src/services/graph/types.ts +1 -0
  142. package/src/services/index.ts +14 -14
  143. package/src/services/indexing/index.ts +7 -10
  144. package/src/services/indexing/plugins/block.ts +2 -3
  145. package/src/services/indexing/plugins/feed-generator.ts +2 -3
  146. package/src/services/indexing/plugins/follow.ts +2 -3
  147. package/src/services/indexing/plugins/like.ts +2 -3
  148. package/src/services/indexing/plugins/list-block.ts +2 -3
  149. package/src/services/indexing/plugins/list-item.ts +2 -3
  150. package/src/services/indexing/plugins/list.ts +2 -3
  151. package/src/services/indexing/plugins/post.ts +16 -4
  152. package/src/services/indexing/plugins/repost.ts +2 -3
  153. package/src/services/indexing/plugins/thread-gate.ts +2 -3
  154. package/src/services/label/index.ts +68 -25
  155. package/src/services/moderation/index.ts +380 -395
  156. package/src/services/moderation/pagination.ts +96 -0
  157. package/src/services/moderation/status.ts +241 -0
  158. package/src/services/moderation/types.ts +49 -0
  159. package/src/services/moderation/views.ts +278 -329
  160. package/src/services/types.ts +4 -0
  161. package/src/services/util/notification.ts +70 -0
  162. package/src/util/debug.ts +2 -2
  163. package/src/util/retry.ts +1 -44
  164. package/tests/__snapshots__/feed-generation.test.ts.snap +322 -6
  165. package/tests/__snapshots__/indexing.test.ts.snap +0 -6
  166. package/tests/admin/__snapshots__/get-record.test.ts.snap +30 -132
  167. package/tests/admin/__snapshots__/get-repo.test.ts.snap +14 -60
  168. package/tests/admin/__snapshots__/moderation-events.test.ts.snap +146 -0
  169. package/tests/admin/__snapshots__/moderation-statuses.test.ts.snap +64 -0
  170. package/tests/admin/__snapshots__/moderation.test.ts.snap +0 -125
  171. package/tests/admin/get-record.test.ts +5 -9
  172. package/tests/admin/get-repo.test.ts +10 -12
  173. package/tests/admin/moderation-events.test.ts +221 -0
  174. package/tests/admin/moderation-statuses.test.ts +145 -0
  175. package/tests/admin/moderation.test.ts +512 -860
  176. package/tests/admin/repo-search.test.ts +3 -3
  177. package/tests/algos/hot-classic.test.ts +1 -2
  178. package/tests/auth.test.ts +1 -1
  179. package/tests/auto-moderator/fuzzy-matcher.test.ts +2 -1
  180. package/tests/auto-moderator/labeler.test.ts +19 -20
  181. package/tests/auto-moderator/takedowns.test.ts +61 -28
  182. package/tests/blob-resolver.test.ts +4 -2
  183. package/tests/daemon.test.ts +191 -0
  184. package/tests/did-cache.test.ts +20 -5
  185. package/tests/feed-generation.test.ts +57 -9
  186. package/tests/handle-invalidation.test.ts +1 -5
  187. package/tests/indexing.test.ts +20 -13
  188. package/tests/redis-cache.test.ts +231 -0
  189. package/tests/seeds/basic.ts +3 -0
  190. package/tests/subscription/repo.test.ts +4 -7
  191. package/tests/views/__snapshots__/block-lists.test.ts.snap +3 -9
  192. package/tests/views/__snapshots__/blocks.test.ts.snap +0 -9
  193. package/tests/views/__snapshots__/mute-lists.test.ts.snap +5 -5
  194. package/tests/views/__snapshots__/mutes.test.ts.snap +0 -3
  195. package/tests/views/__snapshots__/thread.test.ts.snap +0 -30
  196. package/tests/views/actor-search.test.ts +2 -3
  197. package/tests/views/author-feed.test.ts +42 -36
  198. package/tests/views/follows.test.ts +40 -35
  199. package/tests/views/list-feed.test.ts +17 -9
  200. package/tests/views/notifications.test.ts +13 -9
  201. package/tests/views/profile.test.ts +20 -19
  202. package/tests/views/thread.test.ts +117 -94
  203. package/tests/views/threadgating.test.ts +89 -19
  204. package/tests/views/timeline.test.ts +21 -13
  205. package/dist/api/com/atproto/admin/resolveModerationReports.d.ts +0 -3
  206. package/dist/api/com/atproto/admin/reverseModerationAction.d.ts +0 -3
  207. package/dist/api/com/atproto/admin/takeModerationAction.d.ts +0 -3
  208. package/dist/db/tables/did-cache.d.ts +0 -10
  209. package/dist/feed-gen/best-of-follows.d.ts +0 -29
  210. package/dist/feed-gen/whats-hot.d.ts +0 -29
  211. package/dist/feed-gen/with-friends.d.ts +0 -3
  212. package/dist/label-cache.d.ts +0 -19
  213. package/src/api/com/atproto/admin/getModerationAction.ts +0 -44
  214. package/src/api/com/atproto/admin/getModerationReport.ts +0 -43
  215. package/src/api/com/atproto/admin/resolveModerationReports.ts +0 -24
  216. package/src/api/com/atproto/admin/reverseModerationAction.ts +0 -115
  217. package/src/api/com/atproto/admin/takeModerationAction.ts +0 -156
  218. package/src/db/tables/did-cache.ts +0 -13
  219. package/src/feed-gen/best-of-follows.ts +0 -74
  220. package/src/feed-gen/whats-hot.ts +0 -101
  221. package/src/feed-gen/with-friends.ts +0 -39
  222. package/src/label-cache.ts +0 -90
  223. package/tests/admin/__snapshots__/get-moderation-action.test.ts.snap +0 -172
  224. package/tests/admin/__snapshots__/get-moderation-actions.test.ts.snap +0 -178
  225. package/tests/admin/__snapshots__/get-moderation-report.test.ts.snap +0 -177
  226. package/tests/admin/__snapshots__/get-moderation-reports.test.ts.snap +0 -307
  227. package/tests/admin/get-moderation-action.test.ts +0 -100
  228. package/tests/admin/get-moderation-actions.test.ts +0 -164
  229. package/tests/admin/get-moderation-report.test.ts +0 -100
  230. package/tests/admin/get-moderation-reports.test.ts +0 -332
  231. package/tests/algos/whats-hot.test.ts +0 -118
  232. package/tests/algos/with-friends.test.ts +0 -145
  233. /package/dist/api/com/atproto/admin/{getModerationAction.d.ts → emitModerationEvent.d.ts} +0 -0
  234. /package/dist/api/com/atproto/admin/{getModerationActions.d.ts → getModerationEvent.d.ts} +0 -0
  235. /package/dist/api/com/atproto/admin/{getModerationReport.d.ts → queryModerationEvents.d.ts} +0 -0
  236. /package/dist/api/com/atproto/admin/{getModerationReports.d.ts → queryModerationStatuses.d.ts} +0 -0
@@ -16,20 +16,16 @@ export declare const schemaDict: {
16
16
  };
17
17
  };
18
18
  };
19
- actionView: {
19
+ modEventView: {
20
20
  type: string;
21
21
  required: string[];
22
22
  properties: {
23
23
  id: {
24
24
  type: string;
25
25
  };
26
- action: {
27
- type: string;
28
- ref: string;
29
- };
30
- durationInHours: {
26
+ event: {
31
27
  type: string;
32
- description: string;
28
+ refs: string[];
33
29
  };
34
30
  subject: {
35
31
  type: string;
@@ -41,21 +37,6 @@ export declare const schemaDict: {
41
37
  type: string;
42
38
  };
43
39
  };
44
- createLabelVals: {
45
- type: string;
46
- items: {
47
- type: string;
48
- };
49
- };
50
- negateLabelVals: {
51
- type: string;
52
- items: {
53
- type: string;
54
- };
55
- };
56
- reason: {
57
- type: string;
58
- };
59
40
  createdBy: {
60
41
  type: string;
61
42
  format: string;
@@ -64,32 +45,24 @@ export declare const schemaDict: {
64
45
  type: string;
65
46
  format: string;
66
47
  };
67
- reversal: {
48
+ creatorHandle: {
68
49
  type: string;
69
- ref: string;
70
50
  };
71
- resolvedReportIds: {
51
+ subjectHandle: {
72
52
  type: string;
73
- items: {
74
- type: string;
75
- };
76
53
  };
77
54
  };
78
55
  };
79
- actionViewDetail: {
56
+ modEventViewDetail: {
80
57
  type: string;
81
58
  required: string[];
82
59
  properties: {
83
60
  id: {
84
61
  type: string;
85
62
  };
86
- action: {
87
- type: string;
88
- ref: string;
89
- };
90
- durationInHours: {
63
+ event: {
91
64
  type: string;
92
- description: string;
65
+ refs: string[];
93
66
  };
94
67
  subject: {
95
68
  type: string;
@@ -102,130 +75,114 @@ export declare const schemaDict: {
102
75
  ref: string;
103
76
  };
104
77
  };
105
- createLabelVals: {
78
+ createdBy: {
106
79
  type: string;
107
- items: {
108
- type: string;
109
- };
80
+ format: string;
110
81
  };
111
- negateLabelVals: {
82
+ createdAt: {
112
83
  type: string;
113
- items: {
114
- type: string;
115
- };
84
+ format: string;
116
85
  };
117
- reason: {
86
+ };
87
+ };
88
+ reportView: {
89
+ type: string;
90
+ required: string[];
91
+ properties: {
92
+ id: {
118
93
  type: string;
119
94
  };
120
- createdBy: {
95
+ reasonType: {
121
96
  type: string;
122
- format: string;
97
+ ref: string;
123
98
  };
124
- createdAt: {
99
+ comment: {
100
+ type: string;
101
+ };
102
+ subjectRepoHandle: {
103
+ type: string;
104
+ };
105
+ subject: {
106
+ type: string;
107
+ refs: string[];
108
+ };
109
+ reportedBy: {
125
110
  type: string;
126
111
  format: string;
127
112
  };
128
- reversal: {
113
+ createdAt: {
129
114
  type: string;
130
- ref: string;
115
+ format: string;
131
116
  };
132
- resolvedReports: {
117
+ resolvedByActionIds: {
133
118
  type: string;
134
119
  items: {
135
120
  type: string;
136
- ref: string;
137
121
  };
138
122
  };
139
123
  };
140
124
  };
141
- actionViewCurrent: {
125
+ subjectStatusView: {
142
126
  type: string;
143
127
  required: string[];
144
128
  properties: {
145
129
  id: {
146
130
  type: string;
147
131
  };
148
- action: {
132
+ subject: {
149
133
  type: string;
150
- ref: string;
134
+ refs: string[];
151
135
  };
152
- durationInHours: {
136
+ subjectBlobCids: {
153
137
  type: string;
154
- description: string;
138
+ items: {
139
+ type: string;
140
+ format: string;
141
+ };
155
142
  };
156
- };
157
- };
158
- actionReversal: {
159
- type: string;
160
- required: string[];
161
- properties: {
162
- reason: {
143
+ subjectRepoHandle: {
163
144
  type: string;
164
145
  };
165
- createdBy: {
146
+ updatedAt: {
166
147
  type: string;
167
148
  format: string;
149
+ description: string;
168
150
  };
169
151
  createdAt: {
170
152
  type: string;
171
153
  format: string;
154
+ description: string;
172
155
  };
173
- };
174
- };
175
- actionType: {
176
- type: string;
177
- knownValues: string[];
178
- };
179
- takedown: {
180
- type: string;
181
- description: string;
182
- };
183
- flag: {
184
- type: string;
185
- description: string;
186
- };
187
- acknowledge: {
188
- type: string;
189
- description: string;
190
- };
191
- escalate: {
192
- type: string;
193
- description: string;
194
- };
195
- reportView: {
196
- type: string;
197
- required: string[];
198
- properties: {
199
- id: {
200
- type: string;
201
- };
202
- reasonType: {
156
+ reviewState: {
203
157
  type: string;
204
158
  ref: string;
205
159
  };
206
- reason: {
160
+ comment: {
207
161
  type: string;
162
+ description: string;
208
163
  };
209
- subjectRepoHandle: {
164
+ muteUntil: {
210
165
  type: string;
166
+ format: string;
211
167
  };
212
- subject: {
168
+ lastReviewedBy: {
213
169
  type: string;
214
- refs: string[];
170
+ format: string;
215
171
  };
216
- reportedBy: {
172
+ lastReviewedAt: {
217
173
  type: string;
218
174
  format: string;
219
175
  };
220
- createdAt: {
176
+ lastReportedAt: {
221
177
  type: string;
222
178
  format: string;
223
179
  };
224
- resolvedByActionIds: {
180
+ takendown: {
225
181
  type: string;
226
- items: {
227
- type: string;
228
- };
182
+ };
183
+ suspendUntil: {
184
+ type: string;
185
+ format: string;
229
186
  };
230
187
  };
231
188
  };
@@ -240,13 +197,17 @@ export declare const schemaDict: {
240
197
  type: string;
241
198
  ref: string;
242
199
  };
243
- reason: {
200
+ comment: {
244
201
  type: string;
245
202
  };
246
203
  subject: {
247
204
  type: string;
248
205
  refs: string[];
249
206
  };
207
+ subjectStatus: {
208
+ type: string;
209
+ ref: string;
210
+ };
250
211
  reportedBy: {
251
212
  type: string;
252
213
  format: string;
@@ -536,7 +497,7 @@ export declare const schemaDict: {
536
497
  moderation: {
537
498
  type: string;
538
499
  properties: {
539
- currentAction: {
500
+ subjectStatus: {
540
501
  type: string;
541
502
  ref: string;
542
503
  };
@@ -544,26 +505,11 @@ export declare const schemaDict: {
544
505
  };
545
506
  moderationDetail: {
546
507
  type: string;
547
- required: string[];
548
508
  properties: {
549
- currentAction: {
509
+ subjectStatus: {
550
510
  type: string;
551
511
  ref: string;
552
512
  };
553
- actions: {
554
- type: string;
555
- items: {
556
- type: string;
557
- ref: string;
558
- };
559
- };
560
- reports: {
561
- type: string;
562
- items: {
563
- type: string;
564
- ref: string;
565
- };
566
- };
567
513
  };
568
514
  };
569
515
  blobView: {
@@ -621,159 +567,220 @@ export declare const schemaDict: {
621
567
  };
622
568
  };
623
569
  };
624
- };
625
- };
626
- ComAtprotoAdminDisableAccountInvites: {
627
- lexicon: number;
628
- id: string;
629
- defs: {
630
- main: {
570
+ subjectReviewState: {
571
+ type: string;
572
+ knownValues: string[];
573
+ };
574
+ reviewOpen: {
631
575
  type: string;
632
576
  description: string;
633
- input: {
634
- encoding: string;
635
- schema: {
577
+ };
578
+ reviewEscalated: {
579
+ type: string;
580
+ description: string;
581
+ };
582
+ reviewClosed: {
583
+ type: string;
584
+ description: string;
585
+ };
586
+ modEventTakedown: {
587
+ type: string;
588
+ description: string;
589
+ properties: {
590
+ comment: {
636
591
  type: string;
637
- required: string[];
638
- properties: {
639
- account: {
640
- type: string;
641
- format: string;
642
- };
643
- note: {
644
- type: string;
645
- description: string;
646
- };
647
- };
592
+ };
593
+ durationInHours: {
594
+ type: string;
595
+ description: string;
648
596
  };
649
597
  };
650
598
  };
651
- };
652
- };
653
- ComAtprotoAdminDisableInviteCodes: {
654
- lexicon: number;
655
- id: string;
656
- defs: {
657
- main: {
599
+ modEventReverseTakedown: {
658
600
  type: string;
659
601
  description: string;
660
- input: {
661
- encoding: string;
662
- schema: {
602
+ properties: {
603
+ comment: {
663
604
  type: string;
664
- properties: {
665
- codes: {
666
- type: string;
667
- items: {
668
- type: string;
669
- };
670
- };
671
- accounts: {
672
- type: string;
673
- items: {
674
- type: string;
675
- };
676
- };
677
- };
605
+ description: string;
678
606
  };
679
607
  };
680
608
  };
681
- };
682
- };
683
- ComAtprotoAdminEnableAccountInvites: {
684
- lexicon: number;
685
- id: string;
686
- defs: {
687
- main: {
609
+ modEventComment: {
688
610
  type: string;
689
611
  description: string;
690
- input: {
691
- encoding: string;
692
- schema: {
612
+ required: string[];
613
+ properties: {
614
+ comment: {
693
615
  type: string;
694
- required: string[];
695
- properties: {
696
- account: {
697
- type: string;
698
- format: string;
699
- };
700
- note: {
701
- type: string;
702
- description: string;
703
- };
704
- };
616
+ };
617
+ sticky: {
618
+ type: string;
619
+ description: string;
705
620
  };
706
621
  };
707
622
  };
708
- };
709
- };
710
- ComAtprotoAdminGetAccountInfo: {
711
- lexicon: number;
712
- id: string;
713
- defs: {
714
- main: {
623
+ modEventReport: {
715
624
  type: string;
716
625
  description: string;
717
- parameters: {
718
- type: string;
719
- required: string[];
720
- properties: {
721
- did: {
722
- type: string;
723
- format: string;
626
+ required: string[];
627
+ properties: {
628
+ comment: {
629
+ type: string;
630
+ };
631
+ reportType: {
632
+ type: string;
633
+ ref: string;
634
+ };
635
+ };
636
+ };
637
+ modEventLabel: {
638
+ type: string;
639
+ description: string;
640
+ required: string[];
641
+ properties: {
642
+ comment: {
643
+ type: string;
644
+ };
645
+ createLabelVals: {
646
+ type: string;
647
+ items: {
648
+ type: string;
649
+ };
650
+ };
651
+ negateLabelVals: {
652
+ type: string;
653
+ items: {
654
+ type: string;
724
655
  };
725
656
  };
726
657
  };
727
- output: {
728
- encoding: string;
729
- schema: {
658
+ };
659
+ modEventAcknowledge: {
660
+ type: string;
661
+ properties: {
662
+ comment: {
730
663
  type: string;
731
- ref: string;
664
+ };
665
+ };
666
+ };
667
+ modEventEscalate: {
668
+ type: string;
669
+ properties: {
670
+ comment: {
671
+ type: string;
672
+ };
673
+ };
674
+ };
675
+ modEventMute: {
676
+ type: string;
677
+ description: string;
678
+ required: string[];
679
+ properties: {
680
+ comment: {
681
+ type: string;
682
+ };
683
+ durationInHours: {
684
+ type: string;
685
+ description: string;
686
+ };
687
+ };
688
+ };
689
+ modEventUnmute: {
690
+ type: string;
691
+ description: string;
692
+ properties: {
693
+ comment: {
694
+ type: string;
695
+ description: string;
696
+ };
697
+ };
698
+ };
699
+ modEventEmail: {
700
+ type: string;
701
+ description: string;
702
+ required: string[];
703
+ properties: {
704
+ subjectLine: {
705
+ type: string;
706
+ description: string;
732
707
  };
733
708
  };
734
709
  };
735
710
  };
736
711
  };
737
- ComAtprotoAdminGetInviteCodes: {
712
+ ComAtprotoAdminDeleteAccount: {
738
713
  lexicon: number;
739
714
  id: string;
740
715
  defs: {
741
716
  main: {
742
717
  type: string;
743
718
  description: string;
744
- parameters: {
745
- type: string;
746
- properties: {
747
- sort: {
748
- type: string;
749
- knownValues: string[];
750
- default: string;
751
- };
752
- limit: {
753
- type: string;
754
- minimum: number;
755
- maximum: number;
756
- default: number;
757
- };
758
- cursor: {
759
- type: string;
719
+ input: {
720
+ encoding: string;
721
+ schema: {
722
+ type: string;
723
+ required: string[];
724
+ properties: {
725
+ did: {
726
+ type: string;
727
+ format: string;
728
+ };
760
729
  };
761
730
  };
762
731
  };
763
- output: {
732
+ };
733
+ };
734
+ };
735
+ ComAtprotoAdminDisableAccountInvites: {
736
+ lexicon: number;
737
+ id: string;
738
+ defs: {
739
+ main: {
740
+ type: string;
741
+ description: string;
742
+ input: {
764
743
  encoding: string;
765
744
  schema: {
766
745
  type: string;
767
746
  required: string[];
768
747
  properties: {
769
- cursor: {
748
+ account: {
749
+ type: string;
750
+ format: string;
751
+ };
752
+ note: {
770
753
  type: string;
754
+ description: string;
771
755
  };
756
+ };
757
+ };
758
+ };
759
+ };
760
+ };
761
+ };
762
+ ComAtprotoAdminDisableInviteCodes: {
763
+ lexicon: number;
764
+ id: string;
765
+ defs: {
766
+ main: {
767
+ type: string;
768
+ description: string;
769
+ input: {
770
+ encoding: string;
771
+ schema: {
772
+ type: string;
773
+ properties: {
772
774
  codes: {
773
775
  type: string;
774
776
  items: {
775
777
  type: string;
776
- ref: string;
778
+ };
779
+ };
780
+ accounts: {
781
+ type: string;
782
+ items: {
783
+ type: string;
777
784
  };
778
785
  };
779
786
  };
@@ -782,19 +789,38 @@ export declare const schemaDict: {
782
789
  };
783
790
  };
784
791
  };
785
- ComAtprotoAdminGetModerationAction: {
792
+ ComAtprotoAdminEmitModerationEvent: {
786
793
  lexicon: number;
787
794
  id: string;
788
795
  defs: {
789
796
  main: {
790
797
  type: string;
791
798
  description: string;
792
- parameters: {
793
- type: string;
794
- required: string[];
795
- properties: {
796
- id: {
797
- type: string;
799
+ input: {
800
+ encoding: string;
801
+ schema: {
802
+ type: string;
803
+ required: string[];
804
+ properties: {
805
+ event: {
806
+ type: string;
807
+ refs: string[];
808
+ };
809
+ subject: {
810
+ type: string;
811
+ refs: string[];
812
+ };
813
+ subjectBlobCids: {
814
+ type: string;
815
+ items: {
816
+ type: string;
817
+ format: string;
818
+ };
819
+ };
820
+ createdBy: {
821
+ type: string;
822
+ format: string;
823
+ };
798
824
  };
799
825
  };
800
826
  };
@@ -805,48 +831,32 @@ export declare const schemaDict: {
805
831
  ref: string;
806
832
  };
807
833
  };
834
+ errors: {
835
+ name: string;
836
+ }[];
808
837
  };
809
838
  };
810
839
  };
811
- ComAtprotoAdminGetModerationActions: {
840
+ ComAtprotoAdminEnableAccountInvites: {
812
841
  lexicon: number;
813
842
  id: string;
814
843
  defs: {
815
844
  main: {
816
845
  type: string;
817
846
  description: string;
818
- parameters: {
819
- type: string;
820
- properties: {
821
- subject: {
822
- type: string;
823
- };
824
- limit: {
825
- type: string;
826
- minimum: number;
827
- maximum: number;
828
- default: number;
829
- };
830
- cursor: {
831
- type: string;
832
- };
833
- };
834
- };
835
- output: {
847
+ input: {
836
848
  encoding: string;
837
849
  schema: {
838
850
  type: string;
839
851
  required: string[];
840
852
  properties: {
841
- cursor: {
853
+ account: {
842
854
  type: string;
855
+ format: string;
843
856
  };
844
- actions: {
857
+ note: {
845
858
  type: string;
846
- items: {
847
- type: string;
848
- ref: string;
849
- };
859
+ description: string;
850
860
  };
851
861
  };
852
862
  };
@@ -854,7 +864,7 @@ export declare const schemaDict: {
854
864
  };
855
865
  };
856
866
  };
857
- ComAtprotoAdminGetModerationReport: {
867
+ ComAtprotoAdminGetAccountInfo: {
858
868
  lexicon: number;
859
869
  id: string;
860
870
  defs: {
@@ -865,8 +875,9 @@ export declare const schemaDict: {
865
875
  type: string;
866
876
  required: string[];
867
877
  properties: {
868
- id: {
878
+ did: {
869
879
  type: string;
880
+ format: string;
870
881
  };
871
882
  };
872
883
  };
@@ -880,7 +891,7 @@ export declare const schemaDict: {
880
891
  };
881
892
  };
882
893
  };
883
- ComAtprotoAdminGetModerationReports: {
894
+ ComAtprotoAdminGetInviteCodes: {
884
895
  lexicon: number;
885
896
  id: string;
886
897
  defs: {
@@ -890,33 +901,10 @@ export declare const schemaDict: {
890
901
  parameters: {
891
902
  type: string;
892
903
  properties: {
893
- subject: {
894
- type: string;
895
- };
896
- ignoreSubjects: {
897
- type: string;
898
- items: {
899
- type: string;
900
- };
901
- };
902
- actionedBy: {
903
- type: string;
904
- format: string;
905
- description: string;
906
- };
907
- reporters: {
908
- type: string;
909
- items: {
910
- type: string;
911
- };
912
- description: string;
913
- };
914
- resolved: {
915
- type: string;
916
- };
917
- actionType: {
904
+ sort: {
918
905
  type: string;
919
906
  knownValues: string[];
907
+ default: string;
920
908
  };
921
909
  limit: {
922
910
  type: string;
@@ -927,10 +915,6 @@ export declare const schemaDict: {
927
915
  cursor: {
928
916
  type: string;
929
917
  };
930
- reverse: {
931
- type: string;
932
- description: string;
933
- };
934
918
  };
935
919
  };
936
920
  output: {
@@ -942,7 +926,7 @@ export declare const schemaDict: {
942
926
  cursor: {
943
927
  type: string;
944
928
  };
945
- reports: {
929
+ codes: {
946
930
  type: string;
947
931
  items: {
948
932
  type: string;
@@ -955,6 +939,32 @@ export declare const schemaDict: {
955
939
  };
956
940
  };
957
941
  };
942
+ ComAtprotoAdminGetModerationEvent: {
943
+ lexicon: number;
944
+ id: string;
945
+ defs: {
946
+ main: {
947
+ type: string;
948
+ description: string;
949
+ parameters: {
950
+ type: string;
951
+ required: string[];
952
+ properties: {
953
+ id: {
954
+ type: string;
955
+ };
956
+ };
957
+ };
958
+ output: {
959
+ encoding: string;
960
+ schema: {
961
+ type: string;
962
+ ref: string;
963
+ };
964
+ };
965
+ };
966
+ };
967
+ };
958
968
  ComAtprotoAdminGetRecord: {
959
969
  lexicon: number;
960
970
  id: string;
@@ -1063,78 +1073,177 @@ export declare const schemaDict: {
1063
1073
  };
1064
1074
  };
1065
1075
  };
1066
- ComAtprotoAdminResolveModerationReports: {
1076
+ ComAtprotoAdminQueryModerationEvents: {
1067
1077
  lexicon: number;
1068
1078
  id: string;
1069
1079
  defs: {
1070
1080
  main: {
1071
1081
  type: string;
1072
1082
  description: string;
1073
- input: {
1083
+ parameters: {
1084
+ type: string;
1085
+ properties: {
1086
+ types: {
1087
+ type: string;
1088
+ items: {
1089
+ type: string;
1090
+ };
1091
+ description: string;
1092
+ };
1093
+ createdBy: {
1094
+ type: string;
1095
+ format: string;
1096
+ };
1097
+ sortDirection: {
1098
+ type: string;
1099
+ default: string;
1100
+ enum: string[];
1101
+ description: string;
1102
+ };
1103
+ subject: {
1104
+ type: string;
1105
+ format: string;
1106
+ };
1107
+ includeAllUserRecords: {
1108
+ type: string;
1109
+ default: boolean;
1110
+ description: string;
1111
+ };
1112
+ limit: {
1113
+ type: string;
1114
+ minimum: number;
1115
+ maximum: number;
1116
+ default: number;
1117
+ };
1118
+ cursor: {
1119
+ type: string;
1120
+ };
1121
+ };
1122
+ };
1123
+ output: {
1074
1124
  encoding: string;
1075
1125
  schema: {
1076
1126
  type: string;
1077
1127
  required: string[];
1078
1128
  properties: {
1079
- actionId: {
1129
+ cursor: {
1080
1130
  type: string;
1081
1131
  };
1082
- reportIds: {
1132
+ events: {
1083
1133
  type: string;
1084
1134
  items: {
1085
1135
  type: string;
1136
+ ref: string;
1086
1137
  };
1087
1138
  };
1088
- createdBy: {
1139
+ };
1140
+ };
1141
+ };
1142
+ };
1143
+ };
1144
+ };
1145
+ ComAtprotoAdminQueryModerationStatuses: {
1146
+ lexicon: number;
1147
+ id: string;
1148
+ defs: {
1149
+ main: {
1150
+ type: string;
1151
+ description: string;
1152
+ parameters: {
1153
+ type: string;
1154
+ properties: {
1155
+ subject: {
1156
+ type: string;
1157
+ format: string;
1158
+ };
1159
+ comment: {
1160
+ type: string;
1161
+ description: string;
1162
+ };
1163
+ reportedAfter: {
1164
+ type: string;
1165
+ format: string;
1166
+ description: string;
1167
+ };
1168
+ reportedBefore: {
1169
+ type: string;
1170
+ format: string;
1171
+ description: string;
1172
+ };
1173
+ reviewedAfter: {
1174
+ type: string;
1175
+ format: string;
1176
+ description: string;
1177
+ };
1178
+ reviewedBefore: {
1179
+ type: string;
1180
+ format: string;
1181
+ description: string;
1182
+ };
1183
+ includeMuted: {
1184
+ type: string;
1185
+ description: string;
1186
+ };
1187
+ reviewState: {
1188
+ type: string;
1189
+ description: string;
1190
+ };
1191
+ ignoreSubjects: {
1192
+ type: string;
1193
+ items: {
1089
1194
  type: string;
1090
1195
  format: string;
1091
1196
  };
1092
1197
  };
1198
+ lastReviewedBy: {
1199
+ type: string;
1200
+ format: string;
1201
+ description: string;
1202
+ };
1203
+ sortField: {
1204
+ type: string;
1205
+ default: string;
1206
+ enum: string[];
1207
+ };
1208
+ sortDirection: {
1209
+ type: string;
1210
+ default: string;
1211
+ enum: string[];
1212
+ };
1213
+ takendown: {
1214
+ type: string;
1215
+ description: string;
1216
+ };
1217
+ limit: {
1218
+ type: string;
1219
+ minimum: number;
1220
+ maximum: number;
1221
+ default: number;
1222
+ };
1223
+ cursor: {
1224
+ type: string;
1225
+ };
1093
1226
  };
1094
1227
  };
1095
1228
  output: {
1096
- encoding: string;
1097
- schema: {
1098
- type: string;
1099
- ref: string;
1100
- };
1101
- };
1102
- };
1103
- };
1104
- };
1105
- ComAtprotoAdminReverseModerationAction: {
1106
- lexicon: number;
1107
- id: string;
1108
- defs: {
1109
- main: {
1110
- type: string;
1111
- description: string;
1112
- input: {
1113
1229
  encoding: string;
1114
1230
  schema: {
1115
1231
  type: string;
1116
1232
  required: string[];
1117
1233
  properties: {
1118
- id: {
1119
- type: string;
1120
- };
1121
- reason: {
1234
+ cursor: {
1122
1235
  type: string;
1123
1236
  };
1124
- createdBy: {
1237
+ subjectStatuses: {
1125
1238
  type: string;
1126
- format: string;
1239
+ items: {
1240
+ type: string;
1241
+ ref: string;
1242
+ };
1127
1243
  };
1128
1244
  };
1129
1245
  };
1130
1246
  };
1131
- output: {
1132
- encoding: string;
1133
- schema: {
1134
- type: string;
1135
- ref: string;
1136
- };
1137
- };
1138
1247
  };
1139
1248
  };
1140
1249
  };
@@ -1211,88 +1320,25 @@ export declare const schemaDict: {
1211
1320
  subject: {
1212
1321
  type: string;
1213
1322
  };
1214
- };
1215
- };
1216
- };
1217
- output: {
1218
- encoding: string;
1219
- schema: {
1220
- type: string;
1221
- required: string[];
1222
- properties: {
1223
- sent: {
1323
+ senderDid: {
1224
1324
  type: string;
1325
+ format: string;
1225
1326
  };
1226
1327
  };
1227
1328
  };
1228
1329
  };
1229
- };
1230
- };
1231
- };
1232
- ComAtprotoAdminTakeModerationAction: {
1233
- lexicon: number;
1234
- id: string;
1235
- defs: {
1236
- main: {
1237
- type: string;
1238
- description: string;
1239
- input: {
1330
+ output: {
1240
1331
  encoding: string;
1241
1332
  schema: {
1242
1333
  type: string;
1243
1334
  required: string[];
1244
1335
  properties: {
1245
- action: {
1246
- type: string;
1247
- knownValues: string[];
1248
- };
1249
- subject: {
1250
- type: string;
1251
- refs: string[];
1252
- };
1253
- subjectBlobCids: {
1254
- type: string;
1255
- items: {
1256
- type: string;
1257
- format: string;
1258
- };
1259
- };
1260
- createLabelVals: {
1261
- type: string;
1262
- items: {
1263
- type: string;
1264
- };
1265
- };
1266
- negateLabelVals: {
1267
- type: string;
1268
- items: {
1269
- type: string;
1270
- };
1271
- };
1272
- reason: {
1273
- type: string;
1274
- };
1275
- durationInHours: {
1276
- type: string;
1277
- description: string;
1278
- };
1279
- createdBy: {
1336
+ sent: {
1280
1337
  type: string;
1281
- format: string;
1282
1338
  };
1283
1339
  };
1284
1340
  };
1285
1341
  };
1286
- output: {
1287
- encoding: string;
1288
- schema: {
1289
- type: string;
1290
- ref: string;
1291
- };
1292
- };
1293
- errors: {
1294
- name: string;
1295
- }[];
1296
1342
  };
1297
1343
  };
1298
1344
  };
@@ -3633,6 +3679,113 @@ export declare const schemaDict: {
3633
3679
  };
3634
3680
  };
3635
3681
  };
3682
+ ComAtprotoTempImportRepo: {
3683
+ lexicon: number;
3684
+ id: string;
3685
+ defs: {
3686
+ main: {
3687
+ type: string;
3688
+ description: string;
3689
+ parameters: {
3690
+ type: string;
3691
+ required: string[];
3692
+ properties: {
3693
+ did: {
3694
+ type: string;
3695
+ format: string;
3696
+ description: string;
3697
+ };
3698
+ };
3699
+ };
3700
+ input: {
3701
+ encoding: string;
3702
+ };
3703
+ output: {
3704
+ encoding: string;
3705
+ };
3706
+ };
3707
+ };
3708
+ };
3709
+ ComAtprotoTempPushBlob: {
3710
+ lexicon: number;
3711
+ id: string;
3712
+ defs: {
3713
+ main: {
3714
+ type: string;
3715
+ description: string;
3716
+ parameters: {
3717
+ type: string;
3718
+ required: string[];
3719
+ properties: {
3720
+ did: {
3721
+ type: string;
3722
+ format: string;
3723
+ description: string;
3724
+ };
3725
+ };
3726
+ };
3727
+ input: {
3728
+ encoding: string;
3729
+ };
3730
+ };
3731
+ };
3732
+ };
3733
+ ComAtprotoTempTransferAccount: {
3734
+ lexicon: number;
3735
+ id: string;
3736
+ defs: {
3737
+ main: {
3738
+ type: string;
3739
+ description: string;
3740
+ input: {
3741
+ encoding: string;
3742
+ schema: {
3743
+ type: string;
3744
+ required: string[];
3745
+ properties: {
3746
+ handle: {
3747
+ type: string;
3748
+ format: string;
3749
+ };
3750
+ did: {
3751
+ type: string;
3752
+ format: string;
3753
+ };
3754
+ plcOp: {
3755
+ type: string;
3756
+ };
3757
+ };
3758
+ };
3759
+ };
3760
+ output: {
3761
+ encoding: string;
3762
+ schema: {
3763
+ type: string;
3764
+ required: string[];
3765
+ properties: {
3766
+ accessJwt: {
3767
+ type: string;
3768
+ };
3769
+ refreshJwt: {
3770
+ type: string;
3771
+ };
3772
+ handle: {
3773
+ type: string;
3774
+ format: string;
3775
+ };
3776
+ did: {
3777
+ type: string;
3778
+ format: string;
3779
+ };
3780
+ };
3781
+ };
3782
+ };
3783
+ errors: {
3784
+ name: string;
3785
+ }[];
3786
+ };
3787
+ };
3788
+ };
3636
3789
  AppBskyActorDefs: {
3637
3790
  lexicon: number;
3638
3791
  id: string;
@@ -4555,6 +4708,9 @@ export declare const schemaDict: {
4555
4708
  type: string;
4556
4709
  format: string;
4557
4710
  };
4711
+ replyDisabled: {
4712
+ type: string;
4713
+ };
4558
4714
  };
4559
4715
  };
4560
4716
  feedViewPost: {
@@ -4622,10 +4778,6 @@ export declare const schemaDict: {
4622
4778
  refs: string[];
4623
4779
  };
4624
4780
  };
4625
- viewer: {
4626
- type: string;
4627
- ref: string;
4628
- };
4629
4781
  };
4630
4782
  };
4631
4783
  notFoundPost: {
@@ -4674,14 +4826,6 @@ export declare const schemaDict: {
4674
4826
  };
4675
4827
  };
4676
4828
  };
4677
- viewerThreadState: {
4678
- type: string;
4679
- properties: {
4680
- canReply: {
4681
- type: string;
4682
- };
4683
- };
4684
- };
4685
4829
  generatorView: {
4686
4830
  type: string;
4687
4831
  required: string[];
@@ -5994,6 +6138,10 @@ export declare const schemaDict: {
5994
6138
  type: string;
5995
6139
  required: string[];
5996
6140
  properties: {
6141
+ uri: {
6142
+ type: string;
6143
+ format: string;
6144
+ };
5997
6145
  subject: {
5998
6146
  type: string;
5999
6147
  ref: string;
@@ -7196,23 +7344,21 @@ export declare const schemas: LexiconDoc[];
7196
7344
  export declare const lexicons: Lexicons;
7197
7345
  export declare const ids: {
7198
7346
  ComAtprotoAdminDefs: string;
7347
+ ComAtprotoAdminDeleteAccount: string;
7199
7348
  ComAtprotoAdminDisableAccountInvites: string;
7200
7349
  ComAtprotoAdminDisableInviteCodes: string;
7350
+ ComAtprotoAdminEmitModerationEvent: string;
7201
7351
  ComAtprotoAdminEnableAccountInvites: string;
7202
7352
  ComAtprotoAdminGetAccountInfo: string;
7203
7353
  ComAtprotoAdminGetInviteCodes: string;
7204
- ComAtprotoAdminGetModerationAction: string;
7205
- ComAtprotoAdminGetModerationActions: string;
7206
- ComAtprotoAdminGetModerationReport: string;
7207
- ComAtprotoAdminGetModerationReports: string;
7354
+ ComAtprotoAdminGetModerationEvent: string;
7208
7355
  ComAtprotoAdminGetRecord: string;
7209
7356
  ComAtprotoAdminGetRepo: string;
7210
7357
  ComAtprotoAdminGetSubjectStatus: string;
7211
- ComAtprotoAdminResolveModerationReports: string;
7212
- ComAtprotoAdminReverseModerationAction: string;
7358
+ ComAtprotoAdminQueryModerationEvents: string;
7359
+ ComAtprotoAdminQueryModerationStatuses: string;
7213
7360
  ComAtprotoAdminSearchRepos: string;
7214
7361
  ComAtprotoAdminSendEmail: string;
7215
- ComAtprotoAdminTakeModerationAction: string;
7216
7362
  ComAtprotoAdminUpdateAccountEmail: string;
7217
7363
  ComAtprotoAdminUpdateAccountHandle: string;
7218
7364
  ComAtprotoAdminUpdateSubjectStatus: string;
@@ -7267,6 +7413,9 @@ export declare const ids: {
7267
7413
  ComAtprotoSyncRequestCrawl: string;
7268
7414
  ComAtprotoSyncSubscribeRepos: string;
7269
7415
  ComAtprotoTempFetchLabels: string;
7416
+ ComAtprotoTempImportRepo: string;
7417
+ ComAtprotoTempPushBlob: string;
7418
+ ComAtprotoTempTransferAccount: string;
7270
7419
  AppBskyActorDefs: string;
7271
7420
  AppBskyActorGetPreferences: string;
7272
7421
  AppBskyActorGetProfile: string;