@atproto/api 0.6.23 → 0.6.24-next.1

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 (46) hide show
  1. package/dist/client/index.d.ts +23 -25
  2. package/dist/client/lexicons.d.ts +441 -367
  3. package/dist/client/types/com/atproto/admin/defs.d.ts +114 -48
  4. package/dist/client/types/com/atproto/admin/{takeModerationAction.d.ts → emitModerationEvent.d.ts} +5 -6
  5. package/dist/client/types/com/atproto/admin/{getModerationAction.d.ts → getModerationEvent.d.ts} +1 -1
  6. package/dist/client/types/com/atproto/admin/{getModerationActions.d.ts → queryModerationEvents.d.ts} +5 -1
  7. package/dist/client/types/com/atproto/admin/{getModerationReports.d.ts → queryModerationStatuses.d.ts} +12 -6
  8. package/dist/client/types/com/atproto/admin/sendEmail.d.ts +1 -0
  9. package/dist/client/types/com/atproto/{admin/getModerationReport.d.ts → temp/fetchLabels.d.ts} +7 -3
  10. package/dist/index.js +1179 -1042
  11. package/dist/index.js.map +3 -3
  12. package/package.json +17 -14
  13. package/src/client/index.ts +68 -80
  14. package/src/client/lexicons.ts +664 -570
  15. package/src/client/types/app/bsky/actor/defs.ts +2 -2
  16. package/src/client/types/app/bsky/actor/searchActors.ts +2 -2
  17. package/src/client/types/app/bsky/actor/searchActorsTypeahead.ts +2 -2
  18. package/src/client/types/app/bsky/feed/searchPosts.ts +3 -3
  19. package/src/client/types/app/bsky/graph/defs.ts +2 -2
  20. package/src/client/types/app/bsky/unspecced/searchActorsSkeleton.ts +4 -4
  21. package/src/client/types/app/bsky/unspecced/searchPostsSkeleton.ts +3 -3
  22. package/src/client/types/com/atproto/admin/defs.ts +276 -84
  23. package/src/client/types/com/atproto/admin/disableAccountInvites.ts +1 -1
  24. package/src/client/types/com/atproto/admin/{takeModerationAction.ts → emitModerationEvent.ts} +13 -11
  25. package/src/client/types/com/atproto/admin/enableAccountInvites.ts +1 -1
  26. package/src/client/types/com/atproto/admin/{getModerationReport.ts → getModerationEvent.ts} +1 -1
  27. package/src/client/types/com/atproto/admin/{getModerationReports.ts → queryModerationEvents.ts} +8 -15
  28. package/src/client/types/com/atproto/admin/queryModerationStatuses.ts +60 -0
  29. package/src/client/types/com/atproto/admin/sendEmail.ts +1 -0
  30. package/src/client/types/com/atproto/label/defs.ts +9 -9
  31. package/src/client/types/com/atproto/label/queryLabels.ts +2 -2
  32. package/src/client/types/com/atproto/repo/applyWrites.ts +1 -1
  33. package/src/client/types/com/atproto/repo/createRecord.ts +2 -2
  34. package/src/client/types/com/atproto/repo/deleteRecord.ts +2 -2
  35. package/src/client/types/com/atproto/repo/listRecords.ts +1 -1
  36. package/src/client/types/com/atproto/repo/putRecord.ts +3 -3
  37. package/src/client/types/com/atproto/sync/listBlobs.ts +1 -1
  38. package/src/client/types/com/atproto/sync/subscribeRepos.ts +4 -4
  39. package/src/client/types/com/atproto/{admin/getModerationActions.ts → temp/fetchLabels.ts} +3 -5
  40. package/tests/rich-text-detection.test.ts +6 -0
  41. package/LICENSE.txt +0 -7
  42. package/dist/client/types/com/atproto/admin/resolveModerationReports.d.ts +0 -22
  43. package/dist/client/types/com/atproto/admin/reverseModerationAction.d.ts +0 -22
  44. package/src/client/types/com/atproto/admin/getModerationAction.ts +0 -32
  45. package/src/client/types/com/atproto/admin/resolveModerationReports.ts +0 -38
  46. package/src/client/types/com/atproto/admin/reverseModerationAction.ts +0 -38
@@ -16,20 +16,16 @@ export declare const schemaDict: {
16
16
  };
17
17
  };
18
18
  };
