@atproto/api 0.0.6 → 0.0.8

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 (86) hide show
  1. package/dist/client/index.d.ts +75 -44
  2. package/dist/client/lexicons.d.ts +1075 -407
  3. package/dist/client/types/app/bsky/actor/getProfile.d.ts +0 -2
  4. package/dist/client/types/app/bsky/actor/search.d.ts +1 -1
  5. package/dist/client/types/app/bsky/actor/searchTypeahead.d.ts +1 -1
  6. package/dist/client/types/app/bsky/actor/updateProfile.d.ts +0 -1
  7. package/dist/client/types/app/bsky/feed/feedViewPost.d.ts +1 -8
  8. package/dist/client/types/app/bsky/graph/getFollows.d.ts +1 -0
  9. package/dist/client/types/app/bsky/notification/list.d.ts +1 -1
  10. package/dist/client/types/app/bsky/system/declRef.d.ts +1 -1
  11. package/dist/client/types/app/bsky/system/declaration.d.ts +1 -1
  12. package/dist/client/types/com/atproto/account/delete.d.ts +14 -2
  13. package/dist/client/types/com/atproto/account/requestDelete.d.ts +13 -0
  14. package/dist/client/types/com/atproto/admin/getModerationAction.d.ts +16 -0
  15. package/dist/client/types/com/atproto/admin/getModerationActions.d.ts +22 -0
  16. package/dist/client/types/com/atproto/admin/getModerationReport.d.ts +16 -0
  17. package/dist/client/types/com/atproto/admin/getModerationReports.d.ts +23 -0
  18. package/dist/client/types/com/atproto/admin/getRecord.d.ts +17 -0
  19. package/dist/client/types/com/atproto/admin/getRepo.d.ts +16 -0
  20. package/dist/client/types/com/atproto/admin/moderationAction.d.ts +49 -0
  21. package/dist/client/types/com/atproto/admin/moderationReport.d.ts +37 -0
  22. package/dist/client/types/com/atproto/admin/record.d.ts +40 -0
  23. package/dist/client/types/com/atproto/admin/repo.d.ts +45 -0
  24. package/dist/client/types/com/atproto/admin/resolveModerationReports.d.ts +22 -0
  25. package/dist/client/types/com/atproto/admin/reverseModerationAction.d.ts +22 -0
  26. package/dist/client/types/com/atproto/admin/searchRepos.d.ts +22 -0
  27. package/dist/client/types/com/atproto/admin/takeModerationAction.d.ts +28 -0
  28. package/dist/client/types/com/atproto/repo/recordRef.d.ts +8 -0
  29. package/dist/client/types/com/atproto/repo/repoRef.d.ts +7 -0
  30. package/dist/client/types/com/atproto/report/create.d.ts +39 -0
  31. package/dist/client/types/com/atproto/report/reasonType.d.ts +3 -0
  32. package/dist/client/types/com/atproto/report/subject.d.ts +23 -0
  33. package/dist/client/types/com/atproto/session/create.d.ts +5 -2
  34. package/dist/client/types/com/atproto/session/refresh.d.ts +4 -1
  35. package/dist/client/types/com/atproto/sync/getCheckout.d.ts +15 -0
  36. package/dist/client/types/com/atproto/sync/getCommitPath.d.ts +20 -0
  37. package/dist/client/types/com/atproto/sync/getHead.d.ts +18 -0
  38. package/dist/client/types/com/atproto/sync/getRecord.d.ts +17 -0
  39. package/dist/index.js +1997 -927
  40. package/dist/index.js.map +4 -4
  41. package/package.json +1 -1
  42. package/src/client/index.ts +249 -142
  43. package/src/client/lexicons.ts +1223 -478
  44. package/src/client/types/app/bsky/actor/getProfile.ts +0 -2
  45. package/src/client/types/app/bsky/actor/search.ts +1 -1
  46. package/src/client/types/app/bsky/actor/searchTypeahead.ts +1 -1
  47. package/src/client/types/app/bsky/actor/updateProfile.ts +0 -1
  48. package/src/client/types/app/bsky/feed/feedViewPost.ts +1 -19
  49. package/src/client/types/app/bsky/graph/getFollows.ts +1 -0
  50. package/src/client/types/app/bsky/notification/list.ts +1 -2
  51. package/src/client/types/app/bsky/system/declRef.ts +1 -4
  52. package/src/client/types/app/bsky/system/declaration.ts +1 -4
  53. package/src/client/types/com/atproto/account/delete.ts +21 -1
  54. package/src/client/types/com/atproto/account/requestDelete.ts +27 -0
  55. package/src/client/types/com/atproto/admin/getModerationAction.ts +31 -0
  56. package/src/client/types/com/atproto/admin/getModerationActions.ts +38 -0
  57. package/src/client/types/com/atproto/admin/getModerationReport.ts +31 -0
  58. package/src/client/types/com/atproto/admin/getModerationReports.ts +39 -0
  59. package/src/client/types/com/atproto/admin/getRecord.ts +32 -0
  60. package/src/client/types/com/atproto/admin/getRepo.ts +31 -0
  61. package/src/client/types/com/atproto/admin/moderationAction.ts +99 -0
  62. package/src/client/types/com/atproto/admin/moderationReport.ts +64 -0
  63. package/src/client/types/com/atproto/admin/record.ts +89 -0
  64. package/src/client/types/com/atproto/admin/repo.ts +103 -0
  65. package/src/client/types/com/atproto/admin/resolveModerationReports.ts +37 -0
  66. package/src/client/types/com/atproto/admin/reverseModerationAction.ts +37 -0
  67. package/src/client/types/com/atproto/admin/searchRepos.ts +38 -0
  68. package/src/client/types/com/atproto/admin/takeModerationAction.ts +47 -0
  69. package/src/client/types/com/atproto/repo/recordRef.ts +25 -0
  70. package/src/client/types/com/atproto/repo/repoRef.ts +24 -0
  71. package/src/client/types/com/atproto/report/create.ts +54 -0
  72. package/src/client/types/com/atproto/report/reasonType.ts +16 -0
  73. package/src/client/types/com/atproto/report/subject.ts +66 -0
  74. package/src/client/types/com/atproto/session/create.ts +9 -1
  75. package/src/client/types/com/atproto/session/refresh.ts +7 -0
  76. package/src/client/types/com/atproto/sync/{updateRepo.ts → getCheckout.ts} +4 -3
  77. package/src/client/types/com/atproto/sync/getCommitPath.ts +39 -0
  78. package/src/client/types/com/atproto/sync/{getRoot.ts → getHead.ts} +0 -0
  79. package/src/client/types/com/atproto/sync/getRecord.ts +34 -0
  80. package/tsconfig.build.tsbuildinfo +1 -1
  81. package/src/client/types/app/bsky/actor/createScene.ts +0 -55
  82. package/src/client/types/app/bsky/feed/trend.ts +0 -26
  83. package/src/client/types/app/bsky/graph/getAssertions.ts +0 -85
  84. package/src/client/types/app/bsky/graph/getMembers.ts +0 -62
  85. package/src/client/types/app/bsky/graph/getMemberships.ts +0 -62
  86. package/src/client/types/app/bsky/system/actorScene.ts +0 -9
