@atproto/bsky 0.0.14 → 0.0.16

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 (195) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/dist/api/app/bsky/feed/searchPosts.d.ts +3 -0
  3. package/dist/api/com/atproto/moderation/util.d.ts +4 -3
  4. package/dist/config.d.ts +2 -2
  5. package/dist/context.d.ts +16 -1
  6. package/dist/db/index.js +26 -1
  7. package/dist/db/index.js.map +3 -3
  8. package/dist/db/migrations/20231003T202833377Z-create-moderation-subject-status.d.ts +3 -0
  9. package/dist/db/migrations/index.d.ts +1 -0
  10. package/dist/db/pagination.d.ts +2 -1
  11. package/dist/db/{periodic-moderation-action-reversal.d.ts → periodic-moderation-event-reversal.d.ts} +3 -5
  12. package/dist/db/tables/moderation.d.ts +24 -34
  13. package/dist/feed-gen/types.d.ts +1 -1
  14. package/dist/index.d.ts +2 -1
  15. package/dist/index.js +3332 -2430
  16. package/dist/index.js.map +3 -3
  17. package/dist/lexicon/index.d.ts +18 -18
  18. package/dist/lexicon/lexicons.d.ts +460 -385
  19. package/dist/lexicon/types/app/bsky/feed/defs.d.ts +1 -7
  20. package/dist/lexicon/types/app/bsky/graph/defs.d.ts +1 -0
  21. package/dist/lexicon/types/com/atproto/admin/defs.d.ts +116 -48
  22. package/dist/lexicon/types/com/atproto/admin/{takeModerationAction.d.ts → emitModerationEvent.d.ts} +5 -6
  23. package/dist/lexicon/types/com/atproto/admin/{getModerationAction.d.ts → getModerationEvent.d.ts} +1 -1
  24. package/dist/lexicon/types/com/atproto/admin/{getModerationActions.d.ts → queryModerationEvents.d.ts} +5 -1
  25. package/dist/lexicon/types/com/atproto/admin/{getModerationReports.d.ts → queryModerationStatuses.d.ts} +12 -6
  26. package/dist/lexicon/types/com/atproto/admin/sendEmail.d.ts +1 -0
  27. package/dist/lexicon/types/com/atproto/{admin/getModerationReport.d.ts → temp/fetchLabels.d.ts} +7 -3
  28. package/dist/migrate-moderation-data.d.ts +1 -0
  29. package/dist/services/actor/views.d.ts +2 -5
  30. package/dist/services/feed/index.d.ts +1 -0
  31. package/dist/services/feed/util.d.ts +9 -1
  32. package/dist/services/feed/views.d.ts +6 -17
  33. package/dist/services/graph/index.d.ts +5 -29
  34. package/dist/services/graph/types.d.ts +1 -0
  35. package/dist/services/moderation/index.d.ts +135 -72
  36. package/dist/services/moderation/pagination.d.ts +36 -0
  37. package/dist/services/moderation/status.d.ts +13 -0
  38. package/dist/services/moderation/types.d.ts +35 -0
  39. package/dist/services/moderation/views.d.ts +18 -14
  40. package/dist/util/debug.d.ts +1 -1
  41. package/package.json +14 -15
  42. package/src/api/app/bsky/actor/getSuggestions.ts +45 -21
  43. package/src/api/app/bsky/feed/getActorFeeds.ts +2 -1
  44. package/src/api/app/bsky/feed/getActorLikes.ts +1 -3
  45. package/src/api/app/bsky/feed/getAuthorFeed.ts +1 -3
  46. package/src/api/app/bsky/feed/getFeed.ts +9 -9
  47. package/src/api/app/bsky/feed/getFeedGenerator.ts +3 -0
  48. package/src/api/app/bsky/feed/getFeedGenerators.ts +2 -1
  49. package/src/api/app/bsky/feed/getListFeed.ts +1 -3
  50. package/src/api/app/bsky/feed/getPostThread.ts +31 -58
  51. package/src/api/app/bsky/feed/getPosts.ts +21 -18
  52. package/src/api/app/bsky/feed/getSuggestedFeeds.ts +2 -1
  53. package/src/api/app/bsky/feed/getTimeline.ts +1 -3
  54. package/src/api/app/bsky/feed/searchPosts.ts +130 -0
  55. package/src/api/app/bsky/graph/getList.ts +6 -3
  56. package/src/api/app/bsky/graph/getListBlocks.ts +3 -2
  57. package/src/api/app/bsky/graph/getListMutes.ts +2 -1
  58. package/src/api/app/bsky/graph/getLists.ts +2 -1
  59. package/src/api/app/bsky/unspecced/getPopularFeedGenerators.ts +3 -1
  60. package/src/api/blob-resolver.ts +6 -11
  61. package/src/api/com/atproto/admin/emitModerationEvent.ts +220 -0
  62. package/src/api/com/atproto/admin/{getModerationActions.ts → getModerationEvent.ts} +5 -11
  63. package/src/api/com/atproto/admin/getRecord.ts +1 -0
  64. package/src/api/com/atproto/admin/{getModerationReports.ts → queryModerationEvents.ts} +13 -16
  65. package/src/api/com/atproto/admin/queryModerationStatuses.ts +55 -0
  66. package/src/api/com/atproto/admin/util.ts +3 -1
  67. package/src/api/com/atproto/moderation/createReport.ts +9 -7
  68. package/src/api/com/atproto/moderation/util.ts +38 -20
  69. package/src/api/com/atproto/temp/fetchLabels.ts +30 -0
  70. package/src/api/index.ts +12 -14
  71. package/src/auth.ts +29 -21
  72. package/src/auto-moderator/index.ts +26 -19
  73. package/src/config.ts +6 -6
  74. package/src/context.ts +15 -9
  75. package/src/db/migrations/20231003T202833377Z-create-moderation-subject-status.ts +123 -0
  76. package/src/db/migrations/index.ts +1 -0
  77. package/src/db/pagination.ts +26 -3
  78. package/src/db/{periodic-moderation-action-reversal.ts → periodic-moderation-event-reversal.ts} +51 -55
  79. package/src/db/tables/moderation.ts +35 -52
  80. package/src/feed-gen/best-of-follows.ts +6 -3
  81. package/src/feed-gen/bsky-team.ts +1 -1
  82. package/src/feed-gen/hot-classic.ts +1 -1
  83. package/src/feed-gen/mutuals.ts +6 -2
  84. package/src/feed-gen/types.ts +1 -1
  85. package/src/feed-gen/whats-hot.ts +1 -1
  86. package/src/feed-gen/with-friends.ts +7 -3
  87. package/src/index.ts +2 -1
  88. package/src/lexicon/index.ts +52 -67
  89. package/src/lexicon/lexicons.ts +674 -579
  90. package/src/lexicon/types/app/bsky/actor/defs.ts +2 -2
  91. package/src/lexicon/types/app/bsky/actor/searchActors.ts +2 -2
  92. package/src/lexicon/types/app/bsky/actor/searchActorsTypeahead.ts +2 -2
  93. package/src/lexicon/types/app/bsky/feed/defs.ts +1 -18
  94. package/src/lexicon/types/app/bsky/feed/searchPosts.ts +3 -3
  95. package/src/lexicon/types/app/bsky/graph/defs.ts +3 -2
  96. package/src/lexicon/types/app/bsky/unspecced/searchActorsSkeleton.ts +4 -4
  97. package/src/lexicon/types/app/bsky/unspecced/searchPostsSkeleton.ts +3 -3
  98. package/src/lexicon/types/com/atproto/admin/defs.ts +278 -84
  99. package/src/lexicon/types/com/atproto/admin/disableAccountInvites.ts +1 -1
  100. package/src/lexicon/types/com/atproto/admin/{takeModerationAction.ts → emitModerationEvent.ts} +13 -11
  101. package/src/lexicon/types/com/atproto/admin/enableAccountInvites.ts +1 -1
  102. package/src/lexicon/types/com/atproto/admin/{getModerationReport.ts → getModerationEvent.ts} +1 -1
  103. package/src/lexicon/types/com/atproto/admin/{getModerationReports.ts → queryModerationEvents.ts} +8 -15
  104. package/src/lexicon/types/com/atproto/admin/queryModerationStatuses.ts +70 -0
  105. package/src/lexicon/types/com/atproto/admin/sendEmail.ts +1 -0
  106. package/src/lexicon/types/com/atproto/label/defs.ts +9 -9
  107. package/src/lexicon/types/com/atproto/label/queryLabels.ts +2 -2
  108. package/src/lexicon/types/com/atproto/repo/applyWrites.ts +1 -1
  109. package/src/lexicon/types/com/atproto/repo/createRecord.ts +2 -2
  110. package/src/lexicon/types/com/atproto/repo/deleteRecord.ts +2 -2
  111. package/src/lexicon/types/com/atproto/repo/listRecords.ts +1 -1
  112. package/src/lexicon/types/com/atproto/repo/putRecord.ts +3 -3
  113. package/src/lexicon/types/com/atproto/sync/listBlobs.ts +1 -1
  114. package/src/lexicon/types/com/atproto/sync/subscribeRepos.ts +4 -4
  115. package/src/lexicon/types/com/atproto/{admin/getModerationActions.ts → temp/fetchLabels.ts} +3 -5
  116. package/src/migrate-moderation-data.ts +414 -0
  117. package/src/services/actor/views.ts +5 -14
  118. package/src/services/feed/index.ts +26 -7
  119. package/src/services/feed/util.ts +47 -19
  120. package/src/services/feed/views.ts +68 -4
  121. package/src/services/graph/index.ts +21 -3
  122. package/src/services/graph/types.ts +1 -0
  123. package/src/services/indexing/plugins/block.ts +2 -3
  124. package/src/services/indexing/plugins/feed-generator.ts +2 -3
  125. package/src/services/indexing/plugins/follow.ts +2 -3
  126. package/src/services/indexing/plugins/like.ts +2 -3
  127. package/src/services/indexing/plugins/list-block.ts +2 -3
  128. package/src/services/indexing/plugins/list-item.ts +2 -3
  129. package/src/services/indexing/plugins/list.ts +2 -3
  130. package/src/services/indexing/plugins/post.ts +3 -4
  131. package/src/services/indexing/plugins/repost.ts +2 -3
  132. package/src/services/indexing/plugins/thread-gate.ts +2 -3
  133. package/src/services/label/index.ts +2 -3
  134. package/src/services/moderation/index.ts +380 -395
  135. package/src/services/moderation/pagination.ts +96 -0
  136. package/src/services/moderation/status.ts +244 -0
  137. package/src/services/moderation/types.ts +49 -0
  138. package/src/services/moderation/views.ts +278 -329
  139. package/src/util/debug.ts +2 -2
  140. package/tests/__snapshots__/feed-generation.test.ts.snap +322 -6
  141. package/tests/__snapshots__/indexing.test.ts.snap +0 -6
  142. package/tests/admin/__snapshots__/get-record.test.ts.snap +30 -132
  143. package/tests/admin/__snapshots__/get-repo.test.ts.snap +14 -60
  144. package/tests/admin/__snapshots__/moderation-events.test.ts.snap +146 -0
  145. package/tests/admin/__snapshots__/moderation-statuses.test.ts.snap +64 -0
  146. package/tests/admin/__snapshots__/moderation.test.ts.snap +0 -125
  147. package/tests/admin/get-record.test.ts +5 -9
  148. package/tests/admin/get-repo.test.ts +38 -9
  149. package/tests/admin/moderation-events.test.ts +221 -0
  150. package/tests/admin/moderation-statuses.test.ts +145 -0
  151. package/tests/admin/moderation.test.ts +512 -860
  152. package/tests/admin/repo-search.test.ts +2 -3
  153. package/tests/auto-moderator/fuzzy-matcher.test.ts +2 -1
  154. package/tests/auto-moderator/takedowns.test.ts +45 -18
  155. package/tests/feed-generation.test.ts +57 -9
  156. package/tests/views/__snapshots__/block-lists.test.ts.snap +3 -9
  157. package/tests/views/__snapshots__/blocks.test.ts.snap +0 -9
  158. package/tests/views/__snapshots__/mute-lists.test.ts.snap +5 -5
  159. package/tests/views/__snapshots__/mutes.test.ts.snap +0 -3
  160. package/tests/views/__snapshots__/thread.test.ts.snap +0 -30
  161. package/tests/views/actor-search.test.ts +2 -3
  162. package/tests/views/author-feed.test.ts +42 -36
  163. package/tests/views/follows.test.ts +40 -35
  164. package/tests/views/list-feed.test.ts +17 -9
  165. package/tests/views/notifications.test.ts +13 -9
  166. package/tests/views/profile.test.ts +20 -18
  167. package/tests/views/suggestions.test.ts +15 -7
  168. package/tests/views/thread.test.ts +54 -26
  169. package/tests/views/threadgating.test.ts +51 -19
  170. package/tests/views/timeline.test.ts +21 -13
  171. package/dist/api/com/atproto/admin/reverseModerationAction.d.ts +0 -3
  172. package/dist/api/com/atproto/admin/takeModerationAction.d.ts +0 -3
  173. package/dist/lexicon/types/com/atproto/admin/resolveModerationReports.d.ts +0 -36
  174. package/dist/lexicon/types/com/atproto/admin/reverseModerationAction.d.ts +0 -36
  175. package/src/api/com/atproto/admin/getModerationAction.ts +0 -44
  176. package/src/api/com/atproto/admin/getModerationReport.ts +0 -43
  177. package/src/api/com/atproto/admin/resolveModerationReports.ts +0 -24
  178. package/src/api/com/atproto/admin/reverseModerationAction.ts +0 -115
  179. package/src/api/com/atproto/admin/takeModerationAction.ts +0 -156
  180. package/src/lexicon/types/com/atproto/admin/getModerationAction.ts +0 -41
  181. package/src/lexicon/types/com/atproto/admin/resolveModerationReports.ts +0 -49
  182. package/src/lexicon/types/com/atproto/admin/reverseModerationAction.ts +0 -49
  183. package/tests/admin/__snapshots__/get-moderation-action.test.ts.snap +0 -172
  184. package/tests/admin/__snapshots__/get-moderation-actions.test.ts.snap +0 -178
  185. package/tests/admin/__snapshots__/get-moderation-report.test.ts.snap +0 -177
  186. package/tests/admin/__snapshots__/get-moderation-reports.test.ts.snap +0 -307
  187. package/tests/admin/get-moderation-action.test.ts +0 -100
  188. package/tests/admin/get-moderation-actions.test.ts +0 -164
  189. package/tests/admin/get-moderation-report.test.ts +0 -100
  190. package/tests/admin/get-moderation-reports.test.ts +0 -332
  191. /package/dist/api/com/atproto/admin/{getModerationAction.d.ts → emitModerationEvent.d.ts} +0 -0
  192. /package/dist/api/com/atproto/admin/{getModerationActions.d.ts → getModerationEvent.d.ts} +0 -0
  193. /package/dist/api/com/atproto/admin/{getModerationReport.d.ts → queryModerationEvents.d.ts} +0 -0
  194. /package/dist/api/com/atproto/admin/{getModerationReports.d.ts → queryModerationStatuses.d.ts} +0 -0
  195. /package/dist/api/com/atproto/{admin/resolveModerationReports.d.ts → temp/fetchLabels.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;
@@ -358,6 +319,10 @@ export declare const schemaDict: {
358
319
  inviteNote: {
359
320
  type: string;
360
321
  };
322
+ emailConfirmedAt: {
323
+ type: string;
324
+ format: string;
325
+ };
361
326
  };
362
327
  };