19
- actionView: {
19
+ modEventView: {
20
20
  type: string;
21
21
  required: string[];
22
22
  properties: {
23
23
  id: {
24
24
  type: string;
25
25
  };
26
- action: {
26
+ event: {
27
27
  type: string;
28
- ref: string;
29
- };
30
- durationInHours: {
31
- type: string;
32
- description: string;
28
+ refs: string[];
33
29
  };
34
30
  subject: {
35
31
  type: string;
@@ -41,21 +37,6 @@ export declare const schemaDict: {
41
37
  type: string;
42
38
  };
43
39
  };
44
- createLabelVals: {
45
- type: string;
46
- items: {
47
- type: string;
48
- };
49
- };
50
- negateLabelVals: {
51
- type: string;
52
- items: {
53
- type: string;
54
- };
55
- };
56
- reason: {
57
- type: string;
58
- };
59
40
  createdBy: {
60
41
  type: string;
61
42
  format: string;
@@ -64,32 +45,24 @@ export declare const schemaDict: {
64
45
  type: string;
65
46
  format: string;
66
47
  };
67
- reversal: {
48
+ creatorHandle: {
68
49
  type: string;
69
- ref: string;
70
50
  };
71
- resolvedReportIds: {
51
+ subjectHandle: {
72
52
  type: string;
73
- items: {
74
- type: string;
75
- };
76
53
  };
77
54
  };
78
55
  };
79
- actionViewDetail: {
56
+ modEventViewDetail: {
80
57
  type: string;
81
58
  required: string[];
82
59
  properties: {
83
60
  id: {
84
61
  type: string;
85
62
  };
86
- action: {
87
- type: string;
88
- ref: string;
89
- };
90
- durationInHours: {
63
+ event: {
91
64
  type: string;
92
- description: string;
65
+ refs: string[];
93
66
  };
94
67
  subject: {
95
68
  type: string;
@@ -102,130 +75,114 @@ export declare const schemaDict: {
102
75
  ref: string;
103
76
  };
104
77
  };
105
- createLabelVals: {
78
+ createdBy: {
106
79
  type: string;
107
- items: {
108
- type: string;
109
- };
80
+ format: string;
110
81
  };
111
- negateLabelVals: {
82
+ createdAt: {
112
83
  type: string;
113
- items: {
114
- type: string;
115
- };
84
+ format: string;
116
85
  };
117
- reason: {
86
+ };
87
+ };
88
+ reportView: {
89
+ type: string;
90
+ required: string[];
91
+ properties: {
92
+ id: {
118
93
  type: string;
119
94
  };
120
- createdBy: {
95
+ reasonType: {
121
96
  type: string;
122
- format: string;
97
+ ref: string;
123
98
  };
124
- createdAt: {
99
+ comment: {
100
+ type: string;
101
+ };
102
+ subjectRepoHandle: {
103
+ type: string;
104
+ };
105
+ subject: {
106
+ type: string;
107
+ refs: string[];
108
+ };
109
+ reportedBy: {
125
110
  type: string;
126
111
  format: string;
127
112
  };
128
- reversal: {
113
+ createdAt: {
129
114
  type: string;
130
- ref: string;
115
+ format: string;
131
116
  };
132
- resolvedReports: {
117
+ resolvedByActionIds: {
133
118
  type: string;
134
119
  items: {
135
120
  type: string;
136
- ref: string;
137
121
  };
138
122
  };
139
123
  };
140
124
  };
141
- actionViewCurrent: {
125
+ subjectStatusView: {
142
126
  type: string;
143
127
  required: string[];
144
128
  properties: {
145
129
  id: {
146
130
  type: string;
147
131
  };
148
- action: {
132
+ subject: {
149
133
  type: string;
150
- ref: string;
134
+ refs: string[];
151
135
  };
152
- durationInHours: {
136
+ subjectBlobCids: {
153
137
  type: string;
154
- description: string;
138
+ items: {
139
+ type: string;
140
+ format: string;
141
+ };
155
142
  };
156
- };
157
- };
158
- actionReversal: {
159
- type: string;
160
- required: string[];
161
- properties: {
162
- reason: {
143
+ subjectRepoHandle: {
163
144
  type: string;
164
145
  };
165
- createdBy: {
146
+ updatedAt: {
166
147
  type: string;
167
148
  format: string;
149
+ description: string;
168
150
  };
169
151
  createdAt: {
170
152
  type: string;
171
153
  format: string;
154
+ description: string;
172
155
  };
173
- };
174
- };
175
- actionType: {
176
- type: string;
177
- knownValues: string[];
178
- };
179
- takedown: {
180
- type: string;
181
- description: string;
182
- };
183
- flag: {
184
- type: string;
185
- description: string;
186
- };
187
- acknowledge: {
188
- type: string;
189
- description: string;
190
- };
191
- escalate: {
192
- type: string;
193
- description: string;
194
- };
195
- reportView: {
196
- type: string;
197
- required: string[];
198
- properties: {
199
- id: {
200
- type: string;
201
- };
202
- reasonType: {
156
+ reviewState: {
203
157
  type: string;
204
158
  ref: string;
205
159
  };
206
- reason: {
160
+ comment: {
207
161
  type: string;
162
+ description: string;
208
163
  };
209
- subjectRepoHandle: {
164
+ muteUntil: {
210
165
  type: string;
166
+ format: string;
211
167
  };
212
- subject: {
168
+ lastReviewedBy: {
213
169
  type: string;
214
- refs: string[];
170
+ format: string;
215
171
  };
216
- reportedBy: {
172
+ lastReviewedAt: {
217
173
  type: string;
218
174
  format: string;
219
175
  };
220
- createdAt: {
176
+ lastReportedAt: {
221
177
  type: string;
222
178
  format: string;
223
179
  };
224
- resolvedByActionIds: {
180
+ takendown: {
225
181
  type: string;
226
- items: {
227
- type: string;
228
- };
182
+ };
183
+ suspendUntil: {
184
+ type: string;
185
+ format: string;
229
186
  };
230
187
  };
231
188
  };
@@ -240,13 +197,17 @@ export declare const schemaDict: {
240
197
  type: string;
241
198
  ref: string;
242
199
  };
243
- reason: {
200
+ comment: {
244
201
  type: string;
245
202
  };
246
203
  subject: {
247
204
  type: string;
248
205
  refs: string[];
249
206
  };
207
+ subjectStatus: {
208
+ type: string;
209
+ ref: string;
210
+ };
250
211
  reportedBy: {
251
212
  type: string;
252
213
  format: string;
@@ -358,6 +319,10 @@ export declare const schemaDict: {
358
319
  inviteNote: {
359
320
  type: string;
360
321
  };
322
+ emailConfirmedAt: {
323
+ type: string;
324
+ format: string;
325
+ };
361
326
  };
362
327
  };
363
328
  accountView: {
@@ -393,6 +358,10 @@ export declare const schemaDict: {
393
358
  invitesDisabled: {
394
359
  type: string;
395
360
  };
361
+ emailConfirmedAt: {
362
+ type: string;
363
+ format: string;
364
+ };
396
365
  inviteNote: {
397
366
  type: string;
398
367
  };
@@ -528,7 +497,7 @@ export declare const schemaDict: {
528
497
  moderation: {
529
498
  type: string;
530
499
  properties: {
531
- currentAction: {
500
+ subjectStatus: {
532
501
  type: string;
533
502
  ref: string;
534
503
  };
@@ -536,26 +505,11 @@ export declare const schemaDict: {
536
505
  };
537
506
  moderationDetail: {
538
507
  type: string;
539
- required: string[];
540
508
  properties: {
541
- currentAction: {
509
+ subjectStatus: {
542
510
  type: string;
543
511
  ref: string;
544
512
  };
545
- actions: {
546
- type: string;
547
- items: {
548
- type: string;
549
- ref: string;
550
- };
551
- };
552
- reports: {
553
- type: string;
554
- items: {
555
- type: string;
556
- ref: string;
557
- };
558
- };
559
513
  };
560
514
  };
561
515
  blobView: {
@@ -613,6 +567,140 @@ export declare const schemaDict: {
613
567
  };
614
568
  };
615
569
  };
570
+ subjectReviewState: {
571
+ type: string;
572
+ knownValues: string[];
573
+ };
574
+ reviewOpen: {
575
+ type: string;
576
+ description: string;
577
+ };
578
+ reviewEscalated: {
579
+ type: string;
580
+ description: string;
581
+ };
582
+ reviewClosed: {
583
+ type: string;
584
+ description: string;
585
+ };
586
+ modEventTakedown: {
587
+ type: string;
588
+ description: string;
589
+ properties: {
590
+ durationInHours: {
591
+ type: string;
592
+ description: string;
593
+ };
594
+ };
595
+ };
596
+ modEventReverseTakedown: {
597
+ type: string;
598
+ description: string;
599
+ properties: {
600
+ comment: {
601
+ type: string;
602
+ description: string;
603
+ };
604
+ };
605
+ };
606
+ modEventComment: {
607
+ type: string;
608
+ description: string;
609
+ required: string[];
610
+ properties: {
611
+ comment: {
612
+ type: string;
613
+ };
614
+ sticky: {
615
+ type: string;
616
+ description: string;
617
+ };
618
+ };
619
+ };
620
+ modEventReport: {
621
+ type: string;
622
+ description: string;
623
+ required: string[];
624
+ properties: {
625
+ comment: {
626
+ type: string;
627
+ };
628
+ reportType: {
629
+ type: string;
630
+ ref: string;
631
+ };
632
+ };
633
+ };
634
+ modEventLabel: {
635
+ type: string;
636
+ description: string;
637
+ required: string[];
638
+ properties: {
639
+ createLabelVals: {
640
+ type: string;
641
+ items: {
642
+ type: string;
643
+ };
644
+ };
645
+ negateLabelVals: {
646
+ type: string;
647
+ items: {
648
+ type: string;
649
+ };
650
+ };
651
+ };
652
+ };
653
+ modEventAcknowledge: {
654
+ type: string;
655
+ properties: {
656
+ comment: {
657
+ type: string;
658
+ };
659
+ };
660
+ };
661
+ modEventEscalate: {
662
+ type: string;
663
+ properties: {
664
+ comment: {
665
+ type: string;
666
+ };
667
+ };
668
+ };
669
+ modEventMute: {
670
+ type: string;
671
+ description: string;
672
+ required: string[];
673
+ properties: {
674
+ comment: {
675
+ type: string;
676
+ };
677
+ durationInHours: {
678
+ type: string;
679
+ description: string;
680
+ };
681
+ };
682
+ };
683
+ modEventUnmute: {
684
+ type: string;
685
+ description: string;
686
+ properties: {
687
+ comment: {
688
+ type: string;
689
+ description: string;
690
+ };
691
+ };
692
+ };
693
+ modEventEmail: {
694
+ type: string;
695
+ description: string;
696
+ required: string[];
697
+ properties: {
698
+ subjectLine: {
699
+ type: string;
700
+ description: string;
701
+ };
702
+ };
703
+ };
616
704
  };
617
705
  };
618
706
  ComAtprotoAdminDisableAccountInvites: {
@@ -672,7 +760,7 @@ export declare const schemaDict: {
672
760
  };
673
761
  };
674
762
  };
675
- ComAtprotoAdminEnableAccountInvites: {
763
+ ComAtprotoAdminEmitModerationEvent: {
676
764
  lexicon: number;
677
765
  id: string;
678
766
  defs: {
@@ -685,34 +773,25 @@ export declare const schemaDict: {
685
773
  type: string;
686
774
  required: string[];
687
775
  properties: {
688
- account: {
776
+ event: {
689
777
  type: string;
690
- format: string;
778
+ refs: string[];
691
779
  };
692
- note: {
780
+ subject: {
693
781
  type: string;
694
- description: string;
782
+ refs: string[];
783
+ };
784
+ subjectBlobCids: {
785
+ type: string;
786
+ items: {
787
+ type: string;
788
+ format: string;
789
+ };
790
+ };
791
+ createdBy: {
792
+ type: string;
793
+ format: string;
695
794
  };
696
- };
697
- };
698
- };
699
- };
700
- };
701
- };
702
- ComAtprotoAdminGetAccountInfo: {
703
- lexicon: number;
704
- id: string;
705
- defs: {
706
- main: {
707
- type: string;
708
- description: string;
709
- parameters: {
710
- type: string;
711
- required: string[];
712
- properties: {
713
- did: {
714
- type: string;
715
- format: string;
716
795
  };
717
796
  };
718
797
  };
@@ -723,50 +802,32 @@ export declare const schemaDict: {
723
802
  ref: string;
724
803
  };
725
804
  };
805
+ errors: {
806
+ name: string;
807
+ }[];
726
808
  };
727
809
  };
728
810
  };
729
- ComAtprotoAdminGetInviteCodes: {
811
+ ComAtprotoAdminEnableAccountInvites: {
730
812
  lexicon: number;
731
813
  id: string;
732
814
  defs: {
733
815
  main: {
734
816
  type: string;
735
817
  description: string;
736
- parameters: {
737
- type: string;
738
- properties: {
739
- sort: {
740
- type: string;
741
- knownValues: string[];
742
- default: string;
743
- };
744
- limit: {
745
- type: string;
746
- minimum: number;
747
- maximum: number;
748
- default: number;
749
- };
750
- cursor: {
751
- type: string;
752
- };
753
- };
754
- };
755
- output: {
818
+ input: {
756
819
  encoding: string;
757
820
  schema: {
758
821
  type: string;
759
822
  required: string[];
760
823
  properties: {
761
- cursor: {
824
+ account: {
762
825
  type: string;
826
+ format: string;
763
827
  };
764
- codes: {
828
+ note: {
765
829
  type: string;
766
- items: {
767
- type: string;
768
- ref: string;
769
- };
830
+ description: string;
770
831
  };
771
832
  };
772
833
  };
@@ -774,7 +835,7 @@ export declare const schemaDict: {
774
835
  };
775
836
  };
776
837
  };
777
- ComAtprotoAdminGetModerationAction: {
838
+ ComAtprotoAdminGetAccountInfo: {
778
839
  lexicon: number;
779
840
  id: string;
780
841
  defs: {
@@ -785,8 +846,9 @@ export declare const schemaDict: {
785
846
  type: string;
786
847
  required: string[];
787
848
  properties: {
788
- id: {
849
+ did: {
789
850
  type: string;
851
+ format: string;
790
852
  };
791
853
  };
792
854
  };
@@ -800,7 +862,7 @@ export declare const schemaDict: {
800
862
  };
801
863
  };
802
864
  };
803
- ComAtprotoAdminGetModerationActions: {
865
+ ComAtprotoAdminGetInviteCodes: {
804
866
  lexicon: number;
805
867
  id: string;
806
868
  defs: {
@@ -810,8 +872,10 @@ export declare const schemaDict: {
810
872
  parameters: {
811
873
  type: string;
812
874
  properties: {
813
- subject: {
875
+ sort: {
814
876
  type: string;
877
+ knownValues: string[];
878
+ default: string;
815
879
  };
816
880
  limit: {
817
881
  type: string;
@@ -833,7 +897,7 @@ export declare const schemaDict: {
833
897
  cursor: {
834
898
  type: string;
835
899
  };
836
- actions: {
900
+ codes: {
837
901
  type: string;
838
902
  items: {
839
903
  type: string;
@@ -846,7 +910,7 @@ export declare const schemaDict: {
846
910
  };
847
911
  };
848
912
  };
849
- ComAtprotoAdminGetModerationReport: {
913
+ ComAtprotoAdminGetModerationEvent: {
850
914
  lexicon: number;
851
915
  id: string;
852
916
  defs: {
@@ -858,92 +922,17 @@ export declare const schemaDict: {
858
922
  required: string[];
859
923
  properties: {
860
924
  id: {
861
- type: string;
862
- };
863
- };
864
- };
865
- output: {
866
- encoding: string;
867
- schema: {
868
- type: string;
869
- ref: string;
870
- };
871
- };
872
- };
873
- };
874
- };
875
- ComAtprotoAdminGetModerationReports: {
876
- lexicon: number;
877
- id: string;
878
- defs: {
879
- main: {
880
- type: string;
881
- description: string;
882
- parameters: {
883
- type: string;
884
- properties: {
885
- subject: {
886
- type: string;
887
- };
888
- ignoreSubjects: {
889
- type: string;
890
- items: {
891
- type: string;
892
- };
893
- };
894
- actionedBy: {
895
- type: string;
896
- format: string;
897
- description: string;
898
- };
899
- reporters: {
900
- type: string;
901
- items: {
902
- type: string;
903
- };
904
- description: string;
905
- };
906
- resolved: {
907
- type: string;
908
- };
909
- actionType: {
910
- type: string;
911
- knownValues: string[];
912
- };
913
- limit: {
914
- type: string;
915
- minimum: number;
916
- maximum: number;
917
- default: number;
918
- };
919
- cursor: {
920
- type: string;
921
- };
922
- reverse: {
923
- type: string;
924
- description: string;
925
- };
926
- };
927
- };
928
- output: {
929
- encoding: string;
930
- schema: {
931
- type: string;
932
- required: string[];
933
- properties: {
934
- cursor: {
935
- type: string;
936
- };
937
- reports: {
938
- type: string;
939
- items: {
940
- type: string;
941
- ref: string;
942
- };
943
- };
925
+ type: string;
944
926
  };
945
927
  };
946
928
  };
929
+ output: {
930
+ encoding: string;
931
+ schema: {
932
+ type: string;
933
+ ref: string;
934
+ };
935
+ };
947
936
  };
948
937
  };
949
938
  };
@@ -1055,76 +1044,175 @@ export declare const schemaDict: {
1055
1044
  };
1056
1045
  };
1057
1046
  };
1058
- ComAtprotoAdminResolveModerationReports: {
1047
+ ComAtprotoAdminQueryModerationEvents: {
1059
1048
  lexicon: number;
1060
1049
  id: string;
1061
1050
  defs: {
1062
1051
  main: {
1063
1052
  type: string;
1064
1053
  description: string;
1065
- input: {
1054
+ parameters: {
1055
+ type: string;
1056
+ properties: {
1057
+ types: {
1058
+ type: string;
1059
+ items: {
1060
+ type: string;
1061
+ };
1062
+ description: string;
1063
+ };
1064
+ createdBy: {
1065
+ type: string;
1066
+ format: string;
1067
+ };
1068
+ sortDirection: {
1069
+ type: string;
1070
+ default: string;
1071
+ enum: string[];
1072
+ description: string;
1073
+ };
1074
+ subject: {
1075
+ type: string;
1076
+ format: string;
1077
+ };
1078
+ includeAllUserRecords: {
1079
+ type: string;
1080
+ default: boolean;
1081
+ description: string;
1082
+ };
1083
+ limit: {
1084
+ type: string;
1085
+ minimum: number;
1086
+ maximum: number;
1087
+ default: number;
1088
+ };
1089
+ cursor: {
1090
+ type: string;
1091
+ };
1092
+ };
1093
+ };
1094
+ output: {
1066
1095
  encoding: string;
1067
1096
  schema: {
1068
1097
  type: string;
1069
1098
  required: string[];
1070
1099
  properties: {
1071
- actionId: {
1100
+ cursor: {
1072
1101
  type: string;
1073
1102
  };
1074
- reportIds: {
1103
+ events: {
1075
1104
  type: string;
1076
1105
  items: {
1077
1106
  type: string;
1107
+ ref: string;
1078
1108
  };
1079
1109
  };
1080
- createdBy: {
1081
- type: string;
1082
- format: string;
1083
- };
1084
1110
  };
1085
1111
  };
1086
1112
  };
1087
- output: {
1088
- encoding: string;
1089
- schema: {
1090
- type: string;
1091
- ref: string;
1092
- };
1093
- };
1094
1113
  };
1095
1114
  };
1096
1115
  };
1097
- ComAtprotoAdminReverseModerationAction: {
1116
+ ComAtprotoAdminQueryModerationStatuses: {
1098
1117
  lexicon: number;
1099
1118
  id: string;
1100
1119
  defs: {
1101
1120
  main: {
1102
1121
  type: string;
1103
1122
  description: string;
1104
- input: {
1105
- encoding: string;
1106
- schema: {
1107
- type: string;
1108
- required: string[];
1109
- properties: {
1110
- id: {
1111
- type: string;
1112
- };
1113
- reason: {
1114
- type: string;
1115
- };
1116
- createdBy: {
1123
+ parameters: {
1124
+ type: string;
1125
+ properties: {
1126
+ subject: {
1127
+ type: string;
1128
+ format: string;
1129
+ };
1130
+ comment: {
1131
+ type: string;
1132
+ description: string;
1133
+ };
1134
+ reportedAfter: {
1135
+ type: string;
1136
+ format: string;
1137
+ description: string;
1138
+ };
1139
+ reportedBefore: {
1140
+ type: string;
1141
+ format: string;
1142
+ description: string;
1143
+ };
1144
+ reviewedAfter: {
1145
+ type: string;
1146
+ format: string;
1147
+ description: string;
1148
+ };
1149
+ reviewedBefore: {
1150
+ type: string;
1151
+ format: string;
1152
+ description: string;
1153
+ };
1154
+ includeMuted: {
1155
+ type: string;
1156
+ description: string;
1157
+ };
1158
+ reviewState: {
1159
+ type: string;
1160
+ description: string;
1161
+ };
1162
+ ignoreSubjects: {
1163
+ type: string;
1164
+ items: {
1117
1165
  type: string;
1118
1166
  format: string;
1119
1167
  };
1120
1168
  };
1169
+ lastReviewedBy: {
1170
+ type: string;
1171
+ format: string;
1172
+ description: string;
1173
+ };
1174
+ sortField: {
1175
+ type: string;
1176
+ default: string;
1177
+ enum: string[];
1178
+ };
1179
+ sortDirection: {
1180
+ type: string;
1181
+ default: string;
1182
+ enum: string[];
1183
+ };
1184
+ takendown: {
1185
+ type: string;
1186
+ description: string;
1187
+ };
1188
+ limit: {
1189
+ type: string;
1190
+ minimum: number;
1191
+ maximum: number;
1192
+ default: number;
1193
+ };
1194
+ cursor: {
1195
+ type: string;
1196
+ };
1121
1197
  };
1122
1198
  };
1123
1199
  output: {
1124
1200
  encoding: string;
1125
1201
  schema: {
1126
1202
  type: string;
1127
- ref: string;
1203
+ required: string[];
1204
+ properties: {
1205
+ cursor: {
1206
+ type: string;
1207
+ };
1208
+ subjectStatuses: {
1209
+ type: string;
1210
+ items: {
1211
+ type: string;
1212
+ ref: string;
1213
+ };
1214
+ };
1215
+ };
1128
1216
  };
1129
1217
  };
1130
1218
  };
@@ -1203,88 +1291,25 @@ export declare const schemaDict: {
1203
1291
  subject: {
1204
1292
  type: string;
1205
1293
  };
1206
- };
1207
- };
1208
- };
1209
- output: {
1210
- encoding: string;
1211
- schema: {
1212
- type: string;
1213
- required: string[];
1214
- properties: {
1215
- sent: {
1294
+ senderDid: {
1216
1295
  type: string;
1296
+ format: string;
1217
1297
  };
1218
1298
  };
1219
1299
  };
1220
1300
  };
1221
- };
1222
- };
1223
- };
1224
- ComAtprotoAdminTakeModerationAction: {
1225
- lexicon: number;
1226
- id: string;
1227
- defs: {
1228
- main: {
1229
- type: string;
1230
- description: string;
1231
- input: {
1301
+ output: {
1232
1302
  encoding: string;
1233
1303
  schema: {
1234
1304
  type: string;
1235
1305
  required: string[];
1236
1306
  properties: {
1237
- action: {
1238
- type: string;
1239
- knownValues: string[];
1240
- };
1241
- subject: {
1242
- type: string;
1243
- refs: string[];
1244
- };
1245
- subjectBlobCids: {
1246
- type: string;
1247
- items: {
1248
- type: string;
1249
- format: string;
1250
- };
1251
- };
1252
- createLabelVals: {
1253
- type: string;
1254
- items: {
1255
- type: string;
1256
- };
1257
- };
1258
- negateLabelVals: {
1259
- type: string;
1260
- items: {
1261
- type: string;
1262
- };
1263
- };
1264
- reason: {
1265
- type: string;
1266
- };
1267
- durationInHours: {
1268
- type: string;
1269
- description: string;
1270
- };
1271
- createdBy: {
1307
+ sent: {
1272
1308
  type: string;
1273
- format: string;
1274
1309
  };
1275
1310
  };
1276
1311
  };
1277
1312
  };
1278
- output: {
1279
- encoding: string;
1280
- schema: {
1281
- type: string;
1282
- ref: string;
1283
- };
1284
- };
1285
- errors: {
1286
- name: string;
1287
- }[];
1288
1313
  };
1289
1314
  };
1290
1315
  };
@@ -3585,6 +3610,46 @@ export declare const schemaDict: {
3585
3610
  };
3586
3611
  };
3587
3612
  };
3613
+ ComAtprotoTempFetchLabels: {
3614
+ lexicon: number;
3615
+ id: string;
3616
+ defs: {
3617
+ main: {
3618
+ type: string;
3619
+ description: string;
3620
+ parameters: {
3621
+ type: string;
3622
+ properties: {
3623
+ since: {
3624
+ type: string;
3625
+ };
3626
+ limit: {
3627
+ type: string;
3628
+ minimum: number;
3629
+ maximum: number;
3630
+ default: number;
3631
+ };
3632
+ };
3633
+ };
3634
+ output: {
3635
+ encoding: string;
3636
+ schema: {
3637
+ type: string;
3638
+ required: string[];
3639
+ properties: {
3640
+ labels: {
3641
+ type: string;
3642
+ items: {
3643
+ type: string;
3644
+ ref: string;
3645
+ };
3646
+ };
3647
+ };
3648
+ };
3649
+ };
3650
+ };
3651
+ };
3652
+ };
3588
3653
  AppBskyActorDefs: {
3589
3654
  lexicon: number;
3590
3655
  id: string;
@@ -3889,6 +3954,7 @@ export declare const schemaDict: {
3889
3954
  defs: {
3890
3955
  main: {
3891
3956
  type: string;
3957
+ description: string;
3892
3958
  parameters: {
3893
3959
  type: string;
3894
3960
  required: string[];
@@ -3915,6 +3981,7 @@ export declare const schemaDict: {
3915
3981
  defs: {
3916
3982
  main: {
3917
3983
  type: string;
3984
+ description: string;
3918
3985
  parameters: {
3919
3986
  type: string;
3920
3987
  required: string[];
@@ -3997,6 +4064,7 @@ export declare const schemaDict: {
3997
4064
  defs: {
3998
4065
  main: {
3999
4066
  type: string;
4067
+ description: string;
4000
4068
  key: string;
4001
4069
  record: {
4002
4070
  type: string;
@@ -5188,6 +5256,7 @@ export declare const schemaDict: {
5188
5256
  defs: {
5189
5257
  main: {
5190
5258
  type: string;
5259
+ description: string;
5191
5260
  parameters: {
5192
5261
  type: string;
5193
5262
  required: string[];
@@ -5316,6 +5385,7 @@ export declare const schemaDict: {
5316
5385
  defs: {
5317
5386
  main: {
5318
5387
  type: string;
5388
+ description: string;
5319
5389
  parameters: {
5320
5390
  type: string;
5321
5391
  required: string[];
@@ -5403,6 +5473,7 @@ export declare const schemaDict: {
5403
5473
  defs: {
5404
5474
  main: {
5405
5475
  type: string;
5476
+ description: string;
5406
5477
  parameters: {
5407
5478
  type: string;
5408
5479
  required: string[];
@@ -5551,6 +5622,7 @@ export declare const schemaDict: {
5551
5622
  defs: {
5552
5623
  main: {
5553
5624
  type: string;
5625
+ description: string;
5554
5626
  key: string;
5555
5627
  record: {
5556
5628
  type: string;
@@ -5575,6 +5647,7 @@ export declare const schemaDict: {
5575
5647
  defs: {
5576
5648
  main: {
5577
5649
  type: string;
5650
+ description: string;
5578
5651
  key: string;
5579
5652
  record: {
5580
5653
  type: string;
@@ -5691,6 +5764,7 @@ export declare const schemaDict: {
5691
5764
  id: string;
5692
5765
  defs: {
5693
5766
  main: {
5767
+ description: string;
5694
5768
  type: string;
5695
5769
  key: string;
5696
5770
  record: {
@@ -6609,6 +6683,7 @@ export declare const schemaDict: {
6609
6683
  defs: {
6610
6684
  main: {
6611
6685
  type: string;
6686
+ description: string;
6612
6687
  parameters: {
6613
6688
  type: string;
6614
6689
  properties: {
@@ -6639,6 +6714,7 @@ export declare const schemaDict: {
6639
6714
  defs: {
6640
6715
  main: {
6641
6716
  type: string;
6717
+ description: string;
6642
6718
  parameters: {
6643
6719
  type: string;
6644
6720
  properties: {
@@ -7139,21 +7215,18 @@ export declare const ids: {
7139
7215
  ComAtprotoAdminDefs: string;
7140
7216
  ComAtprotoAdminDisableAccountInvites: string;
7141
7217
  ComAtprotoAdminDisableInviteCodes: string;
7218
+ ComAtprotoAdminEmitModerationEvent: string;
7142
7219
  ComAtprotoAdminEnableAccountInvites: string;
7143
7220
  ComAtprotoAdminGetAccountInfo: string;
7144
7221
  ComAtprotoAdminGetInviteCodes: string;
7145
- ComAtprotoAdminGetModerationAction: string;
7146
- ComAtprotoAdminGetModerationActions: string;
7147
- ComAtprotoAdminGetModerationReport: string;
7148
- ComAtprotoAdminGetModerationReports: string;
7222
+ ComAtprotoAdminGetModerationEvent: string;
7149
7223
  ComAtprotoAdminGetRecord: string;
7150
7224
  ComAtprotoAdminGetRepo: string;
7151
7225
  ComAtprotoAdminGetSubjectStatus: string;
7152
- ComAtprotoAdminResolveModerationReports: string;
7153
- ComAtprotoAdminReverseModerationAction: string;
7226
+ ComAtprotoAdminQueryModerationEvents: string;
7227
+ ComAtprotoAdminQueryModerationStatuses: string;
7154
7228
  ComAtprotoAdminSearchRepos: string;
7155
7229
  ComAtprotoAdminSendEmail: string;
7156
- ComAtprotoAdminTakeModerationAction: string;
7157
7230
  ComAtprotoAdminUpdateAccountEmail: string;
7158
7231
  ComAtprotoAdminUpdateAccountHandle: string;
7159
7232
  ComAtprotoAdminUpdateSubjectStatus: string;
@@ -7207,6 +7280,7 @@ export declare const ids: {
7207
7280
  ComAtprotoSyncNotifyOfUpdate: string;
7208
7281
  ComAtprotoSyncRequestCrawl: string;
7209
7282
  ComAtprotoSyncSubscribeRepos: string;
7283
+ ComAtprotoTempFetchLabels: string;
7210
7284
  AppBskyActorDefs: string;
7211
7285
  AppBskyActorGetPreferences: string;
7212
7286
  AppBskyActorGetProfile: string;