@@ -99,20 +99,713 @@ export declare const schemaDict: {
99
99
  main: {
100
100
  type: string;
101
101
  description: string;
102
+ input: {
103
+ encoding: string;
104
+ schema: {
105
+ type: string;
106
+ required: string[];
107
+ properties: {
108
+ did: {
109
+ type: string;
110
+ };
111
+ password: {
112
+ type: string;
113
+ };
114
+ token: {
115
+ type: string;
116
+ };
117
+ };
118
+ };
119
+ };
120
+ errors: {
121
+ name: string;
122
+ }[];
123
+ };
124
+ };
125
+ };
126
+ ComAtprotoAccountGet: {
127
+ lexicon: number;
128
+ id: string;
129
+ defs: {
130
+ main: {
131
+ type: string;
132
+ description: string;
133
+ };
134
+ };
135
+ };
136
+ ComAtprotoAccountRequestDelete: {
137
+ lexicon: number;
138
+ id: string;
139
+ defs: {
140
+ main: {
141
+ type: string;
142
+ description: string;
143
+ };
144
+ };
145
+ };
146
+ ComAtprotoAccountRequestPasswordReset: {
147
+ lexicon: number;
148
+ id: string;
149
+ defs: {
150
+ main: {
151
+ type: string;
152
+ description: string;
153
+ input: {
154
+ encoding: string;
155
+ schema: {
156
+ type: string;
157
+ required: string[];
158
+ properties: {
159
+ email: {
160
+ type: string;
161
+ };
162
+ };
163
+ };
164
+ };
165
+ };
166
+ };
167
+ };
168
+ ComAtprotoAccountResetPassword: {
169
+ lexicon: number;
170
+ id: string;
171
+ defs: {
172
+ main: {
173
+ type: string;
174
+ description: string;
175
+ input: {
176
+ encoding: string;
177
+ schema: {
178
+ type: string;
179
+ required: string[];
180
+ properties: {
181
+ token: {
182
+ type: string;
183
+ };
184
+ password: {
185
+ type: string;
186
+ };
187
+ };
188
+ };
189
+ };
190
+ errors: {
191
+ name: string;
192
+ }[];
193
+ };
194
+ };
195
+ };
196
+ ComAtprotoAdminGetModerationAction: {
197
+ lexicon: number;
198
+ id: string;
199
+ defs: {
200
+ main: {
201
+ type: string;
202
+ description: string;
203
+ parameters: {
204
+ type: string;
205
+ required: string[];
206
+ properties: {
207
+ id: {
208
+ type: string;
209
+ };
210
+ };
211
+ };
212
+ output: {
213
+ encoding: string;
214
+ schema: {
215
+ type: string;
216
+ ref: string;
217
+ };
218
+ };
219
+ };
220
+ };
221
+ };
222
+ ComAtprotoAdminGetModerationActions: {
223
+ lexicon: number;
224
+ id: string;
225
+ defs: {
226
+ main: {
227
+ type: string;
228
+ description: string;
229
+ parameters: {
230
+ type: string;
231
+ properties: {
232
+ subject: {
233
+ type: string;
234
+ };
235
+ limit: {
236
+ type: string;
237
+ minimum: number;
238
+ maximum: number;
239
+ default: number;
240
+ };
241
+ before: {
242
+ type: string;
243
+ };
244
+ };
245
+ };
246
+ output: {
247
+ encoding: string;
248
+ schema: {
249
+ type: string;
250
+ required: string[];
251
+ properties: {
252
+ cursor: {
253
+ type: string;
254
+ };
255
+ actions: {
256
+ type: string;
257
+ items: {
258
+ type: string;
259
+ ref: string;
260
+ };
261
+ };
262
+ };
263
+ };
264
+ };
265
+ };
266
+ };
267
+ };
268
+ ComAtprotoAdminGetModerationReport: {
269
+ lexicon: number;
270
+ id: string;
271
+ defs: {
272
+ main: {
273
+ type: string;
274
+ description: string;
275
+ parameters: {
276
+ type: string;
277
+ required: string[];
278
+ properties: {
279
+ id: {
280
+ type: string;
281
+ };
282
+ };
283
+ };
284
+ output: {
285
+ encoding: string;
286
+ schema: {
287
+ type: string;
288
+ ref: string;
289
+ };
290
+ };
291
+ };
292
+ };
293
+ };
294
+ ComAtprotoAdminGetModerationReports: {
295
+ lexicon: number;
296
+ id: string;
297
+ defs: {
298
+ main: {
299
+ type: string;
300
+ description: string;
301
+ parameters: {
302
+ type: string;
303
+ properties: {
304
+ subject: {
305
+ type: string;
306
+ };
307
+ resolved: {
308
+ type: string;
309
+ };
310
+ limit: {
311
+ type: string;
312
+ minimum: number;
313
+ maximum: number;
314
+ default: number;
315
+ };
316
+ before: {
317
+ type: string;
318
+ };
319
+ };
320
+ };
321
+ output: {
322
+ encoding: string;
323
+ schema: {
324
+ type: string;
325
+ required: string[];
326
+ properties: {
327
+ cursor: {
328
+ type: string;
329
+ };
330
+ reports: {
331
+ type: string;
332
+ items: {
333
+ type: string;
334
+ ref: string;
335
+ };
336
+ };
337
+ };
338
+ };
339
+ };
340
+ };
341
+ };
342
+ };
343
+ ComAtprotoAdminGetRecord: {
344
+ lexicon: number;
345
+ id: string;
346
+ defs: {
347
+ main: {
348
+ type: string;
349
+ description: string;
350
+ parameters: {
351
+ type: string;
352
+ required: string[];
353
+ properties: {
354
+ uri: {
355
+ type: string;
356
+ };
357
+ cid: {
358
+ type: string;
359
+ };
360
+ };
361
+ };
362
+ output: {
363
+ encoding: string;
364
+ schema: {
365
+ type: string;
366
+ ref: string;
367
+ };
368
+ };
369
+ };
370
+ };
371
+ };
372
+ ComAtprotoAdminGetRepo: {
373
+ lexicon: number;
374
+ id: string;
375
+ defs: {
376
+ main: {
377
+ type: string;
378
+ description: string;
379
+ parameters: {
380
+ type: string;
381
+ required: string[];
382
+ properties: {
383
+ did: {
384
+ type: string;
385
+ };
386
+ };
387
+ };
388
+ output: {
389
+ encoding: string;
390
+ schema: {
391
+ type: string;
392
+ ref: string;
393
+ };
394
+ };
395
+ };
396
+ };
397
+ };
398
+ ComAtprotoAdminModerationAction: {
399
+ lexicon: number;
400
+ id: string;
401
+ defs: {
402
+ view: {
403
+ type: string;
404
+ required: string[];
405
+ properties: {
406
+ id: {
407
+ type: string;
408
+ };
409
+ action: {
410
+ type: string;
411
+ knownValues: string[];
412
+ };
413
+ subject: {
414
+ type: string;
415
+ refs: string[];
416
+ };
417
+ reason: {
418
+ type: string;
419
+ };
420
+ createdBy: {
421
+ type: string;
422
+ };
423
+ createdAt: {
424
+ type: string;
425
+ };
426
+ reversal: {
427
+ type: string;
428
+ ref: string;
429
+ };
430
+ resolvedReportIds: {
431
+ type: string;
432
+ items: {
433
+ type: string;
434
+ };
435
+ };
436
+ };
437
+ };
438
+ viewDetail: {
439
+ type: string;
440
+ required: string[];
441
+ properties: {
442
+ id: {
443
+ type: string;
444
+ };
445
+ action: {
446
+ type: string;
447
+ knownValues: string[];
448
+ };
449
+ subject: {
450
+ type: string;
451
+ refs: string[];
452
+ };
453
+ reason: {
454
+ type: string;
455
+ };
456
+ createdBy: {
457
+ type: string;
458
+ };
459
+ createdAt: {
460
+ type: string;
461
+ };
462
+ reversal: {
463
+ type: string;
464
+ ref: string;
465
+ };
466
+ resolvedReports: {
467
+ type: string;
468
+ items: {
469
+ type: string;
470
+ ref: string;
471
+ };
472
+ };
473
+ };
474
+ };
475
+ reversal: {
476
+ type: string;
477
+ required: string[];
478
+ properties: {
479
+ reason: {
480
+ type: string;
481
+ };
482
+ createdBy: {
483
+ type: string;
484
+ };
485
+ createdAt: {
486
+ type: string;
487
+ };
488
+ };
489
+ };
490
+ takedown: {
491
+ type: string;
492
+ description: string;
493
+ };
494
+ flag: {
495
+ type: string;
496
+ description: string;
497
+ };
498
+ acknowledge: {
499
+ type: string;
500
+ description: string;
501
+ };
502
+ };
503
+ };
504
+ ComAtprotoAdminModerationReport: {
505
+ lexicon: number;
506
+ id: string;
507
+ defs: {
508
+ view: {
509
+ type: string;
510
+ required: string[];
511
+ properties: {
512
+ id: {
513
+ type: string;
514
+ };
515
+ reasonType: {
516
+ type: string;
517
+ ref: string;
518
+ };
519
+ reason: {
520
+ type: string;
521
+ };
522
+ subject: {
523
+ type: string;
524
+ refs: string[];
525
+ };
526
+ reportedByDid: {
527
+ type: string;
528
+ };
529
+ createdAt: {
530
+ type: string;
531
+ };
532
+ resolvedByActionIds: {
533
+ type: string;
534
+ items: {
535
+ type: string;
536
+ };
537
+ };
538
+ };
539
+ };
540
+ viewDetail: {
541
+ type: string;
542
+ required: string[];
543
+ properties: {
544
+ id: {
545
+ type: string;
546
+ };
547
+ reasonType: {
548
+ type: string;
549
+ ref: string;
550
+ };
551
+ reason: {
552
+ type: string;
553
+ };
554
+ subject: {
555
+ type: string;
556
+ refs: string[];
557
+ };
558
+ reportedByDid: {
559
+ type: string;
560
+ };
561
+ createdAt: {
562
+ type: string;
563
+ };
564
+ resolvedByActions: {
565
+ type: string;
566
+ items: {
567
+ type: string;
568
+ ref: string;
569
+ };
570
+ };
571
+ };
572
+ };
573
+ };
574
+ };
575
+ ComAtprotoAdminRecord: {
576
+ lexicon: number;
577
+ id: string;
578
+ defs: {
579
+ view: {
580
+ type: string;
581
+ required: string[];
582
+ properties: {
583
+ uri: {
584
+ type: string;
585
+ };
586
+ cid: {
587
+ type: string;
588
+ };
589
+ value: {
590
+ type: string;
591
+ };
592
+ indexedAt: {
593
+ type: string;
594
+ };
595
+ moderation: {
596
+ type: string;
597
+ ref: string;
598
+ };
599
+ repo: {
600
+ type: string;
601
+ ref: string;
602
+ };
603
+ };
604
+ };
605
+ viewDetail: {
606
+ type: string;
607
+ required: string[];
608
+ properties: {
609
+ uri: {
610
+ type: string;
611
+ };
612
+ cid: {
613
+ type: string;
614
+ };
615
+ value: {
616
+ type: string;
617
+ };
618
+ indexedAt: {
619
+ type: string;
620
+ };
621
+ moderation: {
622
+ type: string;
623
+ ref: string;
624
+ };
625
+ repo: {
626
+ type: string;
627
+ ref: string;
628
+ };
629
+ };
630
+ };
631
+ moderation: {
632
+ type: string;
633
+ required: never[];
634
+ properties: {
635
+ takedownId: {
636
+ type: string;
637
+ };
638
+ };
639
+ };
640
+ moderationDetail: {
641
+ type: string;
642
+ required: string[];
643
+ properties: {
644
+ actions: {
645
+ type: string;
646
+ items: {
647
+ type: string;
648
+ ref: string;
649
+ };
650
+ };
651
+ reports: {
652
+ type: string;
653
+ items: {
654
+ type: string;
655
+ ref: string;
656
+ };
657
+ };
658
+ takedownId: {
659
+ type: string;
660
+ };
661
+ };
662
+ };
663
+ };
664
+ };
665
+ ComAtprotoAdminRepo: {
666
+ lexicon: number;
667
+ id: string;
668
+ defs: {
669
+ view: {
670
+ type: string;
671
+ required: string[];
672
+ properties: {
673
+ did: {
674
+ type: string;
675
+ };
676
+ handle: {
677
+ type: string;
678
+ };
679
+ account: {
680
+ type: string;
681
+ ref: string;
682
+ };
683
+ relatedRecords: {
684
+ type: string;
685
+ items: {
686
+ type: string;
687
+ };
688
+ };
689
+ indexedAt: {
690
+ type: string;
691
+ };
692
+ moderation: {
693
+ type: string;
694
+ ref: string;
695
+ };
696
+ };
697
+ };
698
+ viewDetail: {
699
+ type: string;
700
+ required: string[];
701
+ properties: {
702
+ did: {
703
+ type: string;
704
+ };
705
+ handle: {
706
+ type: string;
707
+ };
708
+ account: {
709
+ type: string;
710
+ ref: string;
711
+ };
712
+ relatedRecords: {
713
+ type: string;
714
+ items: {
715
+ type: string;
716
+ };
717
+ };
718
+ indexedAt: {
719
+ type: string;
720
+ };
721
+ moderation: {
722
+ type: string;
723
+ ref: string;
724
+ };
725
+ };
726
+ };
727
+ account: {
728
+ type: string;
729
+ required: string[];
730
+ properties: {
731
+ email: {
732
+ type: string;
733
+ };
734
+ };
735
+ };
736
+ moderation: {
737
+ type: string;
738
+ required: never[];
739
+ properties: {
740
+ takedownId: {
741
+ type: string;
742
+ };
743
+ };
744
+ };
745
+ moderationDetail: {
746
+ type: string;
747
+ required: string[];
748
+ properties: {
749
+ actions: {
750
+ type: string;
751
+ items: {
752
+ type: string;
753
+ ref: string;
754
+ };
755
+ };
756
+ reports: {
757
+ type: string;
758
+ items: {
759
+ type: string;
760
+ ref: string;
761
+ };
762
+ };
763
+ takedownId: {
764
+ type: string;
765
+ };
766
+ };
102
767
  };
103
768
  };
104
769
  };
