@atproto/bsky 0.0.37 → 0.0.38

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 (138) hide show
  1. package/CHANGELOG.md +14 -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 +4068 -4641
  20. package/dist/index.js.map +3 -3
  21. package/dist/lexicon/index.d.ts +7 -27
  22. package/dist/lexicon/lexicons.d.ts +507 -1467
  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/proto/bsky_connect.d.ts +7 -1
  33. package/dist/proto/bsky_pb.d.ts +25 -0
  34. package/dist/util.d.ts +7 -0
  35. package/dist/views/index.d.ts +3 -0
  36. package/dist/views/types.d.ts +2 -1
  37. package/package.json +14 -13
  38. package/proto/bsky.proto +12 -0
  39. package/src/api/app/bsky/actor/getProfile.ts +21 -17
  40. package/src/api/app/bsky/actor/getProfiles.ts +16 -7
  41. package/src/api/app/bsky/actor/getSuggestions.ts +18 -13
  42. package/src/api/app/bsky/actor/searchActors.ts +9 -5
  43. package/src/api/app/bsky/actor/searchActorsTypeahead.ts +12 -5
  44. package/src/api/app/bsky/feed/getActorFeeds.ts +16 -6
  45. package/src/api/app/bsky/feed/getActorLikes.ts +18 -8
  46. package/src/api/app/bsky/feed/getAuthorFeed.ts +18 -19
  47. package/src/api/app/bsky/feed/getFeed.ts +14 -7
  48. package/src/api/app/bsky/feed/getFeedGenerator.ts +8 -2
  49. package/src/api/app/bsky/feed/getFeedGenerators.ts +16 -5
  50. package/src/api/app/bsky/feed/getLikes.ts +13 -6
  51. package/src/api/app/bsky/feed/getListFeed.ts +13 -7
  52. package/src/api/app/bsky/feed/getPostThread.ts +15 -8
  53. package/src/api/app/bsky/feed/getPosts.ts +14 -5
  54. package/src/api/app/bsky/feed/getRepostedBy.ts +13 -6
  55. package/src/api/app/bsky/feed/getSuggestedFeeds.ts +8 -2
  56. package/src/api/app/bsky/feed/getTimeline.ts +14 -8
  57. package/src/api/app/bsky/feed/searchPosts.ts +9 -5
  58. package/src/api/app/bsky/graph/getBlocks.ts +10 -9
  59. package/src/api/app/bsky/graph/getFollowers.ts +23 -15
  60. package/src/api/app/bsky/graph/getFollows.ts +23 -15
  61. package/src/api/app/bsky/graph/getList.ts +14 -8
  62. package/src/api/app/bsky/graph/getListBlocks.ts +10 -7
  63. package/src/api/app/bsky/graph/getListMutes.ts +10 -7
  64. package/src/api/app/bsky/graph/getLists.ts +9 -7
  65. package/src/api/app/bsky/graph/getMutes.ts +10 -8
  66. package/src/api/app/bsky/graph/getSuggestedFollowsByActor.ts +10 -7
  67. package/src/api/app/bsky/graph/muteActor.ts +1 -1
  68. package/src/api/app/bsky/labeler/getServices.ts +46 -0
  69. package/src/api/app/bsky/notification/listNotifications.ts +12 -8
  70. package/src/api/app/bsky/unspecced/getPopularFeedGenerators.ts +6 -3
  71. package/src/api/com/atproto/admin/getAccountInfos.ts +10 -3
  72. package/src/api/index.ts +2 -0
  73. package/src/api/util.ts +19 -4
  74. package/src/auth-verifier.ts +2 -2
  75. package/src/context.ts +20 -0
  76. package/src/data-plane/server/db/database-schema.ts +4 -4
  77. package/src/data-plane/server/db/migrations/20240226T225725627Z-labelers.ts +27 -0
  78. package/src/data-plane/server/db/migrations/index.ts +1 -0
  79. package/src/data-plane/server/db/tables/labeler.ts +16 -0
  80. package/src/data-plane/server/indexing/index.ts +4 -0
  81. package/src/data-plane/server/indexing/plugins/labeler.ts +77 -0
  82. package/src/data-plane/server/routes/interactions.ts +17 -1
  83. package/src/data-plane/server/routes/profile.ts +15 -1
  84. package/src/data-plane/server/routes/records.ts +1 -0
  85. package/src/hydration/actor.ts +6 -0
  86. package/src/hydration/hydrator.ts +171 -97
  87. package/src/hydration/label.ts +106 -20
  88. package/src/index.ts +1 -3
  89. package/src/lexicon/index.ts +22 -137
  90. package/src/lexicon/lexicons.ts +502 -1598
  91. package/src/lexicon/types/app/bsky/actor/defs.ts +57 -1
  92. package/src/lexicon/types/app/bsky/embed/record.ts +2 -0
  93. package/src/lexicon/types/app/bsky/feed/defs.ts +1 -0
  94. package/src/lexicon/types/app/bsky/graph/defs.ts +3 -0
  95. package/src/lexicon/types/app/bsky/labeler/defs.ts +93 -0
  96. package/src/lexicon/types/{com/atproto/admin/searchRepos.ts → app/bsky/labeler/getServices.ts} +8 -8
  97. package/src/lexicon/types/app/bsky/labeler/service.ts +31 -0
  98. package/src/lexicon/types/com/atproto/admin/defs.ts +0 -694
  99. package/src/lexicon/types/com/atproto/label/defs.ts +78 -0
  100. package/src/proto/bsky_connect.ts +11 -0
  101. package/src/proto/bsky_pb.ts +146 -0
  102. package/src/util.ts +44 -0
  103. package/src/views/index.ts +76 -7
  104. package/src/views/types.ts +6 -3
  105. package/tests/__snapshots__/feed-generation.test.ts.snap +12 -0
  106. package/tests/_util.ts +21 -0
  107. package/tests/data-plane/__snapshots__/indexing.test.ts.snap +20 -0
  108. package/tests/label-hydration.test.ts +162 -0
  109. package/tests/views/__snapshots__/block-lists.test.ts.snap +7 -0
  110. package/tests/views/__snapshots__/labeler-service.test.ts.snap +160 -0
  111. package/tests/views/__snapshots__/mute-lists.test.ts.snap +10 -0
  112. package/tests/views/__snapshots__/profile.test.ts.snap +40 -0
  113. package/tests/views/__snapshots__/threadgating.test.ts.snap +2 -0
  114. package/tests/views/labeler-service.test.ts +156 -0
  115. package/tests/views/takedown-labels.test.ts +133 -0
  116. package/tests/views/timeline.test.ts +7 -2
  117. package/dist/data-plane/server/db/tables/moderation.d.ts +0 -42
  118. package/dist/lexicon/types/com/atproto/admin/createCommunicationTemplate.d.ts +0 -37
  119. package/dist/lexicon/types/com/atproto/admin/deleteCommunicationTemplate.d.ts +0 -25
  120. package/dist/lexicon/types/com/atproto/admin/emitModerationEvent.d.ts +0 -45
  121. package/dist/lexicon/types/com/atproto/admin/getModerationEvent.d.ts +0 -29
  122. package/dist/lexicon/types/com/atproto/admin/getRecord.d.ts +0 -31
  123. package/dist/lexicon/types/com/atproto/admin/getRepo.d.ts +0 -30
  124. package/dist/lexicon/types/com/atproto/admin/listCommunicationTemplates.d.ts +0 -31
  125. package/dist/lexicon/types/com/atproto/admin/queryModerationEvents.d.ts +0 -48
  126. package/dist/lexicon/types/com/atproto/admin/queryModerationStatuses.d.ts +0 -50
  127. package/dist/lexicon/types/com/atproto/admin/updateCommunicationTemplate.d.ts +0 -39
  128. package/src/data-plane/server/db/tables/moderation.ts +0 -59
  129. package/src/lexicon/types/com/atproto/admin/createCommunicationTemplate.ts +0 -54
  130. package/src/lexicon/types/com/atproto/admin/deleteCommunicationTemplate.ts +0 -38
  131. package/src/lexicon/types/com/atproto/admin/emitModerationEvent.ts +0 -67
  132. package/src/lexicon/types/com/atproto/admin/getModerationEvent.ts +0 -41
  133. package/src/lexicon/types/com/atproto/admin/getRecord.ts +0 -43
  134. package/src/lexicon/types/com/atproto/admin/getRepo.ts +0 -42
  135. package/src/lexicon/types/com/atproto/admin/listCommunicationTemplates.ts +0 -44
  136. package/src/lexicon/types/com/atproto/admin/queryModerationEvents.ts +0 -73
  137. package/src/lexicon/types/com/atproto/admin/queryModerationStatuses.ts +0 -74
  138. 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