363
328
  accountView: {
@@ -393,6 +358,10 @@ export declare const schemaDict: {
393
358
  invitesDisabled: {
394
359
  type: string;
395
360
  };
361
+ emailConfirmedAt: {
362
+ type: string;
363
+ format: string;
364
+ };
396
365
  inviteNote: {
397
366
  type: string;
398
367
  };
@@ -528,7 +497,7 @@ export declare const schemaDict: {
528
497
  moderation: {
529
498
  type: string;
530
499
  properties: {
531
- currentAction: {
500
+ subjectStatus: {
532
501
  type: string;
533
502
  ref: string;
534
503
  };
@@ -536,26 +505,11 @@ export declare const schemaDict: {
536
505
  };
537
506
  moderationDetail: {
538
507
  type: string;
539
- required: string[];
540
508
  properties: {
541
- currentAction: {
509
+ subjectStatus: {
542
510
  type: string;
543
511
  ref: string;
544
512
  };
545
- actions: {
546
- type: string;
547
- items: {
548
- type: string;
549
- ref: string;
550
- };
551
- };
552
- reports: {
553
- type: string;
554
- items: {
555
- type: string;
556
- ref: string;
557
- };
558
- };
559
513
  };
560
514
  };
561
515
  blobView: {
@@ -613,6 +567,146 @@ export declare const schemaDict: {
613
567
  };
614
568
  };
615
569
  };
570
+ subjectReviewState: {
571
+ type: string;
572
+ knownValues: string[];
573
+ };
574
+ reviewOpen: {
575
+ type: string;
576
+ description: string;
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: {
591
+ type: string;
592
+ };
593
+ durationInHours: {
594
+ type: string;
595
+ description: string;
596
+ };
597
+ };
598
+ };
599
+ modEventReverseTakedown: {
600
+ type: string;
601
+ description: string;
602
+ properties: {
603
+ comment: {
604
+ type: string;
605
+ description: string;
606
+ };
607
+ };
608
+ };
609
+ modEventComment: {
610
+ type: string;
611
+ description: string;
612
+ required: string[];
613
+ properties: {
614
+ comment: {
615
+ type: string;
616
+ };
617
+ sticky: {
618
+ type: string;
619
+ description: string;
620
+ };
621
+ };
622
+ };
623
+ modEventReport: {
624
+ type: string;
625
+ description: 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;
655
+ };
656
+ };
657
+ };
658
+ };
659
+ modEventAcknowledge: {
660
+ type: string;
661
+ properties: {
662
+ comment: {
663
+ type: 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;
707
+ };
708
+ };
709
+ };
616
710
  };
617
711
  };