105
- ComAtprotoAccountGet: {
770
+ ComAtprotoAdminResolveModerationReports: {
106
771
  lexicon: number;
107
772
  id: string;
108
773
  defs: {
109
774
  main: {
110
775
  type: string;
111
776
  description: string;
777
+ input: {
778
+ encoding: string;
779
+ schema: {
780
+ type: string;
781
+ required: string[];
782
+ properties: {
783
+ actionId: {
784
+ type: string;
785
+ };
786
+ reportIds: {
787
+ type: string;
788
+ items: {
789
+ type: string;
790
+ };
791
+ };
792
+ createdBy: {
793
+ type: string;
794
+ };
795
+ };
796
+ };
797
+ };
798
+ output: {
799
+ encoding: string;
800
+ schema: {
801
+ type: string;
802
+ ref: string;
803
+ };
804
+ };
112
805
  };
113
806
  };
114
807
  };
115
- ComAtprotoAccountRequestPasswordReset: {
808
+ ComAtprotoAdminReverseModerationAction: {
116
809
  lexicon: number;
117
810
  id: string;
118
811
  defs: {
@@ -125,16 +818,75 @@ export declare const schemaDict: {
125
818
  type: string;
126
819
  required: string[];
127
820
  properties: {
128
- email: {
821
+ id: {
822
+ type: string;
823
+ };
824
+ reason: {
825
+ type: string;
826
+ };
827
+ createdBy: {
129
828
  type: string;
130
829
  };
131
830
  };
132
831
  };
133
832
  };
833
+ output: {
834
+ encoding: string;
835
+ schema: {
836
+ type: string;
837
+ ref: string;
838
+ };
839
+ };
134
840
  };
135
841
  };
136
842
  };
137
- ComAtprotoAccountResetPassword: {
843
+ ComAtprotoAdminSearchRepos: {
844
+ lexicon: number;
845
+ id: string;
846
+ defs: {
847
+ main: {
848
+ type: string;
849
+ description: string;
850
+ parameters: {
851
+ type: string;
852
+ properties: {
853
+ term: {
854
+ type: string;
855
+ };
856
+ limit: {
857
+ type: string;
858
+ minimum: number;
859
+ maximum: number;
860
+ default: number;
861
+ };
862
+ before: {
863
+ type: string;
864
+ };
865
+ };
866
+ };
867
+ output: {
868
+ encoding: string;
869
+ schema: {
870
+ type: string;
871
+ required: string[];
872
+ properties: {
873
+ cursor: {
874
+ type: string;
875
+ };
876
+ repos: {
877
+ type: string;
878
+ items: {
879
+ type: string;
880
+ ref: string;
881
+ };
882
+ };
883
+ };
884
+ };
885
+ };
886
+ };
887
+ };
888
+ };
889
+ ComAtprotoAdminTakeModerationAction: {
138
890
  lexicon: number;
139
891
  id: string;
140
892
  defs: {
@@ -147,18 +899,30 @@ export declare const schemaDict: {
147
899
  type: string;
148
900
  required: string[];
149
901
  properties: {
150
- token: {
902
+ action: {
151
903
  type: string;
904
+ knownValues: string[];
152
905
  };
153
- password: {
906
+ subject: {
907
+ type: string;
908
+ refs: string[];
909
+ };
910
+ reason: {
911
+ type: string;
912
+ };
913
+ createdBy: {
154
914
  type: string;
155
915
  };
156
916
  };
157
917
  };
158
918
  };
159
- errors: {
160
- name: string;
161
- }[];
919
+ output: {
920
+ encoding: string;
921
+ schema: {
922
+ type: string;
923
+ ref: string;
924
+ };
925
+ };
162
926
  };
163
927
  };
164
928
  };
@@ -531,23 +1295,135 @@ export declare const schemaDict: {
531
1295
  encoding: string;
532
1296
  schema: {
533
1297
  type: string;
534
- required: string[];
535
- properties: {
536
- cursor: {
537
- type: string;
538
- };
539
- records: {
540
- type: string;
541
- items: {
542
- type: string;
543
- ref: string;
544
- };
545
- };
546
- };
1298
+ required: string[];
1299
+ properties: {
1300
+ cursor: {
1301
+ type: string;
1302
+ };
1303
+ records: {
1304
+ type: string;
1305
+ items: {
1306
+ type: string;
1307
+ ref: string;
1308
+ };
1309
+ };
1310
+ };
1311
+ };
1312
+ };
1313
+ };
1314
+ record: {
1315
+ type: string;
1316
+ required: string[];
1317
+ properties: {
1318
+ uri: {
1319
+ type: string;
1320
+ };
1321
+ cid: {
1322
+ type: string;
1323
+ };
1324
+ value: {
1325
+ type: string;
1326
+ };
1327
+ };
1328
+ };
1329
+ };
1330
+ };
1331
+ ComAtprotoRepoPutRecord: {
1332
+ lexicon: number;
1333
+ id: string;
1334
+ defs: {
1335
+ main: {
1336
+ type: string;
1337
+ description: string;
1338
+ input: {
1339
+ encoding: string;
1340
+ schema: {
1341
+ type: string;
1342
+ required: string[];
1343
+ properties: {
1344
+ did: {
1345
+ type: string;
1346
+ description: string;
1347
+ };
1348
+ collection: {
1349
+ type: string;
1350
+ description: string;
1351
+ };
1352
+ rkey: {
1353
+ type: string;
1354
+ description: string;
1355
+ };
1356
+ validate: {
1357
+ type: string;
1358
+ default: boolean;
1359
+ description: string;
1360
+ };
1361
+ record: {
1362
+ type: string;
1363
+ description: string;
1364
+ };
1365
+ };
1366
+ };
1367
+ };
1368
+ output: {
1369
+ encoding: string;
1370
+ schema: {
1371
+ type: string;
1372
+ required: string[];
1373
+ properties: {
1374
+ uri: {
1375
+ type: string;
1376
+ };
1377
+ cid: {
1378
+ type: string;
1379
+ };
1380
+ };
1381
+ };
1382
+ };
1383
+ };
1384
+ };
1385
+ };
1386
+ ComAtprotoRepoRecordRef: {
1387
+ lexicon: number;
1388
+ id: string;
1389
+ description: string;
1390
+ defs: {
1391
+ main: {
1392
+ type: string;
1393
+ required: string[];
1394
+ properties: {
1395
+ uri: {
1396
+ type: string;
1397
+ };
1398
+ cid: {
1399
+ type: string;
1400
+ };
1401
+ };
1402
+ };
1403
+ };
1404
+ };
1405
+ ComAtprotoRepoRepoRef: {
1406
+ lexicon: number;
1407
+ id: string;
1408
+ description: string;
1409
+ defs: {
1410
+ main: {
1411
+ type: string;
1412
+ required: string[];
1413
+ properties: {
1414
+ did: {
1415
+ type: string;
547
1416
  };
548
1417
  };
549
1418
  };
550
- record: {
1419
+ };
1420
+ };
1421
+ ComAtprotoRepoStrongRef: {
1422
+ lexicon: number;
1423
+ id: string;
1424
+ description: string;
1425
+ defs: {
1426
+ main: {
551
1427
  type: string;
552
1428
  required: string[];
553
1429
  properties: {
@@ -557,14 +1433,11 @@ export declare const schemaDict: {
557
1433
  cid: {
558
1434
  type: string;
559
1435
  };
560
- value: {
561
- type: string;
562
- };
563
1436
  };
564
1437
  };
565
1438
  };
566
1439
  };
567
- ComAtprotoRepoPutRecord: {
1440
+ ComAtprotoReportCreate: {
568
1441
  lexicon: number;
569
1442
  id: string;
570
1443
  defs: {
@@ -577,26 +1450,16 @@ export declare const schemaDict: {
577
1450
  type: string;
578
1451
  required: string[];
579
1452
  properties: {
580
- did: {
581
- type: string;
582
- description: string;
583
- };
584
- collection: {
585
- type: string;
586
- description: string;
587
- };
588
- rkey: {
1453
+ reasonType: {
589
1454
  type: string;
590
- description: string;
1455
+ ref: string;
591
1456
  };
592
- validate: {
1457
+ reason: {
593
1458
  type: string;
594
- default: boolean;
595
- description: string;
596
1459
  };
597
- record: {
1460
+ subject: {
598
1461
  type: string;
599
- description: string;
1462
+ refs: string[];
600
1463
  };
601
1464
  };
602
1465
  };
@@ -607,10 +1470,24 @@ export declare const schemaDict: {
607
1470
  type: string;
608
1471
  required: string[];
609
1472
  properties: {
610
- uri: {
1473
+ id: {
611
1474
  type: string;
612
1475
  };
613
- cid: {
1476
+ reasonType: {
1477
+ type: string;
1478
+ ref: string;
1479
+ };
1480
+ reason: {
1481
+ type: string;
1482
+ };
1483
+ subject: {
1484
+ type: string;
1485
+ refs: string[];
1486
+ };
1487
+ reportedByDid: {
1488
+ type: string;
1489
+ };
1490
+ createdAt: {
614
1491
  type: string;
615
1492
  };
616
1493
  };
@@ -619,12 +1496,61 @@ export declare const schemaDict: {
619
1496
  };
620
1497
  };
621
1498
  };
622
- ComAtprotoRepoStrongRef: {
1499
+ ComAtprotoReportReasonType: {
623
1500
  lexicon: number;
624
1501
  id: string;
625
- description: string;
626
1502
  defs: {
627
1503
  main: {
1504
+ type: string;
1505
+ knownValues: string[];
1506
+ };
1507
+ spam: {
1508
+ type: string;
1509
+ description: string;
1510
+ };
1511
+ other: {
1512
+ type: string;
1513
+ description: string;
1514
+ };
1515
+ };
1516
+ };
1517
+ ComAtprotoReportSubject: {
1518
+ lexicon: number;
1519
+ id: string;
1520
+ defs: {
1521
+ repo: {
1522
+ type: string;
1523
+ required: string[];
1524
+ properties: {
1525
+ did: {
1526
+ type: string;
1527
+ description: string;
1528
+ };
1529
+ };
1530
+ };
1531
+ record: {
1532
+ type: string;
1533
+ required: string[];
1534
+ properties: {
1535
+ did: {
1536
+ type: string;
1537
+ description: string;
1538
+ };
1539
+ collection: {
1540
+ type: string;
1541
+ description: string;
1542
+ };
1543
+ rkey: {
1544
+ type: string;
1545
+ description: string;
1546
+ };
1547
+ cid: {
1548
+ type: string;
1549
+ description: string;
1550
+ };
1551
+ };
1552
+ };
1553
+ recordRef: {
628
1554
  type: string;
629
1555
  required: string[];
630
1556
  properties: {
@@ -694,8 +1620,9 @@ export declare const schemaDict: {
694
1620
  type: string;
695
1621
  required: string[];
696
1622
  properties: {
697
- handle: {
1623
+ identifier: {
698
1624
  type: string;
1625
+ description: string;
699
1626
  };
700
1627
  password: {
701
1628
  type: string;
@@ -724,6 +1651,9 @@ export declare const schemaDict: {
724
1651
  };
725
1652
  };
726
1653
  };
1654
+ errors: {
1655
+ name: string;
1656
+ }[];
727
1657
  };
728
1658
  };
729
1659
  };
@@ -790,10 +1720,13 @@ export declare const schemaDict: {
790
1720
  };
791
1721
  };
792
1722
  };
1723
+ errors: {
1724
+ name: string;
1725
+ }[];
793
1726
  };
794
1727
  };
795
1728
  };
796
- ComAtprotoSyncGetRepo: {
1729
+ ComAtprotoSyncGetCheckout: {
797
1730
  lexicon: number;
798
1731
  id: string;
799
1732
  defs: {
@@ -808,7 +1741,7 @@ export declare const schemaDict: {
808
1741
  type: string;
809
1742
  description: string;
810
1743
  };
811
- from: {
1744
+ commit: {
812
1745
  type: string;
813
1746
  description: string;
814
1747
  };
@@ -820,7 +1753,7 @@ export declare const schemaDict: {
820
1753
  };
821
1754
  };
822
1755
  };
823
- ComAtprotoSyncGetRoot: {
1756
+ ComAtprotoSyncGetCommitPath: {
824
1757
  lexicon: number;
825
1758
  id: string;
826
1759
  defs: {
@@ -835,6 +1768,14 @@ export declare const schemaDict: {
835
1768
  type: string;
836
1769
  description: string;
837
1770
  };
1771
+ latest: {
1772
+ type: string;
1773
+ description: string;
1774
+ };
1775
+ earliest: {
1776
+ type: string;
1777
+ description: string;
1778
+ };
838
1779
  };
839
1780
  };
840
1781
  output: {
@@ -843,8 +1784,11 @@ export declare const schemaDict: {
843
1784
  type: string;
844
1785
  required: string[];
845
1786
  properties: {
846
- root: {
1787
+ commits: {
847
1788
  type: string;
1789
+ items: {
1790
+ type: string;
1791
+ };
848
1792
  };
849
1793
  };
850
1794
  };
@@ -852,7 +1796,7 @@ export declare const schemaDict: {
852
1796
  };
853
1797
  };
854
1798
  };
855
- ComAtprotoSyncUpdateRepo: {
1799
+ ComAtprotoSyncGetHead: {
856
1800
  lexicon: number;
857
1801
  id: string;
858
1802
  defs: {
@@ -869,56 +1813,78 @@ export declare const schemaDict: {
869
1813
  };
870
1814
  };
871
1815
  };
872
- input: {
1816
+ output: {
873
1817
  encoding: string;
1818
+ schema: {
1819
+ type: string;
1820
+ required: string[];
1821
+ properties: {
1822
+ root: {
1823
+ type: string;
1824
+ };
1825
+ };
1826
+ };
874
1827
  };
875
1828
  };
876
1829
  };
877
1830
  };
878
- AppBskyActorCreateScene: {
1831
+ ComAtprotoSyncGetRecord: {
879
1832
  lexicon: number;
880
1833
  id: string;
881
1834
  defs: {
882
1835
  main: {
883
1836
  type: string;
884
1837
  description: string;
885
- input: {
886
- encoding: string;
887
- schema: {
888
- type: string;
889
- required: string[];
890
- properties: {
891
- handle: {
892
- type: string;
893
- };
894
- recoveryKey: {
895
- type: string;
896
- };
1838
+ parameters: {
1839
+ type: string;
1840
+ required: string[];
1841
+ properties: {
1842
+ did: {
1843
+ type: string;
1844
+ description: string;
1845
+ };
1846
+ collection: {
1847
+ type: string;
1848
+ };
1849
+ rkey: {
1850
+ type: string;
1851
+ };
1852
+ commit: {
1853
+ type: string;
1854
+ description: string;
897
1855
  };
898
1856
  };
899
1857
  };
900
1858
  output: {
901
1859
  encoding: string;
902
- schema: {
903
- type: string;
904
- required: string[];
905
- properties: {
906
- handle: {
907
- type: string;
908
- };
909
- did: {
910
- type: string;
911
- };
912
- declaration: {
913
- type: string;
914
- ref: string;
915
- };
1860
+ };
1861
+ };
1862
+ };
1863
+ };
1864
+ ComAtprotoSyncGetRepo: {
1865
+ lexicon: number;
1866
+ id: string;
1867
+ defs: {
1868
+ main: {
1869
+ type: string;
1870
+ description: string;
1871
+ parameters: {
1872
+ type: string;
1873
+ required: string[];
1874
+ properties: {
1875
+ did: {
1876
+ type: string;
1877
+ description: string;
1878
+ };
1879
+ from: {
1880
+ type: string;
1881
+ description: string;
916
1882
  };
917
1883
  };
918
1884
  };
919
- errors: {
920
- name: string;
921
- }[];
1885
+ output: {
1886
+ encoding: string;
1887
+ };
922
1888
  };
923
1889
  };
924
1890
  };
@@ -976,9 +1942,6 @@ export declare const schemaDict: {
976
1942
  followsCount: {
977
1943
  type: string;
978
1944
  };
979
- membersCount: {
980
- type: string;
981
- };
982
1945
  postsCount: {
983
1946
  type: string;
984
1947
  };
@@ -996,9 +1959,6 @@ export declare const schemaDict: {
996
1959
  follow: {
997
1960
  type: string;
998
1961
  };
999
- member: {
1000
- type: string;
1001
- };
1002
1962
  muted: {
1003
1963
  type: string;
1004
1964
  };
@@ -1191,7 +2151,6 @@ export declare const schemaDict: {
1191
2151
  description: string;
1192
2152
  parameters: {
1193
2153
  type: string;
1194
- required: string[];
1195
2154
  properties: {
1196
2155
  term: {
1197
2156
  type: string;
@@ -1267,7 +2226,6 @@ export declare const schemaDict: {
1267
2226
  description: string;
1268
2227
  parameters: {
1269
2228
  type: string;
1270
- required: string[];
1271
2229
  properties: {
1272
2230
  term: {
1273
2231
  type: string;
@@ -1334,9 +2292,6 @@ export declare const schemaDict: {
1334
2292
  schema: {
1335
2293
  type: string;
1336
2294
  properties: {
1337
- did: {
1338
- type: string;
1339
- };
1340
2295
  displayName: {
1341
2296
  type: string;
1342
2297
  maxLength: number;
@@ -1555,19 +2510,6 @@ export declare const schemaDict: {
1555
2510
  };
1556
2511
  };
1557
2512
  };
1558
- reasonTrend: {
1559
- type: string;
1560
- required: string[];
1561
- properties: {
1562
- by: {
1563
- type: string;
1564
- ref: string;
1565
- };
1566
- indexedAt: {
1567
- type: string;
1568
- };
1569
- };
1570
- };
1571
2513
  reasonRepost: {
1572
2514
  type: string;
1573
2515
  required: string[];
@@ -2107,30 +3049,7 @@ export declare const schemaDict: {
2107
3049
  };
2108
3050
  downvote: {
2109
3051
  type: string;
2110
- };
2111
- };
2112
- };
2113
- };
2114
- };
2115
- };
2116
- };
2117
- AppBskyFeedTrend: {
2118
- lexicon: number;
2119
- id: string;
2120
- defs: {
2121
- main: {
2122
- type: string;
2123
- key: string;
2124
- record: {
2125
- type: string;
2126
- required: string[];
2127
- properties: {
2128
- subject: {
2129
- type: string;
2130
- ref: string;
2131
- };
2132
- createdAt: {
2133
- type: string;
3052
+ };
2134
3053
  };
2135
3054
  };
2136
3055
  };
@@ -2261,112 +3180,6 @@ export declare const schemaDict: {
2261
3180
  };
2262
3181
  };
2263
3182
  };
2264
- AppBskyGraphGetAssertions: {
2265
- lexicon: number;
2266
- id: string;
2267
- defs: {
2268
- main: {
2269
- type: string;
2270
- description: string;
2271
- parameters: {
2272
- type: string;
2273
- properties: {
2274
- author: {
2275
- type: string;
2276
- };
2277
- subject: {
2278
- type: string;
2279
- };
2280
- assertion: {
2281
- type: string;
2282
- };
2283
- confirmed: {
2284
- type: string;
2285
- };
2286
- limit: {
2287
- type: string;
2288
- minimum: number;
2289
- maximum: number;
2290
- default: number;
2291
- };
2292
- before: {
2293
- type: string;
2294
- };
2295
- };
2296
- };
2297
- output: {
2298
- encoding: string;
2299
- schema: {
2300
- type: string;
2301
- required: string[];
2302
- properties: {
2303
- cursor: {
2304
- type: string;
2305
- };
2306
- assertions: {
2307
- type: string;
2308
- items: {
2309
- type: string;
2310
- ref: string;
2311
- };
2312
- };
2313
- };
2314
- };
2315
- };
2316
- };
2317
- assertion: {
2318
- type: string;
2319
- required: string[];
2320
- properties: {
2321
- uri: {
2322
- type: string;
2323
- };
2324
- cid: {
2325
- type: string;
2326
- };
2327
- assertion: {
2328
- type: string;
2329
- };
2330
- confirmation: {
2331
- type: string;
2332
- ref: string;
2333
- };
2334
- author: {
2335
- type: string;
2336
- ref: string;
2337
- };
2338
- subject: {
2339
- type: string;
2340
- ref: string;
2341
- };
2342
- indexedAt: {
2343
- type: string;
2344
- };
2345
- createdAt: {
2346
- type: string;
2347
- };
2348
- };
2349
- };
2350
- confirmation: {
2351
- type: string;
2352
- required: string[];
2353
- properties: {
2354
- uri: {
2355
- type: string;
2356
- };
2357
- cid: {
2358
- type: string;
2359
- };
2360
- indexedAt: {
2361
- type: string;
2362
- };
2363
- createdAt: {
2364
- type: string;
2365
- };
2366
- };
2367
- };
2368
- };
2369
- };
2370
3183
  AppBskyGraphGetFollowers: {
2371
3184
  lexicon: number;
2372
3185
  id: string;
@@ -2514,159 +3327,8 @@ export declare const schemaDict: {
2514
3327
  type: string;
2515
3328
  maxLength: number;
2516
3329
  };
2517
- createdAt: {
2518
- type: string;
2519
- };
2520
- indexedAt: {
2521
- type: string;
2522
- };
2523
- };
2524
- };
2525
- };
2526
- };
2527
- AppBskyGraphGetMembers: {
2528
- lexicon: number;
2529
- id: string;
2530
- defs: {
2531
- main: {
2532
- type: string;
2533
- description: string;
2534
- parameters: {
2535
- type: string;
2536
- required: string[];
2537
- properties: {
2538
- actor: {
2539
- type: string;
2540
- };
2541
- limit: {
2542
- type: string;
2543
- minimum: number;
2544
- maximum: number;
2545
- default: number;
2546
- };
2547
- before: {
2548
- type: string;
2549
- };
2550
- };
2551
- };
2552
- output: {
2553
- encoding: string;
2554
- schema: {
2555
- type: string;
2556
- required: string[];
2557
- properties: {
2558
- subject: {
2559
- type: string;
2560
- ref: string;
2561
- };
2562
- cursor: {
2563
- type: string;
2564
- };
2565
- members: {
2566
- type: string;
2567
- items: {
2568
- type: string;
2569
- ref: string;
2570
- };
2571
- };
2572
- };
2573
- };
2574
- };
2575
- };
2576
- member: {
2577
- type: string;
2578
- required: string[];
2579
- properties: {
2580
- did: {
2581
- type: string;
2582
- };
2583
- declaration: {
2584
- type: string;
2585
- ref: string;
2586
- };
2587
- handle: {
2588
- type: string;
2589
- };
2590
- displayName: {
2591
- type: string;
2592
- maxLength: number;
2593
- };
2594
- createdAt: {
2595
- type: string;
2596
- };
2597
- indexedAt: {
2598
- type: string;
2599
- };
2600
- };
2601
- };
2602
- };
2603
- };
2604
- AppBskyGraphGetMemberships: {
2605
- lexicon: number;
2606
- id: string;
2607
- defs: {
2608
- main: {
2609
- type: string;
2610
- description: string;
2611
- parameters: {
2612
- type: string;
2613
- required: string[];
2614
- properties: {
2615
- actor: {
2616
- type: string;
2617
- };
2618
- limit: {
2619
- type: string;
2620
- minimum: number;
2621
- maximum: number;
2622
- default: number;
2623
- };
2624
- before: {
2625
- type: string;
2626
- };
2627
- };
2628
- };
2629
- output: {
2630
- encoding: string;
2631
- schema: {
2632
- type: string;
2633
- required: string[];
2634
- properties: {
2635
- subject: {
2636
- type: string;
2637
- ref: string;
2638
- };
2639
- cursor: {
2640
- type: string;
2641
- };
2642
- memberships: {
2643
- type: string;
2644
- items: {
2645
- type: string;
2646
- ref: string;
2647
- };
2648
- };
2649
- };
2650
- };
2651
- };
2652
- };
2653
- membership: {
2654
- type: string;
2655
- required: string[];
2656
- properties: {
2657
- did: {
2658
- type: string;
2659
- };
2660
- declaration: {
2661
- type: string;
2662
- ref: string;
2663
- };
2664
- handle: {
2665
- type: string;
2666
- };
2667
- displayName: {
3330
+ avatar: {
2668
3331
  type: string;
2669
- maxLength: number;
2670
3332
  };
2671
3333
  createdAt: {
2672
3334
  type: string;
@@ -2906,16 +3568,6 @@ export declare const schemaDict: {
2906
3568
  };
2907
3569
  };
2908
3570
  };
2909
- AppBskySystemActorScene: {
2910
- lexicon: number;
2911
- id: string;
2912
- defs: {
2913
- main: {
2914
- type: string;
2915
- description: string;
2916
- };
2917
- };
2918
- };
2919
3571
  AppBskySystemActorUser: {
2920
3572
  lexicon: number;
2921
3573
  id: string;
@@ -2975,8 +3627,23 @@ export declare const ids: {
2975
3627
  ComAtprotoAccountCreateInviteCode: string;
2976
3628
  ComAtprotoAccountDelete: string;
2977
3629
  ComAtprotoAccountGet: string;
3630
+ ComAtprotoAccountRequestDelete: string;
2978
3631
  ComAtprotoAccountRequestPasswordReset: string;
2979
3632
  ComAtprotoAccountResetPassword: string;
3633
+ ComAtprotoAdminGetModerationAction: string;
3634
+ ComAtprotoAdminGetModerationActions: string;
3635
+ ComAtprotoAdminGetModerationReport: string;
3636
+ ComAtprotoAdminGetModerationReports: string;
3637
+ ComAtprotoAdminGetRecord: string;
3638
+ ComAtprotoAdminGetRepo: string;
3639
+ ComAtprotoAdminModerationAction: string;
3640
+ ComAtprotoAdminModerationReport: string;
3641
+ ComAtprotoAdminRecord: string;
3642
+ ComAtprotoAdminRepo: string;
3643
+ ComAtprotoAdminResolveModerationReports: string;
3644
+ ComAtprotoAdminReverseModerationAction: string;
3645
+ ComAtprotoAdminSearchRepos: string;
3646
+ ComAtprotoAdminTakeModerationAction: string;
2980
3647
  ComAtprotoBlobUpload: string;
2981
3648
  ComAtprotoHandleResolve: string;
2982
3649
  ComAtprotoRepoBatchWrite: string;
@@ -2986,16 +3653,22 @@ export declare const ids: {
2986
3653
  ComAtprotoRepoGetRecord: string;
2987
3654
  ComAtprotoRepoListRecords: string;
2988
3655
  ComAtprotoRepoPutRecord: string;
3656
+ ComAtprotoRepoRecordRef: string;
3657
+ ComAtprotoRepoRepoRef: string;
2989
3658
  ComAtprotoRepoStrongRef: string;
3659
+ ComAtprotoReportCreate: string;
3660
+ ComAtprotoReportReasonType: string;
3661
+ ComAtprotoReportSubject: string;
2990
3662
  ComAtprotoServerGetAccountsConfig: string;
2991
3663
  ComAtprotoSessionCreate: string;
2992
3664
  ComAtprotoSessionDelete: string;
2993
3665
  ComAtprotoSessionGet: string;
2994
3666
  ComAtprotoSessionRefresh: string;
3667
+ ComAtprotoSyncGetCheckout: string;
3668
+ ComAtprotoSyncGetCommitPath: string;
3669
+ ComAtprotoSyncGetHead: string;
3670
+ ComAtprotoSyncGetRecord: string;
2995
3671
  ComAtprotoSyncGetRepo: string;
2996
- ComAtprotoSyncGetRoot: string;
2997
- ComAtprotoSyncUpdateRepo: string;
2998
- AppBskyActorCreateScene: string;
2999
3672
  AppBskyActorGetProfile: string;
3000
3673
  AppBskyActorGetSuggestions: string;
3001
3674
  AppBskyActorProfile: string;
@@ -3014,25 +3687,20 @@ export declare const ids: {
3014
3687
  AppBskyFeedPost: string;
3015
3688
  AppBskyFeedRepost: string;
3016
3689
  AppBskyFeedSetVote: string;
3017
- AppBskyFeedTrend: string;
3018
3690
  AppBskyFeedVote: string;
3019
3691
  AppBskyGraphAssertCreator: string;
3020
3692
  AppBskyGraphAssertMember: string;
3021
3693
  AppBskyGraphAssertion: string;
3022
3694
  AppBskyGraphConfirmation: string;
3023
3695
  AppBskyGraphFollow: string;
3024
- AppBskyGraphGetAssertions: string;
3025
3696
  AppBskyGraphGetFollowers: string;
3026
3697
  AppBskyGraphGetFollows: string;
3027
- AppBskyGraphGetMembers: string;
3028
- AppBskyGraphGetMemberships: string;
3029
3698
  AppBskyGraphGetMutes: string;
3030
3699
  AppBskyGraphMute: string;
3031
3700
  AppBskyGraphUnmute: string;
3032
3701
  AppBskyNotificationGetCount: string;
3033
3702
  AppBskyNotificationList: string;
3034
3703
  AppBskyNotificationUpdateSeen: string;
3035
- AppBskySystemActorScene: string;
3036
3704
  AppBskySystemActorUser: string;
3037
3705
  AppBskySystemDeclRef: string;
3038
3706
  AppBskySystemDeclaration: string;