- 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: {
183
+ description: string;
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: {
@@ -2050,22 +776,90 @@ export declare const schemaDict: {
2050
776
  type: string;
2051
777
  ref: string;
2052
778
  };
2053
- maxLength: number;
779
+ maxLength: number;
780
+ };
781
+ };
782
+ };
783
+ selfLabel: {
784
+ type: string;
785
+ description: string;
786
+ required: string[];
787
+ properties: {
788
+ val: {
789
+ type: string;
790
+ maxLength: number;
791
+ description: string;
792
+ };
793
+ };
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
+ };
2054
832
  };
2055
833
  };
2056
834
  };
2057
- selfLabel: {
835
+ labelValueDefinitionStrings: {
2058
836
  type: string;
2059
837
  description: string;
2060
838
  required: string[];
2061
839
  properties: {
2062
- val: {
840
+ lang: {
2063
841
  type: string;
842
+ description: string;
843
+ format: string;
844
+ };
845
+ name: {
846
+ type: string;
847
+ description: string;
848
+ maxGraphemes: number;
2064
849
  maxLength: number;
850
+ };
851
+ description: {
852
+ type: string;
2065
853
  description: string;
854
+ maxGraphemes: number;
855
+ maxLength: number;
2066
856
  };
2067
857
  };
2068
858
  };
859
+ labelValue: {
860
+ type: string;
861
+ knownValues: string[];
862
+ };
2069
863
  };
2070
864
  };