618
712
  ComAtprotoAdminDisableAccountInvites: {
@@ -672,7 +766,7 @@ export declare const schemaDict: {
672
766
  };
673
767
  };
674
768
  };
675
- ComAtprotoAdminEnableAccountInvites: {
769
+ ComAtprotoAdminEmitModerationEvent: {
676
770
  lexicon: number;
677
771
  id: string;
678
772
  defs: {
@@ -685,34 +779,25 @@ export declare const schemaDict: {
685
779
  type: string;
686
780
  required: string[];
687
781
  properties: {
688
- account: {
782
+ event: {
689
783
  type: string;
690
- format: string;
784
+ refs: string[];
691
785
  };
692
- note: {
786
+ subject: {
693
787
  type: string;
694
- description: string;
788
+ refs: string[];
789
+ };
790
+ subjectBlobCids: {
791
+ type: string;
792
+ items: {
793
+ type: string;
794
+ format: string;
795
+ };
796
+ };
797
+ createdBy: {
798
+ type: string;
799
+ format: string;
695
800
  };
696
- };
697
- };
698
- };
699
- };
700
- };
701
- };
702
- ComAtprotoAdminGetAccountInfo: {
703
- lexicon: number;
704
- id: string;
705
- defs: {
706
- main: {
707
- type: string;
708
- description: string;
709
- parameters: {
710
- type: string;
711
- required: string[];
712
- properties: {
713
- did: {
714
- type: string;
715
- format: string;
716
801
  };
717
802
  };
718
803
  };
@@ -723,50 +808,32 @@ export declare const schemaDict: {
723
808
  ref: string;
724
809
  };
725
810
  };
811
+ errors: {
812
+ name: string;
813
+ }[];
726
814
  };
727
815
  };
728
816
  };
