@atproto/bsky 0.0.37 → 0.0.39

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 (149) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/dist/api/app/bsky/feed/getAuthorFeed.d.ts +2 -3
  3. package/dist/api/app/bsky/feed/getListFeed.d.ts +2 -2
  4. package/dist/api/app/bsky/feed/getTimeline.d.ts +4 -2
  5. package/dist/api/app/bsky/labeler/getServices.d.ts +3 -0
  6. package/dist/api/util.d.ts +9 -2
  7. package/dist/auth-verifier.d.ts +1 -1
  8. package/dist/context.d.ts +3 -0
  9. package/dist/data-plane/server/db/database-schema.d.ts +2 -2
  10. package/dist/data-plane/server/db/migrations/20240226T225725627Z-labelers.d.ts +3 -0
  11. package/dist/data-plane/server/db/migrations/index.d.ts +1 -0
  12. package/dist/data-plane/server/db/tables/labeler.d.ts +13 -0
  13. package/dist/data-plane/server/indexing/index.d.ts +2 -0
  14. package/dist/data-plane/server/indexing/plugins/labeler.d.ts +10 -0
  15. package/dist/data-plane/server/util.d.ts +6 -6
  16. package/dist/hydration/actor.d.ts +3 -0
  17. package/dist/hydration/hydrator.d.ts +27 -22
  18. package/dist/hydration/label.d.ts +23 -9
  19. package/dist/index.js +4100 -4645
  20. package/dist/index.js.map +3 -3
  21. package/dist/lexicon/index.d.ts +7 -27
  22. package/dist/lexicon/lexicons.d.ts +516 -1463
  23. package/dist/lexicon/types/app/bsky/actor/defs.d.ts +23 -1
  24. package/dist/lexicon/types/app/bsky/embed/record.d.ts +2 -1
  25. package/dist/lexicon/types/app/bsky/feed/defs.d.ts +1 -0
  26. package/dist/lexicon/types/app/bsky/graph/defs.d.ts +3 -0
  27. package/dist/lexicon/types/app/bsky/labeler/defs.d.ts +41 -0
  28. package/dist/lexicon/types/{com/atproto/admin/searchRepos.d.ts → app/bsky/labeler/getServices.d.ts} +7 -7
  29. package/dist/lexicon/types/app/bsky/labeler/service.d.ts +14 -0
  30. package/dist/lexicon/types/com/atproto/admin/defs.d.ts +0 -304
  31. package/dist/lexicon/types/com/atproto/label/defs.d.ts +23 -0
  32. package/dist/lexicon/types/com/atproto/server/describeServer.d.ts +7 -0
  33. package/dist/proto/bsky_connect.d.ts +7 -1
  34. package/dist/proto/bsky_pb.d.ts +25 -0
  35. package/dist/util.d.ts +7 -0
  36. package/dist/views/index.d.ts +3 -0
  37. package/dist/views/types.d.ts +2 -1
  38. package/package.json +14 -13
  39. package/proto/bsky.proto +12 -0
  40. package/src/api/app/bsky/actor/getProfile.ts +21 -17
  41. package/src/api/app/bsky/actor/getProfiles.ts +16 -7
  42. package/src/api/app/bsky/actor/getSuggestions.ts +18 -13
  43. package/src/api/app/bsky/actor/searchActors.ts +9 -5
  44. package/src/api/app/bsky/actor/searchActorsTypeahead.ts +12 -5
  45. package/src/api/app/bsky/feed/getActorFeeds.ts +16 -6
  46. package/src/api/app/bsky/feed/getActorLikes.ts +18 -8
  47. package/src/api/app/bsky/feed/getAuthorFeed.ts +18 -19
  48. package/src/api/app/bsky/feed/getFeed.ts +14 -7
  49. package/src/api/app/bsky/feed/getFeedGenerator.ts +8 -2
  50. package/src/api/app/bsky/feed/getFeedGenerators.ts +16 -5
  51. package/src/api/app/bsky/feed/getLikes.ts +13 -6
  52. package/src/api/app/bsky/feed/getListFeed.ts +13 -7
  53. package/src/api/app/bsky/feed/getPostThread.ts +15 -8
  54. package/src/api/app/bsky/feed/getPosts.ts +14 -5
  55. package/src/api/app/bsky/feed/getRepostedBy.ts +13 -6
  56. package/src/api/app/bsky/feed/getSuggestedFeeds.ts +8 -2
  57. package/src/api/app/bsky/feed/getTimeline.ts +14 -8
  58. package/src/api/app/bsky/feed/searchPosts.ts +9 -5
  59. package/src/api/app/bsky/graph/getBlocks.ts +10 -9
  60. package/src/api/app/bsky/graph/getFollowers.ts +23 -15
  61. package/src/api/app/bsky/graph/getFollows.ts +23 -15
  62. package/src/api/app/bsky/graph/getList.ts +14 -8
  63. package/src/api/app/bsky/graph/getListBlocks.ts +10 -7
  64. package/src/api/app/bsky/graph/getListMutes.ts +10 -7
  65. package/src/api/app/bsky/graph/getLists.ts +9 -7
  66. package/src/api/app/bsky/graph/getMutes.ts +10 -8
  67. package/src/api/app/bsky/graph/getSuggestedFollowsByActor.ts +10 -7
  68. package/src/api/app/bsky/graph/muteActor.ts +1 -1
  69. package/src/api/app/bsky/labeler/getServices.ts +46 -0
  70. package/src/api/app/bsky/notification/listNotifications.ts +12 -8
  71. package/src/api/app/bsky/unspecced/getPopularFeedGenerators.ts +6 -3
  72. package/src/api/com/atproto/admin/getAccountInfos.ts +10 -3
  73. package/src/api/index.ts +2 -0
  74. package/src/api/util.ts +19 -4
  75. package/src/auth-verifier.ts +2 -2
  76. package/src/context.ts +20 -0
  77. package/src/data-plane/server/db/database-schema.ts +4 -4
  78. package/src/data-plane/server/db/migrations/20240226T225725627Z-labelers.ts +27 -0
  79. package/src/data-plane/server/db/migrations/index.ts +1 -0
  80. package/src/data-plane/server/db/tables/labeler.ts +16 -0
  81. package/src/data-plane/server/indexing/index.ts +4 -0
  82. package/src/data-plane/server/indexing/plugins/labeler.ts +77 -0
  83. package/src/data-plane/server/routes/interactions.ts +17 -1
  84. package/src/data-plane/server/routes/labels.ts +4 -2
  85. package/src/data-plane/server/routes/profile.ts +15 -1
  86. package/src/data-plane/server/routes/records.ts +1 -0
  87. package/src/hydration/actor.ts +6 -0
  88. package/src/hydration/hydrator.ts +171 -97
  89. package/src/hydration/label.ts +106 -20
  90. package/src/index.ts +1 -3
  91. package/src/lexicon/index.ts +22 -137
  92. package/src/lexicon/lexicons.ts +552 -1635
  93. package/src/lexicon/types/app/bsky/actor/defs.ts +57 -1
  94. package/src/lexicon/types/app/bsky/embed/record.ts +2 -0
  95. package/src/lexicon/types/app/bsky/feed/defs.ts +1 -0
  96. package/src/lexicon/types/app/bsky/graph/defs.ts +3 -0
  97. package/src/lexicon/types/app/bsky/labeler/defs.ts +93 -0
  98. package/src/lexicon/types/{com/atproto/admin/searchRepos.ts → app/bsky/labeler/getServices.ts} +8 -8
  99. package/src/lexicon/types/app/bsky/labeler/service.ts +31 -0
  100. package/src/lexicon/types/com/atproto/admin/defs.ts +0 -694
  101. package/src/lexicon/types/com/atproto/label/defs.ts +78 -0
  102. package/src/lexicon/types/com/atproto/server/describeServer.ts +18 -0
  103. package/src/proto/bsky_connect.ts +11 -0
  104. package/src/proto/bsky_pb.ts +146 -0
  105. package/src/util.ts +44 -0
  106. package/src/views/index.ts +77 -8
  107. package/src/views/types.ts +6 -3
  108. package/tests/__snapshots__/feed-generation.test.ts.snap +12 -45
  109. package/tests/_util.ts +21 -0
  110. package/tests/data-plane/__snapshots__/indexing.test.ts.snap +20 -8
  111. package/tests/label-hydration.test.ts +162 -0
  112. package/tests/views/__snapshots__/author-feed.test.ts.snap +0 -46
  113. package/tests/views/__snapshots__/block-lists.test.ts.snap +7 -17
  114. package/tests/views/__snapshots__/blocks.test.ts.snap +0 -9
  115. package/tests/views/__snapshots__/labeler-service.test.ts.snap +156 -0
  116. package/tests/views/__snapshots__/list-feed.test.ts.snap +0 -20
  117. package/tests/views/__snapshots__/mute-lists.test.ts.snap +10 -18
  118. package/tests/views/__snapshots__/mutes.test.ts.snap +0 -4
  119. package/tests/views/__snapshots__/notifications.test.ts.snap +0 -9
  120. package/tests/views/__snapshots__/posts.test.ts.snap +0 -7
  121. package/tests/views/__snapshots__/profile.test.ts.snap +40 -6
  122. package/tests/views/__snapshots__/thread.test.ts.snap +0 -38
  123. package/tests/views/__snapshots__/threadgating.test.ts.snap +2 -0
  124. package/tests/views/__snapshots__/timeline.test.ts.snap +0 -145
  125. package/tests/views/labeler-service.test.ts +156 -0
  126. package/tests/views/takedown-labels.test.ts +133 -0
  127. package/tests/views/timeline.test.ts +7 -2
  128. package/dist/data-plane/server/db/tables/moderation.d.ts +0 -42
  129. package/dist/lexicon/types/com/atproto/admin/createCommunicationTemplate.d.ts +0 -37
  130. package/dist/lexicon/types/com/atproto/admin/deleteCommunicationTemplate.d.ts +0 -25
  131. package/dist/lexicon/types/com/atproto/admin/emitModerationEvent.d.ts +0 -45
  132. package/dist/lexicon/types/com/atproto/admin/getModerationEvent.d.ts +0 -29
  133. package/dist/lexicon/types/com/atproto/admin/getRecord.d.ts +0 -31
  134. package/dist/lexicon/types/com/atproto/admin/getRepo.d.ts +0 -30
  135. package/dist/lexicon/types/com/atproto/admin/listCommunicationTemplates.d.ts +0 -31
  136. package/dist/lexicon/types/com/atproto/admin/queryModerationEvents.d.ts +0 -48
  137. package/dist/lexicon/types/com/atproto/admin/queryModerationStatuses.d.ts +0 -50
  138. package/dist/lexicon/types/com/atproto/admin/updateCommunicationTemplate.d.ts +0 -39
  139. package/src/data-plane/server/db/tables/moderation.ts +0 -59
  140. package/src/lexicon/types/com/atproto/admin/createCommunicationTemplate.ts +0 -54
  141. package/src/lexicon/types/com/atproto/admin/deleteCommunicationTemplate.ts +0 -38
  142. package/src/lexicon/types/com/atproto/admin/emitModerationEvent.ts +0 -67
  143. package/src/lexicon/types/com/atproto/admin/getModerationEvent.ts +0 -41
  144. package/src/lexicon/types/com/atproto/admin/getRecord.ts +0 -43
  145. package/src/lexicon/types/com/atproto/admin/getRepo.ts +0 -42
  146. package/src/lexicon/types/com/atproto/admin/listCommunicationTemplates.ts +0 -44
  147. package/src/lexicon/types/com/atproto/admin/queryModerationEvents.ts +0 -73
  148. package/src/lexicon/types/com/atproto/admin/queryModerationStatuses.ts +0 -74
  149. package/src/lexicon/types/com/atproto/admin/updateCommunicationTemplate.ts +0 -57