2071
865
  ComAtprotoLabelQueryLabels: {
@@ -4608,6 +3402,10 @@ export declare const schemaDict: {
4608
3402
  postsCount: {
4609
3403
  type: string;
4610
3404
  };
3405
+ associated: {
3406
+ type: string;
3407
+ ref: string;
3408
+ };
4611
3409
  indexedAt: {
4612
3410
  type: string;
4613
3411
  format: string;
@@ -4625,6 +3423,20 @@ export declare const schemaDict: {
4625
3423
  };
4626
3424
  };
4627
3425
  };
3426
+ profileAssociated: {
3427
+ type: string;
3428
+ properties: {
3429
+ lists: {
3430
+ type: string;
3431
+ };
3432
+ feedgens: {
3433
+ type: string;
3434
+ };
3435
+ labeler: {
3436
+ type: string;
3437
+ };
3438
+ };
3439
+ };
4628
3440
  viewerState: {
4629
3441
  type: string;
4630
3442
  description: string;
@@ -4678,6 +3490,11 @@ export declare const schemaDict: {
4678
3490
  type: string;
4679
3491
  required: string[];
4680
3492
  properties: {
3493
+ labelerDid: {
3494
+ type: string;
3495
+ description: string;
3496
+ format: string;
3497
+ };
4681
3498
  label: {
4682
3499
  type: string;
4683
3500
  };
@@ -4836,6 +3653,29 @@ export declare const schemaDict: {
4836
3653
  };
4837
3654
  };
4838
3655
  };
3656
+ labelersPref: {
3657
+ type: string;
3658
+ required: string[];
3659
+ properties: {
3660
+ labelers: {
3661
+ type: string;
3662
+ items: {
3663
+ type: string;
3664
+ ref: string;
3665
+ };
3666
+ };
3667
+ };
3668
+ };
3669
+ labelerPrefItem: {
3670
+ type: string;
3671
+ required: string[];
3672
+ properties: {
3673
+ did: {
3674
+ type: string;
3675
+ format: string;
3676
+ };
3677
+ };
3678
+ };
4839
3679
  };
4840
3680
  };
