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