@@ -1,1276 +1,142 @@
1
1
  import { LexiconDoc, Lexicons } from '@atproto/lexicon';
2
2
  export declare const schemaDict: {
3
- ComAtprotoAdminCreateCommunicationTemplate: {
4
- lexicon: number;
5
- id: string;
6
- defs: {
7
- main: {
8
- type: string;
9
- description: string;
10
- input: {
11
- encoding: string;
12
- schema: {
13
- type: string;
14
- required: string[];
15
- properties: {
16
- name: {
17
- type: string;
18
- description: string;
19
- };
20
- contentMarkdown: {
21
- type: string;
22
- description: string;
23
- };
24
- subject: {
25
- type: string;
26
- description: string;
27
- };
28
- createdBy: {
29
- type: string;
30
- format: string;
31
- description: string;
32
- };
33
- };
34
- };
35
- };
36
- output: {
37
- encoding: string;
38
- schema: {
39
- type: string;
40
- ref: string;
41
- };
42
- };
43
- };
44
- };
45
- };
46
- ComAtprotoAdminDefs: {
47
- lexicon: number;
48
- id: string;
49
- defs: {
50
- statusAttr: {
51
- type: string;
52
- required: string[];
53
- properties: {
54
- applied: {
55
- type: string;
56
- };
57
- ref: {
58
- type: string;
59
- };
60
- };
61
- };
62
- modEventView: {
63
- type: string;
64
- required: string[];
65
- properties: {
66
- id: {
67
- type: string;
68
- };
69
- event: {
70
- type: string;
71
- refs: string[];
72
- };
73
- subject: {
74
- type: string;
75
- refs: string[];
76
- };
77
- subjectBlobCids: {
78
- type: string;
79
- items: {
80
- type: string;
81
- };
82
- };
83
- createdBy: {
84
- type: string;
85
- format: string;
86
- };
87
- createdAt: {
88
- type: string;
89
- format: string;
90
- };
91
- creatorHandle: {
92
- type: string;
93
- };
94
- subjectHandle: {
95
- type: string;
96
- };
97
- };
98
- };
99
- modEventViewDetail: {
100
- type: string;
101
- required: string[];
102
- properties: {
103
- id: {
104
- type: string;
105
- };
106
- event: {
107
- type: string;
108
- refs: string[];
109
- };
110
- subject: {
111
- type: string;
112
- refs: string[];
113
- };
114
- subjectBlobs: {
115
- type: string;
116
- items: {
117
- type: string;
118
- ref: string;
119
- };
120
- };
121
- createdBy: {
122
- type: string;
123
- format: string;
124
- };
125
- createdAt: {
126
- type: string;
127
- format: string;
128
- };
129
- };
130
- };
131
- reportView: {
132
- type: string;
133
- required: string[];
134
- properties: {
135
- id: {
136
- type: string;
137
- };
138
- reasonType: {
139
- type: string;
140
- ref: string;
141
- };
142
- comment: {
143
- type: string;
144
- };
145
- subjectRepoHandle: {
146
- type: string;
147
- };
148
- subject: {
149
- type: string;
150
- refs: string[];
151
- };
152
- reportedBy: {
153
- type: string;
154
- format: string;
155
- };
156
- createdAt: {
157
- type: string;
158
- format: string;
159
- };
160
- resolvedByActionIds: {
161
- type: string;
162
- items: {
163
- type: string;
164
- };
165
- };
166
- };
167
- };
168
- subjectStatusView: {
169
- type: string;
170
- required: string[];
171
- properties: {
172
- id: {
173
- type: string;
174
- };
175
- subject: {
176
- type: string;
177
- refs: string[];
178
- };
179
- subjectBlobCids: {
180
- type: string;
181
- items: {
182
- type: string;
183
- format: string;
184
- };
185
- };
186
- subjectRepoHandle: {
187
- type: string;
188
- };
189
- updatedAt: {
190
- type: string;
191
- format: string;
192
- description: string;
193
- };
194
- createdAt: {
195
- type: string;
196
- format: string;
197
- description: string;
198
- };
199
- reviewState: {
200
- type: string;
201
- ref: string;
202
- };
203
- comment: {
204
- type: string;
205
- description: string;
206
- };
207
- muteUntil: {
208
- type: string;
209
- format: string;
210
- };
211
- lastReviewedBy: {
212
- type: string;
213
- format: string;
214
- };
215
- lastReviewedAt: {
216
- type: string;
217
- format: string;
218
- };
219
- lastReportedAt: {
220
- type: string;
221
- format: string;
222
- };
223
- lastAppealedAt: {
224
- type: string;
225
- format: string;
226
- description: string;
227
- };
228
- takendown: {
229
- type: string;
230
- };
231
- appealed: {
232
- type: string;
233
- description: string;
234
- };
235
- suspendUntil: {
236
- type: string;
237
- format: string;
238
- };
239
- tags: {
240
- type: string;
241
- items: {
242
- type: string;
243
- };
244
- };
245
- };
246
- };
247
- reportViewDetail: {
248
- type: string;
249
- required: string[];
250
- properties: {
251
- id: {
252
- type: string;
253
- };
254
- reasonType: {
255
- type: string;
256
- ref: string;
257
- };
258
- comment: {
259
- type: string;
260
- };
261
- subject: {
262
- type: string;
263
- refs: string[];
264
- };
265
- subjectStatus: {
266
- type: string;
267
- ref: string;
268
- };
269
- reportedBy: {
270
- type: string;
271
- format: string;
272
- };
273
- createdAt: {
274
- type: string;
275
- format: string;
276
- };
277
- resolvedByActions: {
278
- type: string;
279
- items: {
280
- type: string;
281
- ref: string;
282
- };
283
- };
284
- };
285
- };
286
- repoView: {
287
- type: string;
288
- required: string[];
289
- properties: {
290
- did: {
291
- type: string;
292
- format: string;
293
- };
294
- handle: {
295
- type: string;
296
- format: string;
297
- };
298
- email: {
299
- type: string;
300
- };
301
- relatedRecords: {
302
- type: string;
303
- items: {
304
- type: string;
305
- };
306
- };
307
- indexedAt: {
308
- type: string;
309
- format: string;
310
- };
311
- moderation: {
312
- type: string;
313
- ref: string;
314
- };
315
- invitedBy: {
316
- type: string;
317
- ref: string;
318
- };
319
- invitesDisabled: {
320
- type: string;
321
- };
322
- inviteNote: {
323
- type: string;
324
- };
325
- };
326
- };
327
- repoViewDetail: {
328
- type: string;
329
- required: string[];
330
- properties: {
331
- did: {
332
- type: string;
333
- format: string;
334
- };
335
- handle: {
336
- type: string;
337
- format: string;
338
- };
339
- email: {
340
- type: string;
341
- };
342
- relatedRecords: {
343
- type: string;
344
- items: {
345
- type: string;
346
- };
347
- };
348
- indexedAt: {
349
- type: string;
350
- format: string;
351
- };
352
- moderation: {
353
- type: string;
354
- ref: string;
355
- };
356
- labels: {
357
- type: string;
358
- items: {
359
- type: string;
360
- ref: string;
361
- };
362
- };
363
- invitedBy: {
364
- type: string;
365
- ref: string;
366
- };
367
- invites: {
368
- type: string;
369
- items: {
370
- type: string;
371
- ref: string;
372
- };
373
- };
374
- invitesDisabled: {
375
- type: string;
376
- };
377
- inviteNote: {
378
- type: string;
379
- };
380
- emailConfirmedAt: {
381
- type: string;
382
- format: string;
383
- };
384
- };
385
- };
386
- accountView: {
387
- type: string;
388
- required: string[];
389
- properties: {
390
- did: {
391
- type: string;
392
- format: string;
393
- };
394
- handle: {
395
- type: string;
396
- format: string;
397
- };
398
- email: {
399
- type: string;
400
- };
401
- relatedRecords: {
402
- type: string;
403
- items: {
404
- type: string;
405
- };
406
- };
407
- indexedAt: {
408
- type: string;
409
- format: string;
410
- };
411
- invitedBy: {
412
- type: string;
413
- ref: string;
414
- };
415
- invites: {
416
- type: string;
417
- items: {
418
- type: string;
419
- ref: string;
420
- };
421
- };
422
- invitesDisabled: {
423
- type: string;
424
- };
425
- emailConfirmedAt: {
426
- type: string;
427
- format: string;
428
- };
429
- inviteNote: {
430
- type: string;
431
- };
432
- };
433
- };
434
- repoViewNotFound: {
435
- type: string;
436
- required: string[];
437
- properties: {
438
- did: {
439
- type: string;
440
- format: string;
441
- };
442
- };
443
- };
444
- repoRef: {
445
- type: string;
446
- required: string[];
447
- properties: {
448
- did: {
449
- type: string;
450
- format: string;
451
- };
452
- };
453
- };
454
- repoBlobRef: {
455
- type: string;
456
- required: string[];
457
- properties: {
458
- did: {
459
- type: string;
460
- format: string;
461
- };
462
- cid: {
463
- type: string;
464
- format: string;
465
- };
466
- recordUri: {
467
- type: string;
468
- format: string;
469
- };
470
- };
471
- };
472
- recordView: {
473
- type: string;
474
- required: string[];
475
- properties: {
476
- uri: {
477
- type: string;
478
- format: string;
479
- };
480
- cid: {
481
- type: string;
482
- format: string;
483
- };
484
- value: {
485
- type: string;
486
- };
487
- blobCids: {
488
- type: string;
489
- items: {
490
- type: string;
491
- format: string;
492
- };
493
- };
494
- indexedAt: {
495
- type: string;
496
- format: string;
497
- };
498
- moderation: {
499
- type: string;
500
- ref: string;
501
- };
502
- repo: {
503
- type: string;
504
- ref: string;
505
- };
506
- };
507
- };
508
- recordViewDetail: {
509
- type: string;
510
- required: string[];
511
- properties: {
512
- uri: {
513
- type: string;
514
- format: string;
515
- };
516
- cid: {
517
- type: string;
518
- format: string;
519
- };
520
- value: {
521
- type: string;
522
- };
523
- blobs: {
524
- type: string;
525
- items: {
526
- type: string;
527
- ref: string;
528
- };
529
- };
530
- labels: {
531
- type: string;
532
- items: {
533
- type: string;
534
- ref: string;
535
- };
536
- };
537
- indexedAt: {
538
- type: string;
539
- format: string;
540
- };
541
- moderation: {
542
- type: string;
543
- ref: string;
544
- };
545
- repo: {
546
- type: string;
547
- ref: string;
548
- };
549
- };
550
- };
551
- recordViewNotFound: {
552
- type: string;
553
- required: string[];
554
- properties: {
555
- uri: {
556
- type: string;
557
- format: string;
558
- };
559
- };
560
- };
561
- moderation: {
562
- type: string;
563
- properties: {
564
- subjectStatus: {
565
- type: string;
566
- ref: string;
567
- };
568
- };
569
- };
570
- moderationDetail: {
571
- type: string;
572
- properties: {
573
- subjectStatus: {
574
- type: string;
575
- ref: string;
576
- };
577
- };
578
- };
579
- blobView: {
580
- type: string;
581
- required: string[];
582
- properties: {
583
- cid: {
584
- type: string;
585
- format: string;
586
- };
587
- mimeType: {
588
- type: string;
589
- };
590
- size: {
591
- type: string;
592
- };
593
- createdAt: {
594
- type: string;
595
- format: string;
596
- };
597
- details: {
598
- type: string;
599
- refs: string[];
600
- };
601
- moderation: {
602
- type: string;
603
- ref: string;
604
- };
605
- };
606
- };
607
- imageDetails: {
608
- type: string;
609
- required: string[];
610
- properties: {
611
- width: {
612
- type: string;
613
- };
614
- height: {
615
- type: string;
616
- };
617
- };
618
- };
619
- videoDetails: {
620
- type: string;
621
- required: string[];
622
- properties: {
623
- width: {
624
- type: string;
625
- };
626
- height: {
627
- type: string;
628
- };
629
- length: {
630
- type: string;
631
- };
632
- };
633
- };
634
- subjectReviewState: {
635
- type: string;
636
- knownValues: string[];
637
- };
638
- reviewOpen: {
639
- type: string;
640
- description: string;
641
- };
642
- reviewEscalated: {
643
- type: string;
644
- description: string;
645
- };
646
- reviewClosed: {
647
- type: string;
648
- description: string;
649
- };
650
- modEventTakedown: {
651
- type: string;
652
- description: string;
653
- properties: {
654
- comment: {
655
- type: string;
656
- };
657
- durationInHours: {
658
- type: string;
659
- description: string;
660
- };
661
- };
662
- };
663
- modEventReverseTakedown: {
664
- type: string;
665
- description: string;
666
- properties: {
667
- comment: {
668
- type: string;
669
- description: string;
670
- };
671
- };
672
- };
673
- modEventResolveAppeal: {
674
- type: string;
675
- description: string;
676
- properties: {
677
- comment: {
678
- type: string;
679
- description: string;
680
- };
681
- };
682
- };
683
- modEventComment: {
684
- type: string;
685
- description: string;
686
- required: string[];
687
- properties: {
688
- comment: {
689
- type: string;
690
- };
691
- sticky: {
692
- type: string;
693
- description: string;
694
- };
695
- };
696
- };
697
- modEventReport: {
698
- type: string;
699
- description: string;
700
- required: string[];
701
- properties: {
702
- comment: {
703
- type: string;
704
- };
705
- reportType: {
706
- type: string;
707
- ref: string;
708
- };
709
- };
710
- };
711
- modEventLabel: {
712
- type: string;
713
- description: string;
714
- required: string[];
715
- properties: {
716
- comment: {
717
- type: string;
718
- };
719
- createLabelVals: {
720
- type: string;
721
- items: {
722
- type: string;
723
- };
724
- };
725
- negateLabelVals: {
726
- type: string;
727
- items: {
728
- type: string;
729
- };
730
- };
731
- };
732
- };
733
- modEventAcknowledge: {
734
- type: string;
735
- properties: {
736
- comment: {
737
- type: string;
738
- };
739
- };
740
- };
741
- modEventEscalate: {
742
- type: string;
743
- properties: {
744
- comment: {
745
- type: string;
746
- };
747
- };
748
- };
749
- modEventMute: {
750
- type: string;
751
- description: string;
752
- required: string[];
753
- properties: {
754
- comment: {
755
- type: string;
756
- };
757
- durationInHours: {
758
- type: string;
759
- description: string;
760
- };
761
- };
762
- };
763
- modEventUnmute: {
764
- type: string;
765
- description: string;
766
- properties: {
767
- comment: {
768
- type: string;
769
- description: string;
770
- };
771
- };
772
- };
773
- modEventEmail: {
774
- type: string;
775
- description: string;
776
- required: string[];
777
- properties: {
778
- subjectLine: {
779
- type: string;
780
- description: string;
781
- };
782
- content: {
783
- type: string;
784
- description: string;
785
- };
786
- comment: {
787
- type: string;
788
- description: string;
789
- };
790
- };
791
- };
792
- modEventTag: {
793
- type: string;
794
- description: string;
795
- required: string[];
796
- properties: {
797
- add: {
798
- type: string;
799
- items: {
800
- type: string;
801
- };
802
- description: string;
803
- };
804
- remove: {
805
- type: string;
806
- items: {
807
- type: string;
808
- };
809
- description: string;
810
- };
811
- comment: {
812
- type: string;
813
- description: string;
814
- };
815
- };
816
- };
817
- communicationTemplateView: {
818
- type: string;
819
- required: string[];
820
- properties: {
821
- id: {
822
- type: string;
823
- };
824
- name: {
825
- type: string;
826
- description: string;
827
- };
828
- subject: {
829
- type: string;
830
- description: string;
831
- };
832
- contentMarkdown: {
833
- type: string;
834
- description: string;
835
- };
836
- disabled: {
837
- type: string;
838
- };
839
- lastUpdatedBy: {
840
- type: string;
841
- format: string;
842
- description: string;
843
- };
844
- createdAt: {
845
- type: string;
846
- format: string;
847
- };
848
- updatedAt: {
849
- type: string;
850
- format: string;
851
- };
852
- };
853
- };
854
- };
855
- };
856
- ComAtprotoAdminDeleteAccount: {
857
- lexicon: number;
858
- id: string;
859
- defs: {
860
- main: {
861
- type: string;
862
- description: string;
863
- input: {
864
- encoding: string;
865
- schema: {
866
- type: string;
867
- required: string[];
868
- properties: {
869
- did: {
870
- type: string;
871
- format: string;
872
- };
873
- };
874
- };
875
- };
876
- };
877
- };
878
- };
879
- ComAtprotoAdminDeleteCommunicationTemplate: {
880
- lexicon: number;
881
- id: string;
882
- defs: {
883
- main: {
884
- type: string;
885
- description: string;
886
- input: {
887
- encoding: string;
888
- schema: {
889
- type: string;
890
- required: string[];
891
- properties: {
892
- id: {
893
- type: string;
894
- };
895
- };
896
- };
897
- };
898
- };
899
- };
900
- };
901
- ComAtprotoAdminDisableAccountInvites: {
902
- lexicon: number;
903
- id: string;
904
- defs: {
905
- main: {
906
- type: string;
907
- description: string;
908
- input: {
909
- encoding: string;
910
- schema: {
911
- type: string;
912
- required: string[];
913
- properties: {
914
- account: {
915
- type: string;
916
- format: string;
917
- };
918
- note: {
919
- type: string;
920
- description: string;
921
- };
922
- };
923
- };
924
- };
925
- };
926
- };
927
- };
928
- ComAtprotoAdminDisableInviteCodes: {
929
- lexicon: number;
930
- id: string;
931
- defs: {
932
- main: {
933
- type: string;
934
- description: string;
935
- input: {
936
- encoding: string;
937
- schema: {
938
- type: string;
939
- properties: {
940
- codes: {
941
- type: string;
942
- items: {
943
- type: string;
944
- };
945
- };
946
- accounts: {
947
- type: string;
948
- items: {
949
- type: string;
950
- };
951
- };
952
- };
953
- };
954
- };
955
- };
956
- };
957
- };
958
- ComAtprotoAdminEmitModerationEvent: {
959
- lexicon: number;
960
- id: string;
961
- defs: {
962
- main: {
963
- type: string;
964
- description: string;
965
- input: {
966
- encoding: string;
967
- schema: {
968
- type: string;
969
- required: string[];
970
- properties: {
971
- event: {
972
- type: string;
973
- refs: string[];
974
- };
975
- subject: {
976
- type: string;
977
- refs: string[];
978
- };
979
- subjectBlobCids: {
980
- type: string;
981
- items: {
982
- type: string;
983
- format: string;
984
- };
985
- };
986
- createdBy: {
987
- type: string;
988
- format: string;
989
- };
990
- };
991
- };
992
- };
993
- output: {
994
- encoding: string;
995
- schema: {
996
- type: string;
997
- ref: string;
998
- };
999
- };
1000
- errors: {
1001
- name: string;
1002
- }[];
1003
- };
1004
- };
1005
- };
1006
- ComAtprotoAdminEnableAccountInvites: {
1007
- lexicon: number;
1008
- id: string;
1009
- defs: {
1010
- main: {
1011
- type: string;
1012
- description: string;
1013
- input: {
1014
- encoding: string;
1015
- schema: {
1016
- type: string;
1017
- required: string[];
1018
- properties: {
1019
- account: {
1020
- type: string;
1021
- format: string;
1022
- };
1023
- note: {
1024
- type: string;
1025
- description: string;
1026
- };
1027
- };
1028
- };
1029
- };
1030
- };
1031
- };
1032
- };
1033
- ComAtprotoAdminGetAccountInfo: {
1034
- lexicon: number;
1035
- id: string;
1036
- defs: {
1037
- main: {
1038
- type: string;
1039
- description: string;
1040
- parameters: {
1041
- type: string;
1042
- required: string[];
1043
- properties: {
1044
- did: {
1045
- type: string;
1046
- format: string;
1047
- };
1048
- };
1049
- };
1050
- output: {
1051
- encoding: string;
1052
- schema: {
1053
- type: string;
1054
- ref: string;
1055
- };
1056
- };
1057
- };
1058
- };
1059
- };
1060
- ComAtprotoAdminGetAccountInfos: {
1061
- lexicon: number;
1062
- id: string;
1063
- defs: {
1064
- main: {
1065
- type: string;
1066
- description: string;
1067
- parameters: {
1068
- type: string;
1069
- required: string[];
1070
- properties: {
1071
- dids: {
1072
- type: string;
1073
- items: {
1074
- type: string;
1075
- format: string;
1076
- };
1077
- };
1078
- };
1079
- };
1080
- output: {
1081
- encoding: string;
1082
- schema: {
1083
- type: string;
1084
- required: string[];
1085
- properties: {
1086
- infos: {
1087
- type: string;
1088
- items: {
1089
- type: string;
1090
- ref: string;
1091
- };
1092
- };
1093
- };
1094
- };
1095
- };
1096
- };
1097
- };
1098
- };
1099
- ComAtprotoAdminGetInviteCodes: {
1100
- lexicon: number;
1101
- id: string;
1102
- defs: {
1103
- main: {
1104
- type: string;
1105
- description: string;
1106
- parameters: {
1107
- type: string;
1108
- properties: {
1109
- sort: {
1110
- type: string;
1111
- knownValues: string[];
1112
- default: string;
1113
- };
1114
- limit: {
1115
- type: string;
1116
- minimum: number;
1117
- maximum: number;
1118
- default: number;
1119
- };
1120
- cursor: {
1121
- type: string;
1122
- };
3
+ ComAtprotoAdminDefs: {
4
+ lexicon: number;
5
+ id: string;
6
+ defs: {
7
+ statusAttr: {
8
+ type: string;
9
+ required: string[];
10
+ properties: {
11
+ applied: {
12
+ type: string;
1123
13
  };
1124
- };
1125
- output: {
1126
- encoding: string;
1127
- schema: {
14
+ ref: {
1128
15
  type: string;
1129
- required: string[];
1130
- properties: {
1131
- cursor: {
1132
- type: string;
1133
- };
1134
- codes: {
1135
- type: string;
1136
- items: {
1137
- type: string;
1138
- ref: string;
1139
- };
1140
- };
1141
- };
1142
16
  };
1143
17
  };
1144
18
  };
1145
- };
1146
- };
1147
- ComAtprotoAdminGetModerationEvent: {
1148
- lexicon: number;
1149
- id: string;
1150
- defs: {
1151
- main: {
19
+ accountView: {
1152
20
  type: string;
1153
- description: string;
1154
- parameters: {
1155
- type: string;
1156
- required: string[];
1157
- properties: {
1158
- id: {
21
+ required: string[];
22
+ properties: {
23
+ did: {
24
+ type: string;
25
+ format: string;
26
+ };
27
+ handle: {
28
+ type: string;
29
+ format: string;
30
+ };
31
+ email: {
32
+ type: string;
33
+ };
34
+ relatedRecords: {
35
+ type: string;
36
+ items: {
1159
37
  type: string;
1160
38
  };
1161
39
  };
1162
- };
1163
- output: {
1164
- encoding: string;
1165
- schema: {
40
+ indexedAt: {
41
+ type: string;
42
+ format: string;
43
+ };
44
+ invitedBy: {
1166
45
  type: string;
1167
46
  ref: string;
1168
47
  };
48
+ invites: {
49
+ type: string;
50
+ items: {
51
+ type: string;
52
+ ref: string;
53
+ };
54
+ };
55
+ invitesDisabled: {
56
+ type: string;
57
+ };
58
+ emailConfirmedAt: {
59
+ type: string;
60
+ format: string;
61
+ };
62
+ inviteNote: {
63
+ type: string;
64
+ };
1169
65
  };
1170
66
  };
1171
- };
1172
- };
1173
- ComAtprotoAdminGetRecord: {
1174
- lexicon: number;
1175
- id: string;
1176
- defs: {
1177
- main: {
67
+ repoRef: {
1178
68
  type: string;
1179
- description: string;
1180
- parameters: {
1181
- type: string;
1182
- required: string[];
1183
- properties: {
1184
- uri: {
1185
- type: string;
1186
- format: string;
1187
- };
1188
- cid: {
1189
- type: string;
1190
- format: string;
1191
- };
69
+ required: string[];
70
+ properties: {
71
+ did: {
72
+ type: string;
73
+ format: string;
1192
74
  };
1193
75
  };
1194
- output: {
1195
- encoding: string;
1196
- schema: {
76
+ };
77
+ repoBlobRef: {
78
+ type: string;
79
+ required: string[];
80
+ properties: {
81
+ did: {
1197
82
  type: string;
1198
- ref: string;
83
+ format: string;
84
+ };
85
+ cid: {
86
+ type: string;
87
+ format: string;
88
+ };
89
+ recordUri: {
90
+ type: string;
91
+ format: string;
1199
92
  };
1200
93
  };
1201
- errors: {
1202
- name: string;
1203
- }[];
1204
94
  };
1205
95
  };
1206
96
  };
1207
- ComAtprotoAdminGetRepo: {
97
+ ComAtprotoAdminDeleteAccount: {
1208
98
  lexicon: number;
1209
99
  id: string;
1210
100
  defs: {
1211
101
  main: {
1212
102
  type: string;
1213
103
  description: string;
1214
- parameters: {
1215
- type: string;
1216
- required: string[];
1217
- properties: {
1218
- did: {
1219
- type: string;
1220
- format: string;
1221
- };
1222
- };
1223
- };
1224
- output: {
104
+ input: {
1225
105
  encoding: string;
1226
106
  schema: {
1227
107
  type: string;
1228
- ref: string;
108
+ required: string[];
109
+ properties: {
110
+ did: {
111
+ type: string;
112
+ format: string;
113
+ };
114
+ };
1229
115
  };
1230
116
  };
1231
- errors: {
1232
- name: string;
1233
- }[];
1234
117
  };
1235
118
  };
1236
119
  };
1237
- ComAtprotoAdminGetSubjectStatus: {
120
+ ComAtprotoAdminDisableAccountInvites: {
1238
121
  lexicon: number;
1239
122
  id: string;
1240
123
  defs: {
1241
124
  main: {
1242
125
  type: string;
1243
126
  description: string;
1244
- parameters: {
1245
- type: string;
1246
- properties: {
1247
- did: {
1248
- type: string;
1249
- format: string;
1250
- };
1251
- uri: {
1252
- type: string;
1253
- format: string;
1254
- };
1255
- blob: {
1256
- type: string;
1257
- format: string;
1258
- };
1259
- };
1260
- };
1261
- output: {
127
+ input: {
1262
128
  encoding: string;
1263
129
  schema: {
1264
130
  type: string;
1265
131
  required: string[];
1266
132
  properties: {
1267
- subject: {
133
+ account: {
1268
134
  type: string;
1269
- refs: string[];
135
+ format: string;
1270
136
  };
1271
- takedown: {
137
+ note: {
1272
138
  type: string;
1273
- ref: string;
139
+ description: string;
1274
140
  };
1275
141
  };
1276
142
  };
@@ -1278,24 +144,28 @@ export declare const schemaDict: {
1278
144
  };
1279
145
  };
1280
146
  };
1281
- ComAtprotoAdminListCommunicationTemplates: {
147
+ ComAtprotoAdminDisableInviteCodes: {
1282
148
  lexicon: number;
1283
149
  id: string;
1284
150
  defs: {
1285
151
  main: {
1286
152
  type: string;
1287
153
  description: string;
1288
- output: {
154
+ input: {
1289
155
  encoding: string;
1290
156
  schema: {
1291
157
  type: string;
1292
- required: string[];
1293
158
  properties: {
1294
- communicationTemplates: {
159
+ codes: {
160
+ type: string;
161
+ items: {
162
+ type: string;
163
+ };
164
+ };
165
+ accounts: {
1295
166
  type: string;
1296
167
  items: {
1297
168
  type: string;
1298
- ref: string;
1299
169
  };
1300
170
  };
1301
171
  };
@@ -1304,103 +174,78 @@ export declare const schemaDict: {
1304
174
  };
1305
175
  };
1306
176
  };
1307
- ComAtprotoAdminQueryModerationEvents: {
177
+ ComAtprotoAdminEnableAccountInvites: {
1308
178
  lexicon: number;
1309
179
  id: string;
1310
180
  defs: {
1311
181
  main: {
1312
182
  type: string;
1313
183
  description: string;
1314
- parameters: {
1315
- type: string;
1316
- properties: {
1317
- types: {
1318
- type: string;
1319
- items: {
1320
- type: string;
1321
- };
1322
- description: string;
1323
- };
1324
- createdBy: {
1325
- type: string;
1326
- format: string;
1327
- };
1328
- sortDirection: {
1329
- type: string;
1330
- default: string;
1331
- enum: string[];
1332
- description: string;
1333
- };
1334
- createdAfter: {
1335
- type: string;
1336
- format: string;
1337
- description: string;
1338
- };
1339
- createdBefore: {
1340
- type: string;
1341
- format: string;
1342
- description: string;
1343
- };
1344
- subject: {
1345
- type: string;
1346
- format: string;
1347
- };
1348
- includeAllUserRecords: {
1349
- type: string;
1350
- default: boolean;
1351
- description: string;
1352
- };
1353
- limit: {
1354
- type: string;
1355
- minimum: number;
1356
- maximum: number;
1357
- default: number;
1358
- };
1359
- hasComment: {
1360
- type: string;
1361
- description: string;
1362
- };
1363
- comment: {
1364
- type: string;
1365
- description: string;
1366
- };
1367
- addedLabels: {
1368
- type: string;
1369
- items: {
1370
- type: string;
1371
- };
1372
- description: string;
1373
- };
1374
- removedLabels: {
1375
- type: string;
1376
- items: {
184
+ input: {
185
+ encoding: string;
186
+ schema: {
187
+ type: string;
188
+ required: string[];
189
+ properties: {
190
+ account: {
1377
191
  type: string;
192
+ format: string;
1378
193
  };
1379
- description: string;
1380
- };
1381
- addedTags: {
1382
- type: string;
1383
- items: {
194
+ note: {
1384
195
  type: string;
196
+ description: string;
1385
197
  };
1386
- description: string;
1387
198
  };
1388
- removedTags: {
199
+ };
200
+ };
201
+ };
202
+ };
203
+ };
204
+ ComAtprotoAdminGetAccountInfo: {
205
+ lexicon: number;
206
+ id: string;
207
+ defs: {
208
+ main: {
209
+ type: string;
210
+ description: string;
211
+ parameters: {
212
+ type: string;
213
+ required: string[];
214
+ properties: {
215
+ did: {
1389
216
  type: string;
1390
- items: {
1391
- type: string;
1392
- };
1393
- description: string;
217
+ format: string;
1394
218
  };
1395
- reportTypes: {
219
+ };
220
+ };
221
+ output: {
222
+ encoding: string;
223
+ schema: {
224
+ type: string;
225
+ ref: string;
226
+ };
227
+ };
228
+ };
229
+ };
230
+ };
231
+ ComAtprotoAdminGetAccountInfos: {
232
+ lexicon: number;
233
+ id: string;
234
+ defs: {
235
+ main: {
236
+ type: string;
237
+ description: string;
238
+ parameters: {
239
+ type: string;
240
+ required: string[];
241
+ properties: {
242
+ dids: {
1396
243
  type: string;
1397
244
  items: {
1398
245
  type: string;
246
+ format: string;
1399
247
  };
1400
248
  };
1401
- cursor: {
1402
- type: string;
1403
- };
1404
249
  };
1405
250
  };
1406
251
  output: {
@@ -1409,10 +254,7 @@ export declare const schemaDict: {
1409
254
  type: string;
1410
255
  required: string[];
1411
256
  properties: {
1412
- cursor: {
1413
- type: string;
1414
- };
1415
- events: {
257
+ infos: {
1416
258
  type: string;
1417
259
  items: {
1418
260
  type: string;
@@ -1425,7 +267,7 @@ export declare const schemaDict: {
1425
267
  };
1426
268
  };
1427
269
  };
1428
- ComAtprotoAdminQueryModerationStatuses: {
270
+ ComAtprotoAdminGetInviteCodes: {
1429
271
  lexicon: number;
1430
272
  id: string;
1431
273
  defs: {
@@ -1435,71 +277,10 @@ export declare const schemaDict: {
1435
277
  parameters: {
1436
278
  type: string;
1437
279
  properties: {
1438
- subject: {
1439
- type: string;
1440
- format: string;
1441
- };
1442
- comment: {
1443
- type: string;
1444
- description: string;
1445
- };
1446
- reportedAfter: {
1447
- type: string;
1448
- format: string;
1449
- description: string;
1450
- };
1451
- reportedBefore: {
1452
- type: string;
1453
- format: string;
1454
- description: string;
1455
- };
1456
- reviewedAfter: {
1457
- type: string;
1458
- format: string;
1459
- description: string;
1460
- };
1461
- reviewedBefore: {
1462
- type: string;
1463
- format: string;
1464
- description: string;
1465
- };
1466
- includeMuted: {
1467
- type: string;
1468
- description: string;
1469
- };
1470
- reviewState: {
1471
- type: string;
1472
- description: string;
1473
- };
1474
- ignoreSubjects: {
1475
- type: string;
1476
- items: {
1477
- type: string;
1478
- format: string;
1479
- };
1480
- };
1481
- lastReviewedBy: {
1482
- type: string;
1483
- format: string;
1484
- description: string;
1485
- };
1486
- sortField: {
1487
- type: string;
1488
- default: string;
1489
- enum: string[];
1490
- };
1491
- sortDirection: {
280
+ sort: {
1492
281
  type: string;
282
+ knownValues: string[];
1493
283
  default: string;
1494
- enum: string[];
1495
- };
1496
- takendown: {
1497
- type: string;
1498
- description: string;
1499
- };
1500
- appealed: {
1501
- type: string;
1502
- description: string;
1503
284
  };
1504
285
  limit: {
1505
286
  type: string;
@@ -1507,18 +288,6 @@ export declare const schemaDict: {
1507
288
  maximum: number;
1508
289
  default: number;
1509
290
  };
1510
- tags: {
1511
- type: string;
1512
- items: {
1513
- type: string;
1514
- };
1515
- };
1516
- excludeTags: {
1517
- type: string;
1518
- items: {
1519
- type: string;
1520
- };
1521
- };
1522
291
  cursor: {
1523
292
  type: string;
1524
293
  };
@@ -1533,7 +302,7 @@ export declare const schemaDict: {
1533
302
  cursor: {
1534
303
  type: string;
1535
304
  };
1536
- subjectStatuses: {
305
+ codes: {
1537
306
  type: string;
1538
307
  items: {
1539
308
  type: string;
@@ -1546,7 +315,7 @@ export declare const schemaDict: {
1546
315
  };
1547
316
  };
1548
317
  };
1549
- ComAtprotoAdminSearchRepos: {
318
+ ComAtprotoAdminGetSubjectStatus: {
1550
319
  lexicon: number;
1551
320
  id: string;
1552
321
  defs: {
@@ -1556,21 +325,17 @@ export declare const schemaDict: {
1556
325
  parameters: {
1557
326
  type: string;
1558
327
  properties: {
1559
- term: {
1560
- type: string;
1561
- description: string;
1562
- };
1563
- q: {
328
+ did: {
1564
329
  type: string;
330
+ format: string;
1565
331
  };
1566
- limit: {
332
+ uri: {
1567
333
  type: string;
1568
- minimum: number;
1569
- maximum: number;
1570
- default: number;
334
+ format: string;
1571
335
  };
1572
- cursor: {
336
+ blob: {
1573
337
  type: string;
338
+ format: string;
1574
339
  };
1575
340
  };
1576
341
  };
@@ -1580,15 +345,13 @@ export declare const schemaDict: {
1580
345
  type: string;
1581
346
  required: string[];
1582
347
  properties: {
1583
- cursor: {
348
+ subject: {
1584
349
  type: string;
350
+ refs: string[];
1585
351
  };
1586
- repos: {
352
+ takedown: {
1587
353
  type: string;
1588
- items: {
1589
- type: string;
1590
- ref: string;
1591
- };
354
+ ref: string;
1592
355
  };
1593
356
  };
1594
357
  };
@@ -1725,56 +488,6 @@ export declare const schemaDict: {
1725
488
  };
1726
489
  };
1727
490
  };
1728
- ComAtprotoAdminUpdateCommunicationTemplate: {
1729
- lexicon: number;
1730
- id: string;
1731
- defs: {
1732
- main: {
1733
- type: string;
1734
- description: string;
1735
- input: {
1736
- encoding: string;
1737
- schema: {
1738
- type: string;
1739
- required: string[];
1740
- properties: {
1741
- id: {
1742
- type: string;
1743
- description: string;
1744
- };
1745
- name: {
1746
- type: string;
1747
- description: string;
1748
- };
1749
- contentMarkdown: {
1750
- type: string;
1751
- description: string;
1752
- };
1753
- subject: {
1754
- type: string;
1755
- description: string;
1756
- };
1757
- updatedBy: {
1758
- type: string;
1759
- format: string;
1760
- description: string;
1761
- };
1762
- disabled: {
1763
- type: string;
1764
- };
1765
- };
1766
- };
1767
- };
1768
- output: {
1769
- encoding: string;
1770
- schema: {
1771
- type: string;
1772
- ref: string;
1773
- };
1774
- };
1775
- };
1776
- };
1777
- };
1778
491
  ComAtprotoAdminUpdateSubjectStatus: {
1779
492
  lexicon: number;
1780
493
  id: string;
@@ -2008,6 +721,10 @@ export declare const schemaDict: {
2008
721
  description: string;
2009
722
  required: string[];
2010
723
  properties: {
724
+ ver: {
725
+ type: string;
726
+ description: string;
727
+ };
2011
728
  src: {
2012
729
  type: string;
2013
730
  format: string;
@@ -2037,6 +754,15 @@ export declare const schemaDict: {
2037
754
  format: string;
2038
755
  description: string;
2039
756
  };
757
+ exp: {
758
+ type: string;
759
+ format: string;
760
+ description: string;
761
+ };
762
+ sig: {
763
+ type: string;
764
+ description: string;
765
+ };
2040
766
  };
2041
767
  };
2042
768
  selfLabels: {
@@ -2066,6 +792,74 @@ export declare const schemaDict: {
2066
792
  };
2067
793
  };
2068
794
  };
795
+ labelValueDefinition: {
796
+ type: string;
797
+ description: string;
798
+ required: string[];
799
+ properties: {
800
+ identifier: {
801
+ type: string;
802
+ description: string;
803
+ maxLength: number;
804
+ maxGraphemes: number;
805
+ };
806
+ severity: {
807
+ type: string;
808
+ description: string;
809
+ knownValues: string[];
810
+ };
811
+ blurs: {
812
+ type: string;
813
+ description: string;
814
+ knownValues: string[];
815
+ };
816
+ defaultSetting: {
817
+ type: string;
818
+ description: string;
819
+ knownValues: string[];
820
+ default: string;
821
+ };
822
+ adultOnly: {
823
+ type: string;
824
+ description: string;
825
+ };
826
+ locales: {
827
+ type: string;
828
+ items: {
829
+ type: string;
830
+ ref: string;
831
+ };
832
+ };
833
+ };
834
+ };
835
+ labelValueDefinitionStrings: {
836
+ type: string;
837
+ description: string;
838
+ required: string[];
839
+ properties: {
840
+ lang: {
841
+ type: string;
842
+ description: string;
843
+ format: string;
844
+ };
845
+ name: {
846
+ type: string;
847
+ description: string;
848
+ maxGraphemes: number;
849
+ maxLength: number;
850
+ };
851
+ description: {
852
+ type: string;
853
+ description: string;
854
+ maxGraphemes: number;
855
+ maxLength: number;
856
+ };
857
+ };
858
+ };
859
+ labelValue: {
860
+ type: string;
861
+ knownValues: string[];
862
+ };
2069
863
  };
2070
864
  };
2071
865
  ComAtprotoLabelQueryLabels: {
@@ -3412,6 +2206,11 @@ export declare const schemaDict: {
3412
2206
  description: string;
3413
2207
  ref: string;
3414
2208
  };
2209
+ contact: {
2210
+ type: string;
2211
+ description: string;
2212
+ ref: string;
2213
+ };
3415
2214
  did: {
3416
2215
  type: string;
3417
2216
  format: string;
@@ -3431,6 +2230,14 @@ export declare const schemaDict: {
3431
2230
  };
3432
2231
  };
3433
2232
  };
2233
+ contact: {
2234
+ type: string;
2235
+ properties: {
2236
+ email: {
2237
+ type: string;
2238
+ };
2239
+ };
2240
+ };
3434
2241
  };
3435
2242
  };
3436
2243
  ComAtprotoServerGetAccountInviteCodes: {
@@ -4608,6 +3415,10 @@ export declare const schemaDict: {
4608
3415
  postsCount: {
4609
3416
  type: string;
4610
3417
  };
3418
+ associated: {
3419
+ type: string;
3420
+ ref: string;
3421
+ };
4611
3422
  indexedAt: {
4612
3423
  type: string;
4613
3424
  format: string;
@@ -4625,6 +3436,20 @@ export declare const schemaDict: {
4625
3436
  };
4626
3437
  };
4627
3438
  };
3439
+ profileAssociated: {
3440
+ type: string;
3441
+ properties: {
3442
+ lists: {
3443
+ type: string;
3444
+ };
3445
+ feedgens: {
3446
+ type: string;
3447
+ };
3448
+ labeler: {
3449
+ type: string;
3450
+ };
3451
+ };
3452
+ };
4628
3453
  viewerState: {
4629
3454
  type: string;
4630
3455
  description: string;
@@ -4678,6 +3503,11 @@ export declare const schemaDict: {
4678
3503
  type: string;
4679
3504
  required: string[];
4680
3505
  properties: {
3506
+ labelerDid: {
3507
+ type: string;
3508
+ description: string;
3509
+ format: string;
3510
+ };
4681
3511
  label: {
4682
3512
  type: string;
4683
3513
  };
@@ -4836,6 +3666,29 @@ export declare const schemaDict: {
4836
3666
  };
4837
3667
  };
4838
3668
  };
3669
+ labelersPref: {
3670
+ type: string;
3671
+ required: string[];
3672
+ properties: {
3673
+ labelers: {
3674
+ type: string;
3675
+ items: {
3676
+ type: string;
3677
+ ref: string;
3678
+ };
3679
+ };
3680
+ };
3681
+ };
3682
+ labelerPrefItem: {
3683
+ type: string;
3684
+ required: string[];
3685
+ properties: {
3686
+ did: {
3687
+ type: string;
3688
+ format: string;
3689
+ };
3690
+ };
3691
+ };
4839
3692
  };
4840
3693
  };
4841
3694
  AppBskyActorGetPreferences: {
@@ -5660,6 +4513,13 @@ export declare const schemaDict: {
5660
4513
  type: string;
5661
4514
  minimum: number;
5662
4515
  };
4516
+ labels: {
4517
+ type: string;
4518
+ items: {
4519
+ type: string;
4520
+ ref: string;
4521
+ };
4522
+ };
5663
4523
  viewer: {
5664
4524
  type: string;
5665
4525
  ref: string;
@@ -6889,6 +5749,13 @@ export declare const schemaDict: {
6889
5749
  avatar: {
6890
5750
  type: string;
6891
5751
  };
5752
+ labels: {
5753
+ type: string;
5754
+ items: {
5755
+ type: string;
5756
+ ref: string;
5757
+ };
5758
+ };
6892
5759
  viewer: {
6893
5760
  type: string;
6894
5761
  ref: string;
@@ -6939,6 +5806,13 @@ export declare const schemaDict: {
6939
5806
  avatar: {
6940
5807
  type: string;
6941
5808
  };
5809
+ labels: {
5810
+ type: string;
5811
+ items: {
5812
+ type: string;
5813
+ ref: string;
5814
+ };
5815
+ };
6942
5816
  viewer: {
6943
5817
  type: string;
6944
5818
  ref: string;
@@ -7720,6 +6594,193 @@ export declare const schemaDict: {
7720
6594
  };
7721
6595
  };
7722
6596
  };
6597
+ AppBskyLabelerDefs: {
6598
+ lexicon: number;
6599
+ id: string;
6600
+ defs: {
6601
+ labelerView: {
6602
+ type: string;
6603
+ required: string[];
6604
+ properties: {
6605
+ uri: {
6606
+ type: string;
6607
+ format: string;
6608
+ };
6609
+ cid: {
6610
+ type: string;
6611
+ format: string;
6612
+ };
6613
+ creator: {
6614
+ type: string;
6615
+ ref: string;
6616
+ };
6617
+ likeCount: {
6618
+ type: string;
6619
+ minimum: number;
6620
+ };
6621
+ viewer: {
6622
+ type: string;
6623
+ ref: string;
6624
+ };
6625
+ indexedAt: {
6626
+ type: string;
6627
+ format: string;
6628
+ };
6629
+ labels: {
6630
+ type: string;
6631
+ items: {
6632
+ type: string;
6633
+ ref: string;
6634
+ };
6635
+ };
6636
+ };
6637
+ };
6638
+ labelerViewDetailed: {
6639
+ type: string;
6640
+ required: string[];
6641
+ properties: {
6642
+ uri: {
6643
+ type: string;
6644
+ format: string;
6645
+ };
6646
+ cid: {
6647
+ type: string;
6648
+ format: string;
6649
+ };
6650
+ creator: {
6651
+ type: string;
6652
+ ref: string;
6653
+ };
6654
+ policies: {
6655
+ type: string;
6656
+ ref: string;
6657
+ };
6658
+ likeCount: {
6659
+ type: string;
6660
+ minimum: number;
6661
+ };
6662
+ viewer: {
6663
+ type: string;
6664
+ ref: string;
6665
+ };
6666
+ indexedAt: {
6667
+ type: string;
6668
+ format: string;
6669
+ };
6670
+ labels: {
6671
+ type: string;
6672
+ items: {
6673
+ type: string;
6674
+ ref: string;
6675
+ };
6676
+ };
6677
+ };
6678
+ };
6679
+ labelerViewerState: {
6680
+ type: string;
6681
+ properties: {
6682
+ like: {
6683
+ type: string;
6684
+ format: string;
6685
+ };
6686
+ };
6687
+ };
6688
+ labelerPolicies: {
6689
+ type: string;
6690
+ required: string[];
6691
+ properties: {
6692
+ labelValues: {
6693
+ type: string;
6694
+ description: string;
6695
+ items: {
6696
+ type: string;
6697
+ ref: string;
6698
+ };
6699
+ };
6700
+ labelValueDefinitions: {
6701
+ type: string;
6702
+ description: string;
6703
+ items: {
6704
+ type: string;
6705
+ ref: string;
6706
+ };
6707
+ };
6708
+ };
6709
+ };
6710
+ };
6711
+ };
6712
+ AppBskyLabelerGetServices: {
6713
+ lexicon: number;
6714
+ id: string;
6715
+ defs: {
6716
+ main: {
6717
+ type: string;
6718
+ description: string;
6719
+ parameters: {
6720
+ type: string;
6721
+ required: string[];
6722
+ properties: {
6723
+ dids: {
6724
+ type: string;
6725
+ items: {
6726
+ type: string;
6727
+ format: string;
6728
+ };
6729
+ };
6730
+ detailed: {
6731
+ type: string;
6732
+ default: boolean;
6733
+ };
6734
+ };
6735
+ };
6736
+ output: {
6737
+ encoding: string;
6738
+ schema: {
6739
+ type: string;
6740
+ required: string[];
6741
+ properties: {
6742
+ views: {
6743
+ type: string;
6744
+ items: {
6745
+ type: string;
6746
+ refs: string[];
6747
+ };
6748
+ };
6749
+ };
6750
+ };
6751
+ };
6752
+ };
6753
+ };
6754
+ };
6755
+ AppBskyLabelerService: {
6756
+ lexicon: number;
6757
+ id: string;
6758
+ defs: {
6759
+ main: {
6760
+ type: string;
6761
+ description: string;
6762
+ key: string;
6763
+ record: {
6764
+ type: string;
6765
+ required: string[];
6766
+ properties: {
6767
+ policies: {
6768
+ type: string;
6769
+ ref: string;
6770
+ };
6771
+ labels: {
6772
+ type: string;
6773
+ refs: string[];
6774
+ };
6775
+ createdAt: {
6776
+ type: string;
6777
+ format: string;
6778
+ };
6779
+ };
6780
+ };
6781
+ };
6782
+ };
6783
+ };
7723
6784
  AppBskyNotificationGetUnreadCount: {
7724
6785
  lexicon: number;
7725
6786
  id: string;
@@ -8214,30 +7275,19 @@ export declare const schemaDict: {
8214
7275
  export declare const schemas: LexiconDoc[];
8215
7276
  export declare const lexicons: Lexicons;
8216
7277
  export declare const ids: {
8217
- ComAtprotoAdminCreateCommunicationTemplate: string;
8218
7278
  ComAtprotoAdminDefs: string;
8219
7279
  ComAtprotoAdminDeleteAccount: string;
8220
- ComAtprotoAdminDeleteCommunicationTemplate: string;
8221
7280
  ComAtprotoAdminDisableAccountInvites: string;
8222
7281
  ComAtprotoAdminDisableInviteCodes: string;
8223
- ComAtprotoAdminEmitModerationEvent: string;
8224
7282
  ComAtprotoAdminEnableAccountInvites: string;
8225
7283
  ComAtprotoAdminGetAccountInfo: string;
8226
7284
  ComAtprotoAdminGetAccountInfos: string;
8227
7285
  ComAtprotoAdminGetInviteCodes: string;
8228
- ComAtprotoAdminGetModerationEvent: string;
8229
- ComAtprotoAdminGetRecord: string;
8230
- ComAtprotoAdminGetRepo: string;
8231
7286
  ComAtprotoAdminGetSubjectStatus: string;
8232
- ComAtprotoAdminListCommunicationTemplates: string;
8233
- ComAtprotoAdminQueryModerationEvents: string;
8234
- ComAtprotoAdminQueryModerationStatuses: string;
8235
- ComAtprotoAdminSearchRepos: string;
8236
7287
  ComAtprotoAdminSendEmail: string;
8237
7288
  ComAtprotoAdminUpdateAccountEmail: string;
8238
7289
  ComAtprotoAdminUpdateAccountHandle: string;
8239
7290
  ComAtprotoAdminUpdateAccountPassword: string;
8240
- ComAtprotoAdminUpdateCommunicationTemplate: string;
8241
7291
  ComAtprotoAdminUpdateSubjectStatus: string;
8242
7292
  ComAtprotoIdentityGetRecommendedDidCredentials: string;
8243
7293
  ComAtprotoIdentityRequestPlcOperationSignature: string;
@@ -8357,6 +7407,9 @@ export declare const ids: {
8357
7407
  AppBskyGraphMuteActorList: string;
8358
7408
  AppBskyGraphUnmuteActor: string;
8359
7409
  AppBskyGraphUnmuteActorList: string;
7410
+ AppBskyLabelerDefs: string;
7411
+ AppBskyLabelerGetServices: string;
7412
+ AppBskyLabelerService: string;
8360
7413
  AppBskyNotificationGetUnreadCount: string;
8361
7414
  AppBskyNotificationListNotifications: string;
8362
7415
  AppBskyNotificationRegisterPush: string;