4841
3681
  AppBskyActorGetPreferences: {
@@ -5660,6 +4500,13 @@ export declare const schemaDict: {
5660
4500
  type: string;
5661
4501
  minimum: number;
5662
4502
  };
4503
+ labels: {
4504
+ type: string;
4505
+ items: {
4506
+ type: string;
4507
+ ref: string;
4508
+ };
4509
+ };
5663
4510
  viewer: {
5664
4511
  type: string;
5665
4512
  ref: string;
@@ -6889,6 +5736,13 @@ export declare const schemaDict: {
6889
5736
  avatar: {
6890
5737
  type: string;
6891
5738
  };
5739
+ labels: {
5740
+ type: string;
5741
+ items: {
5742
+ type: string;
5743
+ ref: string;
5744
+ };
5745
+ };
6892
5746
  viewer: {
6893
5747
  type: string;
6894
5748
  ref: string;
@@ -6939,6 +5793,13 @@ export declare const schemaDict: {
6939
5793
  avatar: {
6940
5794
  type: string;
6941
5795
  };
5796
+ labels: {
5797
+ type: string;
5798
+ items: {
5799
+ type: string;
5800
+ ref: string;
5801
+ };
5802
+ };
6942
5803
  viewer: {
6943
5804
  type: string;
6944
5805
  ref: string;
@@ -7720,6 +6581,193 @@ export declare const schemaDict: {
7720
6581
  };
7721
6582
  };
7722
6583
  };
6584
+ AppBskyLabelerDefs: {
6585
+ lexicon: number;
6586
+ id: string;
6587
+ defs: {
6588
+ labelerView: {
6589
+ type: string;
6590
+ required: string[];
6591
+ properties: {
6592
+ uri: {
6593
+ type: string;
6594
+ format: string;
6595
+ };
6596
+ cid: {
6597
+ type: string;
6598
+ format: string;
6599
+ };
6600
+ creator: {
6601
+ type: string;
6602
+ ref: string;
6603
+ };
6604
+ likeCount: {
6605
+ type: string;
6606
+ minimum: number;
6607
+ };
6608
+ viewer: {
6609
+ type: string;
6610
+ ref: string;
6611
+ };
6612
+ indexedAt: {
6613
+ type: string;
6614
+ format: string;
6615
+ };
6616
+ labels: {
6617
+ type: string;
6618
+ items: {
6619
+ type: string;
6620
+ ref: string;
6621
+ };
6622
+ };
6623
+ };
6624
+ };
6625
+ labelerViewDetailed: {
6626
+ type: string;
6627
+ required: string[];
6628
+ properties: {
6629
+ uri: {
6630
+ type: string;
6631
+ format: string;
6632
+ };
6633
+ cid: {
6634
+ type: string;
6635
+ format: string;
6636
+ };
6637
+ creator: {
6638
+ type: string;
6639
+ ref: string;
6640
+ };
6641
+ policies: {
6642
+ type: string;
6643
+ ref: string;
6644
+ };
6645
+ likeCount: {
6646
+ type: string;
6647
+ minimum: number;
6648
+ };
6649
+ viewer: {
6650
+ type: string;
6651
+ ref: string;
6652
+ };
6653
+ indexedAt: {
6654
+ type: string;
6655
+ format: string;
6656
+ };
6657
+ labels: {
6658
+ type: string;
6659
+ items: {
6660
+ type: string;
6661
+ ref: string;
6662
+ };
6663
+ };
6664
+ };
6665
+ };
6666
+ labelerViewerState: {
6667
+ type: string;
6668
+ properties: {
6669
+ like: {
6670
+ type: string;
6671
+ format: string;
6672
+ };
6673
+ };
6674
+ };
6675
+ labelerPolicies: {
6676
+ type: string;
6677
+ required: string[];
6678
+ properties: {
6679
+ labelValues: {
6680
+ type: string;
6681
+ description: string;
6682
+ items: {
6683
+ type: string;
6684
+ ref: string;
6685
+ };
6686
+ };
6687
+ labelValueDefinitions: {
6688
+ type: string;
6689
+ description: string;
6690
+ items: {
6691
+ type: string;
6692
+ ref: string;
6693
+ };
6694
+ };
6695
+ };
6696
+ };
6697
+ };
6698
+ };
6699
+ AppBskyLabelerGetServices: {
6700
+ lexicon: number;
6701
+ id: string;
6702
+ defs: {
6703
+ main: {
6704
+ type: string;
6705
+ description: string;
6706
+ parameters: {
6707
+ type: string;
6708
+ required: string[];
6709
+ properties: {
6710
+ dids: {
6711
+ type: string;
6712
+ items: {
6713
+ type: string;
6714
+ format: string;
6715
+ };
6716
+ };
6717
+ detailed: {
6718
+ type: string;
6719
+ default: boolean;
6720
+ };
6721
+ };
6722
+ };
6723
+ output: {
6724
+ encoding: string;
6725
+ schema: {
6726
+ type: string;
6727
+ required: string[];
6728
+ properties: {
6729
+ views: {
6730
+ type: string;
6731
+ items: {
6732
+ type: string;
6733
+ refs: string[];
6734
+ };
6735
+ };
6736
+ };
6737
+ };
6738
+ };
6739
+ };
6740
+ };
6741
+ };
6742
+ AppBskyLabelerService: {
6743
+ lexicon: number;
6744
+ id: string;
6745
+ defs: {
6746
+ main: {
6747
+ type: string;
6748
+ description: string;
6749
+ key: string;
6750
+ record: {
6751
+ type: string;
6752
+ required: string[];
6753
+ properties: {
6754
+ policies: {
6755
+ type: string;
6756
+ ref: string;
6757
+ };
6758
+ labels: {
6759
+ type: string;
6760
+ refs: string[];
6761
+ };
6762
+ createdAt: {
6763
+ type: string;
6764
+ format: string;
6765
+ };
6766
+ };
6767
+ };
6768
+ };
6769
+ };
6770
+ };
7723
6771
  AppBskyNotificationGetUnreadCount: {
7724
6772
  lexicon: number;
7725
6773
  id: string;
@@ -8214,30 +7262,19 @@ export declare const schemaDict: {
8214
7262
  export declare const schemas: LexiconDoc[];
8215
7263
  export declare const lexicons: Lexicons;
8216
7264
  export declare const ids: {
8217
- ComAtprotoAdminCreateCommunicationTemplate: string;
8218
7265
  ComAtprotoAdminDefs: string;
8219
7266
  ComAtprotoAdminDeleteAccount: string;
8220
- ComAtprotoAdminDeleteCommunicationTemplate: string;
8221
7267
  ComAtprotoAdminDisableAccountInvites: string;
8222
7268
  ComAtprotoAdminDisableInviteCodes: string;
8223
- ComAtprotoAdminEmitModerationEvent: string;
8224
7269
  ComAtprotoAdminEnableAccountInvites: string;
8225
7270
  ComAtprotoAdminGetAccountInfo: string;
8226
7271
  ComAtprotoAdminGetAccountInfos: string;
8227
7272
  ComAtprotoAdminGetInviteCodes: string;
8228
- ComAtprotoAdminGetModerationEvent: string;
8229
- ComAtprotoAdminGetRecord: string;
8230
- ComAtprotoAdminGetRepo: string;
8231
7273
  ComAtprotoAdminGetSubjectStatus: string;
8232
- ComAtprotoAdminListCommunicationTemplates: string;
8233
- ComAtprotoAdminQueryModerationEvents: string;
8234
- ComAtprotoAdminQueryModerationStatuses: string;
8235
- ComAtprotoAdminSearchRepos: string;
8236
7274
  ComAtprotoAdminSendEmail: string;
8237
7275
  ComAtprotoAdminUpdateAccountEmail: string;
8238
7276
  ComAtprotoAdminUpdateAccountHandle: string;
8239
7277
  ComAtprotoAdminUpdateAccountPassword: string;
8240
- ComAtprotoAdminUpdateCommunicationTemplate: string;
8241
7278
  ComAtprotoAdminUpdateSubjectStatus: string;
8242
7279
  ComAtprotoIdentityGetRecommendedDidCredentials: string;
8243
7280
  ComAtprotoIdentityRequestPlcOperationSignature: string;
@@ -8357,6 +7394,9 @@ export declare const ids: {
8357
7394
  AppBskyGraphMuteActorList: string;
8358
7395
  AppBskyGraphUnmuteActor: string;
8359
7396
  AppBskyGraphUnmuteActorList: string;
7397
+ AppBskyLabelerDefs: string;
7398
+ AppBskyLabelerGetServices: string;
7399
+ AppBskyLabelerService: string;
8360
7400
  AppBskyNotificationGetUnreadCount: string;
8361
7401
  AppBskyNotificationListNotifications: string;
8362
7402
  AppBskyNotificationRegisterPush: string;