729
- ComAtprotoAdminGetInviteCodes: {
817
+ ComAtprotoAdminEnableAccountInvites: {
730
818
  lexicon: number;
731
819
  id: string;
732
820
  defs: {
733
821
  main: {
734
822
  type: string;
735
823
  description: string;
736
- parameters: {
737
- type: string;
738
- properties: {
739
- sort: {
740
- type: string;
741
- knownValues: string[];
742
- default: string;
743
- };
744
- limit: {
745
- type: string;
746
- minimum: number;
747
- maximum: number;
748
- default: number;
749
- };
750
- cursor: {
751
- type: string;
752
- };
753
- };
754
- };
755
- output: {
824
+ input: {
756
825
  encoding: string;
757
826
  schema: {
758
827
  type: string;
759
828
  required: string[];
760
829
  properties: {
761
- cursor: {
830
+ account: {
762
831
  type: string;
832
+ format: string;
763
833
  };
764
- codes: {
834
+ note: {
765
835
  type: string;
766
- items: {
767
- type: string;
768
- ref: string;
769
- };
836
+ description: string;
770
837
  };
771
838
  };
772
839
  };
@@ -774,7 +841,7 @@ export declare const schemaDict: {
774
841
  };
775
842
  };
776
843
  };
777
- ComAtprotoAdminGetModerationAction: {
844
+ ComAtprotoAdminGetAccountInfo: {
778
845
  lexicon: number;
779
846
  id: string;
780
847
  defs: {
@@ -785,8 +852,9 @@ export declare const schemaDict: {
785
852
  type: string;
786
853
  required: string[];
787
854
  properties: {
788
- id: {
855
+ did: {
789
856
  type: string;
857
+ format: string;
790
858
  };
791
859
  };
792
860
  };
@@ -800,7 +868,7 @@ export declare const schemaDict: {
800
868
  };
801
869
  };
802
870
  };
803
- ComAtprotoAdminGetModerationActions: {
871
+ ComAtprotoAdminGetInviteCodes: {
804
872
  lexicon: number;
805
873
  id: string;
806
874
  defs: {
@@ -810,8 +878,10 @@ export declare const schemaDict: {
810
878
  parameters: {
811
879
  type: string;
812
880
  properties: {
813
- subject: {
881
+ sort: {
814
882
  type: string;
883
+ knownValues: string[];
884
+ default: string;
815
885
  };
816
886
  limit: {
817
887
  type: string;
@@ -833,7 +903,7 @@ export declare const schemaDict: {
833
903
  cursor: {
834
904
  type: string;
835
905
  };
836
- actions: {
906
+ codes: {
837
907
  type: string;
838
908
  items: {
839
909
  type: string;
@@ -846,7 +916,7 @@ export declare const schemaDict: {
846
916
  };
847
917
  };
848
918
  };
849
- ComAtprotoAdminGetModerationReport: {
919
+ ComAtprotoAdminGetModerationEvent: {
850
920
  lexicon: number;
851
921
  id: string;
852
922
  defs: {
@@ -872,7 +942,7 @@ export declare const schemaDict: {
872
942
  };
873
943
  };
874
944
  };
875
- ComAtprotoAdminGetModerationReports: {
945
+ ComAtprotoAdminGetRecord: {
876
946
  lexicon: number;
877
947
  id: string;
878
948
  defs: {
@@ -881,47 +951,15 @@ export declare const schemaDict: {
881
951
  description: string;
882
952
  parameters: {
883
953
  type: string;
954
+ required: string[];
884
955
  properties: {
885
- subject: {
886
- type: string;
887
- };
888
- ignoreSubjects: {
889
- type: string;
890
- items: {
891
- type: string;
892
- };
893
- };
894
- actionedBy: {
956
+ uri: {
895
957
  type: string;
896
958
  format: string;
897
- description: string;
898
- };
899
- reporters: {
900
- type: string;
901
- items: {
902
- type: string;
903
- };
904
- description: string;
905
959
  };
906
- resolved: {
907
- type: string;
908
- };
909
- actionType: {
910
- type: string;
911
- knownValues: string[];
912
- };
913
- limit: {
914
- type: string;
915
- minimum: number;
916
- maximum: number;
917
- default: number;
918
- };
919
- cursor: {
920
- type: string;
921
- };
922
- reverse: {
960
+ cid: {
923
961
  type: string;
924
- description: string;
962
+ format: string;
925
963
  };
926
964
  };
927
965
  };
@@ -929,25 +967,16 @@ export declare const schemaDict: {
929
967
  encoding: string;
930
968
  schema: {
931
969
  type: string;
932
- required: string[];
933
- properties: {
934
- cursor: {
935
- type: string;
936
- };
937
- reports: {
938
- type: string;
939
- items: {
940
- type: string;
941
- ref: string;
942
- };
943
- };
944
- };
970
+ ref: string;
945
971
  };
946
972
  };
973
+ errors: {
974
+ name: string;
975
+ }[];
947
976
  };
948
977
  };
949
978
  };
950
- ComAtprotoAdminGetRecord: {
979
+ ComAtprotoAdminGetRepo: {
951
980
  lexicon: number;
952
981
  id: string;
953
982
  defs: {
@@ -958,11 +987,7 @@ export declare const schemaDict: {
958
987
  type: string;
959
988
  required: string[];
960
989
  properties: {
961
- uri: {
962
- type: string;
963
- format: string;
964
- };
965
- cid: {
990
+ did: {
966
991
  type: string;
967
992
  format: string;
968
993
  };
@@ -981,7 +1006,7 @@ export declare const schemaDict: {
981
1006
  };
982
1007
  };
983
1008
  };
984
- ComAtprotoAdminGetRepo: {
1009
+ ComAtprotoAdminGetSubjectStatus: {
985
1010
  lexicon: number;
986
1011
  id: string;
987
1012
  defs: {
@@ -990,28 +1015,42 @@ export declare const schemaDict: {
990
1015
  description: string;
991
1016
  parameters: {
992
1017
  type: string;
993
- required: string[];
994
1018
  properties: {
995
1019
  did: {
996
1020
  type: string;
997
1021
  format: string;
998
1022
  };
1023
+ uri: {
1024
+ type: string;
1025
+ format: string;
1026
+ };
1027
+ blob: {
1028
+ type: string;
1029
+ format: string;
1030
+ };
999
1031
  };
1000
1032
  };
1001
1033
  output: {
1002
1034
  encoding: string;
1003
1035
  schema: {
1004
1036
  type: string;
1005
- ref: string;
1037
+ required: string[];
1038
+ properties: {
1039
+ subject: {
1040
+ type: string;
1041
+ refs: string[];
1042
+ };
1043
+ takedown: {
1044
+ type: string;
1045
+ ref: string;
1046
+ };
1047
+ };
1006
1048
  };
1007
1049
  };
1008
- errors: {
1009
- name: string;
1010
- }[];
1011
1050
  };
1012
1051
  };
1013
1052
  };
1014
- ComAtprotoAdminGetSubjectStatus: {
1053
+ ComAtprotoAdminQueryModerationEvents: {
1015
1054
  lexicon: number;
1016
1055
  id: string;
1017
1056
  defs: {
@@ -1021,17 +1060,40 @@ export declare const schemaDict: {
1021
1060
  parameters: {
1022
1061
  type: string;
1023
1062
  properties: {
1024
- did: {
1063
+ types: {
1064
+ type: string;
1065
+ items: {
1066
+ type: string;
1067
+ };
1068
+ description: string;
1069
+ };
1070
+ createdBy: {
1071
+ type: string;
1072
+ format: string;
1073
+ };
1074
+ sortDirection: {
1075
+ type: string;
1076
+ default: string;
1077
+ enum: string[];
1078
+ description: string;
1079
+ };
1080
+ subject: {
1025
1081
  type: string;
1026
1082
  format: string;
1027
1083
  };
1028
- uri: {
1084
+ includeAllUserRecords: {
1085
+ type: string;
1086
+ default: boolean;
1087
+ description: string;
1088
+ };
1089
+ limit: {
1029
1090
  type: string;
1030
- format: string;
1091
+ minimum: number;
1092
+ maximum: number;
1093
+ default: number;
1031
1094
  };
1032
- blob: {
1095
+ cursor: {
1033
1096
  type: string;
1034
- format: string;
1035
1097
  };
1036
1098
  };
1037
1099
  };
@@ -1041,13 +1103,15 @@ export declare const schemaDict: {
1041
1103
  type: string;
1042
1104
  required: string[];
1043
1105
  properties: {
1044
- subject: {
1106
+ cursor: {
1045
1107
  type: string;
1046
- refs: string[];
1047
1108
  };
1048
- takedown: {
1109
+ events: {
1049
1110
  type: string;
1050
- ref: string;
1111
+ items: {
1112
+ type: string;
1113
+ ref: string;
1114
+ };
1051
1115
  };
1052
1116
  };
1053
1117
  };
@@ -1055,78 +1119,108 @@ export declare const schemaDict: {
1055
1119
  };
1056
1120
  };
1057
1121
  };
1058
- ComAtprotoAdminResolveModerationReports: {
1122
+ ComAtprotoAdminQueryModerationStatuses: {
1059
1123
  lexicon: number;
1060
1124
  id: string;
1061
1125
  defs: {
1062
1126
  main: {
1063
1127
  type: string;
1064
1128
  description: string;
1065
- input: {
1066
- encoding: string;
1067
- schema: {
1068
- type: string;
1069
- required: string[];
1070
- properties: {
1071
- actionId: {
1072
- type: string;
1073
- };
1074
- reportIds: {
1075
- type: string;
1076
- items: {
1077
- type: string;
1078
- };
1079
- };
1080
- createdBy: {
1129
+ parameters: {
1130
+ type: string;
1131
+ properties: {
1132
+ subject: {
1133
+ type: string;
1134
+ format: string;
1135
+ };
1136
+ comment: {
1137
+ type: string;
1138
+ description: string;
1139
+ };
1140
+ reportedAfter: {
1141
+ type: string;
1142
+ format: string;
1143
+ description: string;
1144
+ };
1145
+ reportedBefore: {
1146
+ type: string;
1147
+ format: string;
1148
+ description: string;
1149
+ };
1150
+ reviewedAfter: {
1151
+ type: string;
1152
+ format: string;
1153
+ description: string;
1154
+ };
1155
+ reviewedBefore: {
1156
+ type: string;
1157
+ format: string;
1158
+ description: string;
1159
+ };
1160
+ includeMuted: {
1161
+ type: string;
1162
+ description: string;
1163
+ };
1164
+ reviewState: {
1165
+ type: string;
1166
+ description: string;
1167
+ };
1168
+ ignoreSubjects: {
1169
+ type: string;
1170
+ items: {
1081
1171
  type: string;
1082
1172
  format: string;
1083
1173
  };
1084
1174
  };
1175
+ lastReviewedBy: {
1176
+ type: string;
1177
+ format: string;
1178
+ description: string;
1179
+ };
1180
+ sortField: {
1181
+ type: string;
1182
+ default: string;
1183
+ enum: string[];
1184
+ };
1185
+ sortDirection: {
1186
+ type: string;
1187
+ default: string;
1188
+ enum: string[];
1189
+ };
1190
+ takendown: {
1191
+ type: string;
1192
+ description: string;
1193
+ };
1194
+ limit: {
1195
+ type: string;
1196
+ minimum: number;
1197
+ maximum: number;
1198
+ default: number;
1199
+ };
1200
+ cursor: {
1201
+ type: string;
1202
+ };
1085
1203
  };
1086
1204
  };
1087
1205
  output: {
1088
- encoding: string;
1089
- schema: {
1090
- type: string;
1091
- ref: string;
1092
- };
1093
- };
1094
- };
1095
- };
1096
- };
1097
- ComAtprotoAdminReverseModerationAction: {
1098
- lexicon: number;
1099
- id: string;
1100
- defs: {
1101
- main: {
1102
- type: string;
1103
- description: string;
1104
- input: {
1105
1206
  encoding: string;
1106
1207
  schema: {
1107
1208
  type: string;
1108
1209
  required: string[];
1109
1210
  properties: {
1110
- id: {
1111
- type: string;
1112
- };
1113
- reason: {
1211
+ cursor: {
1114
1212
  type: string;
1115
1213
  };
1116
- createdBy: {
1214
+ subjectStatuses: {
1117
1215
  type: string;
1118
- format: string;
1216
+ items: {
1217
+ type: string;
1218
+ ref: string;
1219
+ };
1119
1220
  };
1120
1221
  };
1121
1222
  };
1122
1223
  };
1123
- output: {
1124
- encoding: string;
1125
- schema: {
1126
- type: string;
1127
- ref: string;
1128
- };
1129
- };
1130
1224
  };
1131
1225
  };
1132
1226
  };
@@ -1203,88 +1297,25 @@ export declare const schemaDict: {
1203
1297
  subject: {
1204
1298
  type: string;
1205
1299
  };
1206
- };
1207
- };
1208
- };
1209
- output: {
1210
- encoding: string;
1211
- schema: {
1212
- type: string;
1213
- required: string[];
1214
- properties: {
1215
- sent: {
1300
+ senderDid: {
1216
1301
  type: string;
1302
+ format: string;
1217
1303
  };
1218
1304
  };
1219
1305
  };
1220
1306
  };
1221
- };
1222
- };
1223
- };
1224
- ComAtprotoAdminTakeModerationAction: {
1225
- lexicon: number;
1226
- id: string;
1227
- defs: {
1228
- main: {
1229
- type: string;
1230
- description: string;
1231
- input: {
1307
+ output: {
1232
1308
  encoding: string;
1233
1309
  schema: {
1234
1310
  type: string;
1235
1311
  required: string[];
1236
1312
  properties: {
1237
- action: {
1238
- type: string;
1239
- knownValues: string[];
1240
- };
1241
- subject: {
1242
- type: string;
1243
- refs: string[];
1244
- };
1245
- subjectBlobCids: {
1246
- type: string;
1247
- items: {
1248
- type: string;
1249
- format: string;
1250
- };
1251
- };
1252
- createLabelVals: {
1253
- type: string;
1254
- items: {
1255
- type: string;
1256
- };
1257
- };
1258
- negateLabelVals: {
1259
- type: string;
1260
- items: {
1261
- type: string;
1262
- };
1263
- };
1264
- reason: {
1265
- type: string;
1266
- };
1267
- durationInHours: {
1268
- type: string;
1269
- description: string;
1270
- };
1271
- createdBy: {
1313
+ sent: {
1272
1314
  type: string;
1273
- format: string;
1274
1315
  };
1275
1316
  };
1276
1317
  };
1277
1318
  };
1278
- output: {
1279
- encoding: string;
1280
- schema: {
1281
- type: string;
1282
- ref: string;
1283
- };
1284
- };
1285
- errors: {
1286
- name: string;
1287
- }[];
1288
1319
  };
1289
1320
  };
1290
1321
  };
@@ -3585,6 +3616,46 @@ export declare const schemaDict: {
3585
3616
  };
3586
3617
  };
3587
3618
  };
3619
+ ComAtprotoTempFetchLabels: {
3620
+ lexicon: number;
3621
+ id: string;
3622
+ defs: {
3623
+ main: {
3624
+ type: string;
3625
+ description: string;
3626
+ parameters: {
3627
+ type: string;
3628
+ properties: {
3629
+ since: {
3630
+ type: string;
3631
+ };
3632
+ limit: {
3633
+ type: string;
3634
+ minimum: number;
3635
+ maximum: number;
3636
+ default: number;
3637
+ };
3638
+ };
3639
+ };
3640
+ output: {
3641
+ encoding: string;
3642
+ schema: {
3643
+ type: string;
3644
+ required: string[];
3645
+ properties: {
3646
+ labels: {
3647
+ type: string;
3648
+ items: {
3649
+ type: string;
3650
+ ref: string;
3651
+ };
3652
+ };
3653
+ };
3654
+ };
3655
+ };
3656
+ };
3657
+ };
3658
+ };
3588
3659
  AppBskyActorDefs: {
3589
3660
  lexicon: number;
3590
3661
  id: string;
@@ -3889,6 +3960,7 @@ export declare const schemaDict: {
3889
3960
  defs: {
3890
3961
  main: {
3891
3962
  type: string;
3963
+ description: string;
3892
3964
  parameters: {
3893
3965
  type: string;
3894
3966
  required: string[];
@@ -3915,6 +3987,7 @@ export declare const schemaDict: {
3915
3987
  defs: {
3916
3988
  main: {
3917
3989
  type: string;
3990
+ description: string;
3918
3991
  parameters: {
3919
3992
  type: string;
3920
3993
  required: string[];
@@ -3997,6 +4070,7 @@ export declare const schemaDict: {
3997
4070
  defs: {
3998
4071
  main: {
3999
4072
  type: string;
4073
+ description: string;
4000
4074
  key: string;
4001
4075
  record: {
4002
4076
  type: string;
@@ -4504,6 +4578,9 @@ export declare const schemaDict: {
4504
4578
  type: string;
4505
4579
  format: string;
4506
4580
  };
4581
+ replyDisabled: {
4582
+ type: string;
4583
+ };
4507
4584
  };
4508
4585
  };
4509
4586
  feedViewPost: {
@@ -4571,10 +4648,6 @@ export declare const schemaDict: {
4571
4648
  refs: string[];
4572
4649
  };
4573
4650
  };
4574
- viewer: {
4575
- type: string;
4576
- ref: string;
4577
- };
4578
4651
  };
4579
4652
  };
4580
4653
  notFoundPost: {
@@ -4623,14 +4696,6 @@ export declare const schemaDict: {
4623
4696
  };
4624
4697
  };
4625
4698
  };
4626
- viewerThreadState: {
4627
- type: string;
4628
- properties: {
4629
- canReply: {
4630
- type: string;
4631
- };
4632
- };
4633
- };
4634
4699
  generatorView: {
4635
4700
  type: string;
4636
4701
  required: string[];
@@ -5188,6 +5253,7 @@ export declare const schemaDict: {
5188
5253
  defs: {
5189
5254
  main: {
5190
5255
  type: string;
5256
+ description: string;
5191
5257
  parameters: {
5192
5258
  type: string;
5193
5259
  required: string[];
@@ -5316,6 +5382,7 @@ export declare const schemaDict: {
5316
5382
  defs: {
5317
5383
  main: {
5318
5384
  type: string;
5385
+ description: string;
5319
5386
  parameters: {
5320
5387
  type: string;
5321
5388
  required: string[];
@@ -5403,6 +5470,7 @@ export declare const schemaDict: {
5403
5470
  defs: {
5404
5471
  main: {
5405
5472
  type: string;
5473
+ description: string;
5406
5474
  parameters: {
5407
5475
  type: string;
5408
5476
  required: string[];
@@ -5551,6 +5619,7 @@ export declare const schemaDict: {
5551
5619
  defs: {
5552
5620
  main: {
5553
5621
  type: string;
5622
+ description: string;
5554
5623
  key: string;
5555
5624
  record: {
5556
5625
  type: string;
@@ -5575,6 +5644,7 @@ export declare const schemaDict: {
5575
5644
  defs: {
5576
5645
  main: {
5577
5646
  type: string;
5647
+ description: string;
5578
5648
  key: string;
5579
5649
  record: {
5580
5650
  type: string;
@@ -5691,6 +5761,7 @@ export declare const schemaDict: {
5691
5761
  id: string;
5692
5762
  defs: {
5693
5763
  main: {
5764
+ description: string;
5694
5765
  type: string;
5695
5766
  key: string;
5696
5767
  record: {
@@ -5937,6 +6008,10 @@ export declare const schemaDict: {
5937
6008
  type: string;
5938
6009
  required: string[];
5939
6010
  properties: {
6011
+ uri: {
6012
+ type: string;
6013
+ format: string;
6014
+ };
5940
6015
  subject: {
5941
6016
  type: string;
5942
6017
  ref: string;
@@ -6609,6 +6684,7 @@ export declare const schemaDict: {
6609
6684
  defs: {
6610
6685
  main: {
6611
6686
  type: string;
6687
+ description: string;
6612
6688
  parameters: {
6613
6689
  type: string;
6614
6690
  properties: {
@@ -6639,6 +6715,7 @@ export declare const schemaDict: {
6639
6715
  defs: {
6640
6716
  main: {
6641
6717
  type: string;
6718
+ description: string;
6642
6719
  parameters: {
6643
6720
  type: string;
6644
6721
  properties: {
@@ -7139,21 +7216,18 @@ export declare const ids: {
7139
7216
  ComAtprotoAdminDefs: string;
7140
7217
  ComAtprotoAdminDisableAccountInvites: string;
7141
7218
  ComAtprotoAdminDisableInviteCodes: string;
7219
+ ComAtprotoAdminEmitModerationEvent: string;
7142
7220
  ComAtprotoAdminEnableAccountInvites: string;
7143
7221
  ComAtprotoAdminGetAccountInfo: string;
7144
7222
  ComAtprotoAdminGetInviteCodes: string;
7145
- ComAtprotoAdminGetModerationAction: string;
7146
- ComAtprotoAdminGetModerationActions: string;
7147
- ComAtprotoAdminGetModerationReport: string;
7148
- ComAtprotoAdminGetModerationReports: string;
7223
+ ComAtprotoAdminGetModerationEvent: string;
7149
7224
  ComAtprotoAdminGetRecord: string;
7150
7225
  ComAtprotoAdminGetRepo: string;
7151
7226
  ComAtprotoAdminGetSubjectStatus: string;
7152
- ComAtprotoAdminResolveModerationReports: string;
7153
- ComAtprotoAdminReverseModerationAction: string;
7227
+ ComAtprotoAdminQueryModerationEvents: string;
7228
+ ComAtprotoAdminQueryModerationStatuses: string;
7154
7229
  ComAtprotoAdminSearchRepos: string;
7155
7230
  ComAtprotoAdminSendEmail: string;
7156
- ComAtprotoAdminTakeModerationAction: string;
7157
7231
  ComAtprotoAdminUpdateAccountEmail: string;
7158
7232
  ComAtprotoAdminUpdateAccountHandle: string;
7159
7233
  ComAtprotoAdminUpdateSubjectStatus: string;
@@ -7207,6 +7281,7 @@ export declare const ids: {
7207
7281
  ComAtprotoSyncNotifyOfUpdate: string;
7208
7282
  ComAtprotoSyncRequestCrawl: string;
7209
7283
  ComAtprotoSyncSubscribeRepos: string;
7284
+ ComAtprotoTempFetchLabels: string;
7210
7285
  AppBskyActorDefs: string;
7211
7286
  AppBskyActorGetPreferences: string;
7212
7287
  AppBskyActorGetProfile: string;