@atproto/bsky 0.0.15 → 0.0.17
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 +18 -0
- package/dist/api/com/atproto/moderation/util.d.ts +4 -3
- package/dist/cache/read-through.d.ts +30 -0
- package/dist/config.d.ts +18 -0
- package/dist/context.d.ts +21 -6
- package/dist/daemon/config.d.ts +15 -0
- package/dist/daemon/context.d.ts +15 -0
- package/dist/daemon/index.d.ts +23 -0
- package/dist/daemon/logger.d.ts +3 -0
- package/dist/daemon/notifications.d.ts +18 -0
- package/dist/daemon/services.d.ts +11 -0
- package/dist/db/database-schema.d.ts +1 -2
- package/dist/db/index.js +41 -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/20231205T000257238Z-remove-did-cache.d.ts +3 -0
- package/dist/db/migrations/index.d.ts +2 -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/did-cache.d.ts +10 -7
- package/dist/feed-gen/types.d.ts +1 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +4370 -2758
- package/dist/index.js.map +3 -3
- package/dist/indexer/context.d.ts +2 -0
- package/dist/indexer/index.d.ts +1 -0
- package/dist/lexicon/index.d.ts +23 -18
- package/dist/lexicon/lexicons.d.ts +561 -412
- 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 +114 -48
- package/dist/lexicon/types/com/atproto/admin/{resolveModerationReports.d.ts → deleteAccount.d.ts} +2 -13
- 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/importRepo.d.ts} +10 -7
- package/dist/lexicon/types/com/atproto/temp/pushBlob.d.ts +25 -0
- package/dist/lexicon/types/com/atproto/{admin/reverseModerationAction.d.ts → temp/transferAccount.d.ts} +11 -5
- package/dist/logger.d.ts +1 -0
- package/dist/migrate-moderation-data.d.ts +1 -0
- package/dist/redis.d.ts +10 -1
- package/dist/services/actor/index.d.ts +18 -4
- package/dist/services/actor/views.d.ts +6 -8
- package/dist/services/feed/index.d.ts +7 -4
- package/dist/services/feed/util.d.ts +9 -1
- package/dist/services/feed/views.d.ts +11 -21
- package/dist/services/graph/index.d.ts +5 -29
- package/dist/services/graph/types.d.ts +1 -0
- package/dist/services/index.d.ts +3 -7
- package/dist/services/label/index.d.ts +10 -4
- package/dist/services/moderation/index.d.ts +134 -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/services/types.d.ts +3 -0
- package/dist/services/util/notification.d.ts +5 -0
- package/dist/services/util/post.d.ts +6 -6
- package/dist/util/debug.d.ts +1 -1
- package/dist/util/retry.d.ts +1 -6
- package/package.json +11 -11
- 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 +15 -54
- 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 +20 -17
- 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/moderation/createReport.ts +9 -7
- package/src/api/com/atproto/moderation/util.ts +38 -20
- package/src/api/index.ts +8 -14
- package/src/auth.ts +29 -21
- package/src/auto-moderator/index.ts +26 -19
- package/src/cache/read-through.ts +151 -0
- package/src/config.ts +90 -1
- package/src/context.ts +11 -7
- package/src/daemon/config.ts +60 -0
- package/src/daemon/context.ts +27 -0
- package/src/daemon/index.ts +78 -0
- package/src/daemon/logger.ts +6 -0
- package/src/daemon/notifications.ts +54 -0
- package/src/daemon/services.ts +22 -0
- package/src/db/database-schema.ts +0 -2
- package/src/db/migrations/20231003T202833377Z-create-moderation-subject-status.ts +123 -0
- package/src/db/migrations/20231205T000257238Z-remove-did-cache.ts +14 -0
- package/src/db/migrations/index.ts +2 -0
- package/src/db/pagination.ts +26 -3
- package/src/db/{periodic-moderation-action-reversal.ts → periodic-moderation-event-reversal.ts} +50 -46
- package/src/db/tables/moderation.ts +35 -52
- package/src/did-cache.ts +33 -56
- package/src/feed-gen/bsky-team.ts +1 -1
- package/src/feed-gen/hot-classic.ts +1 -1
- package/src/feed-gen/index.ts +0 -4
- package/src/feed-gen/mutuals.ts +6 -2
- package/src/feed-gen/types.ts +1 -1
- package/src/index.ts +57 -17
- package/src/indexer/context.ts +5 -0
- package/src/indexer/index.ts +10 -7
- package/src/lexicon/index.ts +80 -67
- package/src/lexicon/lexicons.ts +698 -507
- package/src/lexicon/types/app/bsky/feed/defs.ts +1 -18
- package/src/lexicon/types/app/bsky/graph/defs.ts +1 -0
- package/src/lexicon/types/com/atproto/admin/defs.ts +276 -84
- package/src/lexicon/types/com/atproto/admin/{resolveModerationReports.ts → deleteAccount.ts} +2 -13
- package/src/lexicon/types/com/atproto/admin/{takeModerationAction.ts → emitModerationEvent.ts} +13 -11
- package/src/lexicon/types/com/atproto/admin/{getModerationReport.ts → getModerationEvent.ts} +1 -1
- package/src/lexicon/types/com/atproto/admin/{getModerationActions.ts → queryModerationEvents.ts} +8 -1
- package/src/lexicon/types/com/atproto/admin/{getModerationReports.ts → queryModerationStatuses.ts} +21 -14
- package/src/lexicon/types/com/atproto/admin/sendEmail.ts +1 -0
- package/src/lexicon/types/com/atproto/{admin/getModerationAction.ts → temp/importRepo.ts} +11 -7
- package/src/lexicon/types/com/atproto/temp/pushBlob.ts +39 -0
- package/src/lexicon/types/com/atproto/{admin/reverseModerationAction.ts → temp/transferAccount.ts} +18 -5
- package/src/logger.ts +2 -0
- package/src/migrate-moderation-data.ts +414 -0
- package/src/redis.ts +43 -3
- package/src/services/actor/index.ts +55 -7
- package/src/services/actor/views.ts +18 -21
- package/src/services/feed/index.ts +52 -19
- package/src/services/feed/util.ts +47 -19
- package/src/services/feed/views.ts +87 -13
- package/src/services/graph/index.ts +21 -3
- package/src/services/graph/types.ts +1 -0
- package/src/services/index.ts +14 -14
- package/src/services/indexing/index.ts +7 -10
- 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 +16 -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 +68 -25
- package/src/services/moderation/index.ts +380 -395
- package/src/services/moderation/pagination.ts +96 -0
- package/src/services/moderation/status.ts +241 -0
- package/src/services/moderation/types.ts +49 -0
- package/src/services/moderation/views.ts +278 -329
- package/src/services/types.ts +4 -0
- package/src/services/util/notification.ts +70 -0
- package/src/util/debug.ts +2 -2
- package/src/util/retry.ts +1 -44
- 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 +10 -12
- 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 +3 -3
- package/tests/algos/hot-classic.test.ts +1 -2
- package/tests/auth.test.ts +1 -1
- package/tests/auto-moderator/fuzzy-matcher.test.ts +2 -1
- package/tests/auto-moderator/labeler.test.ts +19 -20
- package/tests/auto-moderator/takedowns.test.ts +61 -28
- package/tests/blob-resolver.test.ts +4 -2
- package/tests/daemon.test.ts +191 -0
- package/tests/did-cache.test.ts +20 -5
- package/tests/feed-generation.test.ts +57 -9
- package/tests/handle-invalidation.test.ts +1 -5
- package/tests/indexing.test.ts +20 -13
- package/tests/redis-cache.test.ts +231 -0
- package/tests/seeds/basic.ts +3 -0
- package/tests/subscription/repo.test.ts +4 -7
- 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 -19
- package/tests/views/thread.test.ts +117 -94
- package/tests/views/threadgating.test.ts +89 -19
- package/tests/views/timeline.test.ts +21 -13
- package/dist/api/com/atproto/admin/resolveModerationReports.d.ts +0 -3
- package/dist/api/com/atproto/admin/reverseModerationAction.d.ts +0 -3
- package/dist/api/com/atproto/admin/takeModerationAction.d.ts +0 -3
- package/dist/db/tables/did-cache.d.ts +0 -10
- package/dist/feed-gen/best-of-follows.d.ts +0 -29
- package/dist/feed-gen/whats-hot.d.ts +0 -29
- package/dist/feed-gen/with-friends.d.ts +0 -3
- package/dist/label-cache.d.ts +0 -19
- 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/db/tables/did-cache.ts +0 -13
- package/src/feed-gen/best-of-follows.ts +0 -74
- package/src/feed-gen/whats-hot.ts +0 -101
- package/src/feed-gen/with-friends.ts +0 -39
- package/src/label-cache.ts +0 -90
- 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/tests/algos/whats-hot.test.ts +0 -118
- package/tests/algos/with-friends.test.ts +0 -145
- /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
|
@@ -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;
|
|
@@ -536,7 +497,7 @@ export declare const schemaDict: {
|
|
|
536
497
|
moderation: {
|
|
537
498
|
type: string;
|
|
538
499
|
properties: {
|
|
539
|
-
|
|
500
|
+
subjectStatus: {
|
|
540
501
|
type: string;
|
|
541
502
|
ref: string;
|
|
542
503
|
};
|
|
@@ -544,26 +505,11 @@ export declare const schemaDict: {
|
|
|
544
505
|
};
|
|
545
506
|
moderationDetail: {
|
|
546
507
|
type: string;
|
|
547
|
-
required: string[];
|
|
548
508
|
properties: {
|
|
549
|
-
|
|
509
|
+
subjectStatus: {
|
|
550
510
|
type: string;
|
|
551
511
|
ref: string;
|
|
552
512
|
};
|
|
553
|
-
actions: {
|
|
554
|
-
type: string;
|
|
555
|
-
items: {
|
|
556
|
-
type: string;
|
|
557
|
-
ref: string;
|
|
558
|
-
};
|
|
559
|
-
};
|
|
560
|
-
reports: {
|
|
561
|
-
type: string;
|
|
562
|
-
items: {
|
|
563
|
-
type: string;
|
|
564
|
-
ref: string;
|
|
565
|
-
};
|
|
566
|
-
};
|
|
567
513
|
};
|
|
568
514
|
};
|
|
569
515
|
blobView: {
|
|
@@ -621,159 +567,220 @@ export declare const schemaDict: {
|
|
|
621
567
|
};
|
|
622
568
|
};
|
|
623
569
|
};
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
defs: {
|
|
630
|
-
main: {
|
|
570
|
+
subjectReviewState: {
|
|
571
|
+
type: string;
|
|
572
|
+
knownValues: string[];
|
|
573
|
+
};
|
|
574
|
+
reviewOpen: {
|
|
631
575
|
type: string;
|
|
632
576
|
description: string;
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
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: {
|
|
636
591
|
type: string;
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
format: string;
|
|
642
|
-
};
|
|
643
|
-
note: {
|
|
644
|
-
type: string;
|
|
645
|
-
description: string;
|
|
646
|
-
};
|
|
647
|
-
};
|
|
592
|
+
};
|
|
593
|
+
durationInHours: {
|
|
594
|
+
type: string;
|
|
595
|
+
description: string;
|
|
648
596
|
};
|
|
649
597
|
};
|
|
650
598
|
};
|
|
651
|
-
|
|
652
|
-
};
|
|
653
|
-
ComAtprotoAdminDisableInviteCodes: {
|
|
654
|
-
lexicon: number;
|
|
655
|
-
id: string;
|
|
656
|
-
defs: {
|
|
657
|
-
main: {
|
|
599
|
+
modEventReverseTakedown: {
|
|
658
600
|
type: string;
|
|
659
601
|
description: string;
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
schema: {
|
|
602
|
+
properties: {
|
|
603
|
+
comment: {
|
|
663
604
|
type: string;
|
|
664
|
-
|
|
665
|
-
codes: {
|
|
666
|
-
type: string;
|
|
667
|
-
items: {
|
|
668
|
-
type: string;
|
|
669
|
-
};
|
|
670
|
-
};
|
|
671
|
-
accounts: {
|
|
672
|
-
type: string;
|
|
673
|
-
items: {
|
|
674
|
-
type: string;
|
|
675
|
-
};
|
|
676
|
-
};
|
|
677
|
-
};
|
|
605
|
+
description: string;
|
|
678
606
|
};
|
|
679
607
|
};
|
|
680
608
|
};
|
|
681
|
-
|
|
682
|
-
};
|
|
683
|
-
ComAtprotoAdminEnableAccountInvites: {
|
|
684
|
-
lexicon: number;
|
|
685
|
-
id: string;
|
|
686
|
-
defs: {
|
|
687
|
-
main: {
|
|
609
|
+
modEventComment: {
|
|
688
610
|
type: string;
|
|
689
611
|
description: string;
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
612
|
+
required: string[];
|
|
613
|
+
properties: {
|
|
614
|
+
comment: {
|
|
693
615
|
type: string;
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
format: string;
|
|
699
|
-
};
|
|
700
|
-
note: {
|
|
701
|
-
type: string;
|
|
702
|
-
description: string;
|
|
703
|
-
};
|
|
704
|
-
};
|
|
616
|
+
};
|
|
617
|
+
sticky: {
|
|
618
|
+
type: string;
|
|
619
|
+
description: string;
|
|
705
620
|
};
|
|
706
621
|
};
|
|
707
622
|
};
|
|
708
|
-
|
|
709
|
-
};
|
|
710
|
-
ComAtprotoAdminGetAccountInfo: {
|
|
711
|
-
lexicon: number;
|
|
712
|
-
id: string;
|
|
713
|
-
defs: {
|
|
714
|
-
main: {
|
|
623
|
+
modEventReport: {
|
|
715
624
|
type: string;
|
|
716
625
|
description: string;
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
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;
|
|
724
655
|
};
|
|
725
656
|
};
|
|
726
657
|
};
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
658
|
+
};
|
|
659
|
+
modEventAcknowledge: {
|
|
660
|
+
type: string;
|
|
661
|
+
properties: {
|
|
662
|
+
comment: {
|
|
730
663
|
type: string;
|
|
731
|
-
|
|
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;
|
|
732
707
|
};
|
|
733
708
|
};
|
|
734
709
|
};
|
|
735
710
|
};
|
|
736
711
|
};
|
|
737
|
-
|
|
712
|
+
ComAtprotoAdminDeleteAccount: {
|
|
738
713
|
lexicon: number;
|
|
739
714
|
id: string;
|
|
740
715
|
defs: {
|
|
741
716
|
main: {
|
|
742
717
|
type: string;
|
|
743
718
|
description: string;
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
minimum: number;
|
|
755
|
-
maximum: number;
|
|
756
|
-
default: number;
|
|
757
|
-
};
|
|
758
|
-
cursor: {
|
|
759
|
-
type: string;
|
|
719
|
+
input: {
|
|
720
|
+
encoding: string;
|
|
721
|
+
schema: {
|
|
722
|
+
type: string;
|
|
723
|
+
required: string[];
|
|
724
|
+
properties: {
|
|
725
|
+
did: {
|
|
726
|
+
type: string;
|
|
727
|
+
format: string;
|
|
728
|
+
};
|
|
760
729
|
};
|
|
761
730
|
};
|
|
762
731
|
};
|
|
763
|
-
|
|
732
|
+
};
|
|
733
|
+
};
|
|
734
|
+
};
|
|
735
|
+
ComAtprotoAdminDisableAccountInvites: {
|
|
736
|
+
lexicon: number;
|
|
737
|
+
id: string;
|
|
738
|
+
defs: {
|
|
739
|
+
main: {
|
|
740
|
+
type: string;
|
|
741
|
+
description: string;
|
|
742
|
+
input: {
|
|
764
743
|
encoding: string;
|
|
765
744
|
schema: {
|
|
766
745
|
type: string;
|
|
767
746
|
required: string[];
|
|
768
747
|
properties: {
|
|
769
|
-
|
|
748
|
+
account: {
|
|
749
|
+
type: string;
|
|
750
|
+
format: string;
|
|
751
|
+
};
|
|
752
|
+
note: {
|
|
770
753
|
type: string;
|
|
754
|
+
description: string;
|
|
771
755
|
};
|
|
756
|
+
};
|
|
757
|
+
};
|
|
758
|
+
};
|
|
759
|
+
};
|
|
760
|
+
};
|
|
761
|
+
};
|
|
762
|
+
ComAtprotoAdminDisableInviteCodes: {
|
|
763
|
+
lexicon: number;
|
|
764
|
+
id: string;
|
|
765
|
+
defs: {
|
|
766
|
+
main: {
|
|
767
|
+
type: string;
|
|
768
|
+
description: string;
|
|
769
|
+
input: {
|
|
770
|
+
encoding: string;
|
|
771
|
+
schema: {
|
|
772
|
+
type: string;
|
|
773
|
+
properties: {
|
|
772
774
|
codes: {
|
|
773
775
|
type: string;
|
|
774
776
|
items: {
|
|
775
777
|
type: string;
|
|
776
|
-
|
|
778
|
+
};
|
|
779
|
+
};
|
|
780
|
+
accounts: {
|
|
781
|
+
type: string;
|
|
782
|
+
items: {
|
|
783
|
+
type: string;
|
|
777
784
|
};
|
|
778
785
|
};
|
|
779
786
|
};
|
|
@@ -782,19 +789,38 @@ export declare const schemaDict: {
|
|
|
782
789
|
};
|
|
783
790
|
};
|
|
784
791
|
};
|
|
785
|
-
|
|
792
|
+
ComAtprotoAdminEmitModerationEvent: {
|
|
786
793
|
lexicon: number;
|
|
787
794
|
id: string;
|
|
788
795
|
defs: {
|
|
789
796
|
main: {
|
|
790
797
|
type: string;
|
|
791
798
|
description: string;
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
799
|
+
input: {
|
|
800
|
+
encoding: string;
|
|
801
|
+
schema: {
|
|
802
|
+
type: string;
|
|
803
|
+
required: string[];
|
|
804
|
+
properties: {
|
|
805
|
+
event: {
|
|
806
|
+
type: string;
|
|
807
|
+
refs: string[];
|
|
808
|
+
};
|
|
809
|
+
subject: {
|
|
810
|
+
type: string;
|
|
811
|
+
refs: string[];
|
|
812
|
+
};
|
|
813
|
+
subjectBlobCids: {
|
|
814
|
+
type: string;
|
|
815
|
+
items: {
|
|
816
|
+
type: string;
|
|
817
|
+
format: string;
|
|
818
|
+
};
|
|
819
|
+
};
|
|
820
|
+
createdBy: {
|
|
821
|
+
type: string;
|
|
822
|
+
format: string;
|
|
823
|
+
};
|
|
798
824
|
};
|
|
799
825
|
};
|
|
800
826
|
};
|
|
@@ -805,48 +831,32 @@ export declare const schemaDict: {
|
|
|
805
831
|
ref: string;
|
|
806
832
|
};
|
|
807
833
|
};
|
|
834
|
+
errors: {
|
|
835
|
+
name: string;
|
|
836
|
+
}[];
|
|
808
837
|
};
|
|
809
838
|
};
|
|
810
839
|
};
|
|
811
|
-
|
|
840
|
+
ComAtprotoAdminEnableAccountInvites: {
|
|
812
841
|
lexicon: number;
|
|
813
842
|
id: string;
|
|
814
843
|
defs: {
|
|
815
844
|
main: {
|
|
816
845
|
type: string;
|
|
817
846
|
description: string;
|
|
818
|
-
|
|
819
|
-
type: string;
|
|
820
|
-
properties: {
|
|
821
|
-
subject: {
|
|
822
|
-
type: string;
|
|
823
|
-
};
|
|
824
|
-
limit: {
|
|
825
|
-
type: string;
|
|
826
|
-
minimum: number;
|
|
827
|
-
maximum: number;
|
|
828
|
-
default: number;
|
|
829
|
-
};
|
|
830
|
-
cursor: {
|
|
831
|
-
type: string;
|
|
832
|
-
};
|
|
833
|
-
};
|
|
834
|
-
};
|
|
835
|
-
output: {
|
|
847
|
+
input: {
|
|
836
848
|
encoding: string;
|
|
837
849
|
schema: {
|
|
838
850
|
type: string;
|
|
839
851
|
required: string[];
|
|
840
852
|
properties: {
|
|
841
|
-
|
|
853
|
+
account: {
|
|
842
854
|
type: string;
|
|
855
|
+
format: string;
|
|
843
856
|
};
|
|
844
|
-
|
|
857
|
+
note: {
|
|
845
858
|
type: string;
|
|
846
|
-
|
|
847
|
-
type: string;
|
|
848
|
-
ref: string;
|
|
849
|
-
};
|
|
859
|
+
description: string;
|
|
850
860
|
};
|
|
851
861
|
};
|
|
852
862
|
};
|
|
@@ -854,7 +864,7 @@ export declare const schemaDict: {
|
|
|
854
864
|
};
|
|
855
865
|
};
|
|
856
866
|
};
|
|
857
|
-
|
|
867
|
+
ComAtprotoAdminGetAccountInfo: {
|
|
858
868
|
lexicon: number;
|
|
859
869
|
id: string;
|
|
860
870
|
defs: {
|
|
@@ -865,8 +875,9 @@ export declare const schemaDict: {
|
|
|
865
875
|
type: string;
|
|
866
876
|
required: string[];
|
|
867
877
|
properties: {
|
|
868
|
-
|
|
878
|
+
did: {
|
|
869
879
|
type: string;
|
|
880
|
+
format: string;
|
|
870
881
|
};
|
|
871
882
|
};
|
|
872
883
|
};
|
|
@@ -880,7 +891,7 @@ export declare const schemaDict: {
|
|
|
880
891
|
};
|
|
881
892
|
};
|
|
882
893
|
};
|
|
883
|
-
|
|
894
|
+
ComAtprotoAdminGetInviteCodes: {
|
|
884
895
|
lexicon: number;
|
|
885
896
|
id: string;
|
|
886
897
|
defs: {
|
|
@@ -890,33 +901,10 @@ export declare const schemaDict: {
|
|
|
890
901
|
parameters: {
|
|
891
902
|
type: string;
|
|
892
903
|
properties: {
|
|
893
|
-
|
|
894
|
-
type: string;
|
|
895
|
-
};
|
|
896
|
-
ignoreSubjects: {
|
|
897
|
-
type: string;
|
|
898
|
-
items: {
|
|
899
|
-
type: string;
|
|
900
|
-
};
|
|
901
|
-
};
|
|
902
|
-
actionedBy: {
|
|
903
|
-
type: string;
|
|
904
|
-
format: string;
|
|
905
|
-
description: string;
|
|
906
|
-
};
|
|
907
|
-
reporters: {
|
|
908
|
-
type: string;
|
|
909
|
-
items: {
|
|
910
|
-
type: string;
|
|
911
|
-
};
|
|
912
|
-
description: string;
|
|
913
|
-
};
|
|
914
|
-
resolved: {
|
|
915
|
-
type: string;
|
|
916
|
-
};
|
|
917
|
-
actionType: {
|
|
904
|
+
sort: {
|
|
918
905
|
type: string;
|
|
919
906
|
knownValues: string[];
|
|
907
|
+
default: string;
|
|
920
908
|
};
|
|
921
909
|
limit: {
|
|
922
910
|
type: string;
|
|
@@ -927,10 +915,6 @@ export declare const schemaDict: {
|
|
|
927
915
|
cursor: {
|
|
928
916
|
type: string;
|
|
929
917
|
};
|
|
930
|
-
reverse: {
|
|
931
|
-
type: string;
|
|
932
|
-
description: string;
|
|
933
|
-
};
|
|
934
918
|
};
|
|
935
919
|
};
|
|
936
920
|
output: {
|
|
@@ -942,7 +926,7 @@ export declare const schemaDict: {
|
|
|
942
926
|
cursor: {
|
|
943
927
|
type: string;
|
|
944
928
|
};
|
|
945
|
-
|
|
929
|
+
codes: {
|
|
946
930
|
type: string;
|
|
947
931
|
items: {
|
|
948
932
|
type: string;
|
|
@@ -955,6 +939,32 @@ export declare const schemaDict: {
|
|
|
955
939
|
};
|
|
956
940
|
};
|
|
957
941
|
};
|
|
942
|
+
ComAtprotoAdminGetModerationEvent: {
|
|
943
|
+
lexicon: number;
|
|
944
|
+
id: string;
|
|
945
|
+
defs: {
|
|
946
|
+
main: {
|
|
947
|
+
type: string;
|
|
948
|
+
description: string;
|
|
949
|
+
parameters: {
|
|
950
|
+
type: string;
|
|
951
|
+
required: string[];
|
|
952
|
+
properties: {
|
|
953
|
+
id: {
|
|
954
|
+
type: string;
|
|
955
|
+
};
|
|
956
|
+
};
|
|
957
|
+
};
|
|
958
|
+
output: {
|
|
959
|
+
encoding: string;
|
|
960
|
+
schema: {
|
|
961
|
+
type: string;
|
|
962
|
+
ref: string;
|
|
963
|
+
};
|
|
964
|
+
};
|
|
965
|
+
};
|
|
966
|
+
};
|
|
967
|
+
};
|
|
958
968
|
ComAtprotoAdminGetRecord: {
|
|
959
969
|
lexicon: number;
|
|
960
970
|
id: string;
|
|
@@ -1063,78 +1073,177 @@ export declare const schemaDict: {
|
|
|
1063
1073
|
};
|
|
1064
1074
|
};
|
|
1065
1075
|
};
|
|
1066
|
-
|
|
1076
|
+
ComAtprotoAdminQueryModerationEvents: {
|
|
1067
1077
|
lexicon: number;
|
|
1068
1078
|
id: string;
|
|
1069
1079
|
defs: {
|
|
1070
1080
|
main: {
|
|
1071
1081
|
type: string;
|
|
1072
1082
|
description: string;
|
|
1073
|
-
|
|
1083
|
+
parameters: {
|
|
1084
|
+
type: string;
|
|
1085
|
+
properties: {
|
|
1086
|
+
types: {
|
|
1087
|
+
type: string;
|
|
1088
|
+
items: {
|
|
1089
|
+
type: string;
|
|
1090
|
+
};
|
|
1091
|
+
description: string;
|
|
1092
|
+
};
|
|
1093
|
+
createdBy: {
|
|
1094
|
+
type: string;
|
|
1095
|
+
format: string;
|
|
1096
|
+
};
|
|
1097
|
+
sortDirection: {
|
|
1098
|
+
type: string;
|
|
1099
|
+
default: string;
|
|
1100
|
+
enum: string[];
|
|
1101
|
+
description: string;
|
|
1102
|
+
};
|
|
1103
|
+
subject: {
|
|
1104
|
+
type: string;
|
|
1105
|
+
format: string;
|
|
1106
|
+
};
|
|
1107
|
+
includeAllUserRecords: {
|
|
1108
|
+
type: string;
|
|
1109
|
+
default: boolean;
|
|
1110
|
+
description: string;
|
|
1111
|
+
};
|
|
1112
|
+
limit: {
|
|
1113
|
+
type: string;
|
|
1114
|
+
minimum: number;
|
|
1115
|
+
maximum: number;
|
|
1116
|
+
default: number;
|
|
1117
|
+
};
|
|
1118
|
+
cursor: {
|
|
1119
|
+
type: string;
|
|
1120
|
+
};
|
|
1121
|
+
};
|
|
1122
|
+
};
|
|
1123
|
+
output: {
|
|
1074
1124
|
encoding: string;
|
|
1075
1125
|
schema: {
|
|
1076
1126
|
type: string;
|
|
1077
1127
|
required: string[];
|
|
1078
1128
|
properties: {
|
|
1079
|
-
|
|
1129
|
+
cursor: {
|
|
1080
1130
|
type: string;
|
|
1081
1131
|
};
|
|
1082
|
-
|
|
1132
|
+
events: {
|
|
1083
1133
|
type: string;
|
|
1084
1134
|
items: {
|
|
1085
1135
|
type: string;
|
|
1136
|
+
ref: string;
|
|
1086
1137
|
};
|
|
1087
1138
|
};
|
|
1088
|
-
|
|
1139
|
+
};
|
|
1140
|
+
};
|
|
1141
|
+
};
|
|
1142
|
+
};
|
|
1143
|
+
};
|
|
1144
|
+
};
|
|
1145
|
+
ComAtprotoAdminQueryModerationStatuses: {
|
|
1146
|
+
lexicon: number;
|
|
1147
|
+
id: string;
|
|
1148
|
+
defs: {
|
|
1149
|
+
main: {
|
|
1150
|
+
type: string;
|
|
1151
|
+
description: string;
|
|
1152
|
+
parameters: {
|
|
1153
|
+
type: string;
|
|
1154
|
+
properties: {
|
|
1155
|
+
subject: {
|
|
1156
|
+
type: string;
|
|
1157
|
+
format: string;
|
|
1158
|
+
};
|
|
1159
|
+
comment: {
|
|
1160
|
+
type: string;
|
|
1161
|
+
description: string;
|
|
1162
|
+
};
|
|
1163
|
+
reportedAfter: {
|
|
1164
|
+
type: string;
|
|
1165
|
+
format: string;
|
|
1166
|
+
description: string;
|
|
1167
|
+
};
|
|
1168
|
+
reportedBefore: {
|
|
1169
|
+
type: string;
|
|
1170
|
+
format: string;
|
|
1171
|
+
description: string;
|
|
1172
|
+
};
|
|
1173
|
+
reviewedAfter: {
|
|
1174
|
+
type: string;
|
|
1175
|
+
format: string;
|
|
1176
|
+
description: string;
|
|
1177
|
+
};
|
|
1178
|
+
reviewedBefore: {
|
|
1179
|
+
type: string;
|
|
1180
|
+
format: string;
|
|
1181
|
+
description: string;
|
|
1182
|
+
};
|
|
1183
|
+
includeMuted: {
|
|
1184
|
+
type: string;
|
|
1185
|
+
description: string;
|
|
1186
|
+
};
|
|
1187
|
+
reviewState: {
|
|
1188
|
+
type: string;
|
|
1189
|
+
description: string;
|
|
1190
|
+
};
|
|
1191
|
+
ignoreSubjects: {
|
|
1192
|
+
type: string;
|
|
1193
|
+
items: {
|
|
1089
1194
|
type: string;
|
|
1090
1195
|
format: string;
|
|
1091
1196
|
};
|
|
1092
1197
|
};
|
|
1198
|
+
lastReviewedBy: {
|
|
1199
|
+
type: string;
|
|
1200
|
+
format: string;
|
|
1201
|
+
description: string;
|
|
1202
|
+
};
|
|
1203
|
+
sortField: {
|
|
1204
|
+
type: string;
|
|
1205
|
+
default: string;
|
|
1206
|
+
enum: string[];
|
|
1207
|
+
};
|
|
1208
|
+
sortDirection: {
|
|
1209
|
+
type: string;
|
|
1210
|
+
default: string;
|
|
1211
|
+
enum: string[];
|
|
1212
|
+
};
|
|
1213
|
+
takendown: {
|
|
1214
|
+
type: string;
|
|
1215
|
+
description: string;
|
|
1216
|
+
};
|
|
1217
|
+
limit: {
|
|
1218
|
+
type: string;
|
|
1219
|
+
minimum: number;
|
|
1220
|
+
maximum: number;
|
|
1221
|
+
default: number;
|
|
1222
|
+
};
|
|
1223
|
+
cursor: {
|
|
1224
|
+
type: string;
|
|
1225
|
+
};
|
|
1093
1226
|
};
|
|
1094
1227
|
};
|
|
1095
1228
|
output: {
|
|
1096
|
-
encoding: string;
|
|
1097
|
-
schema: {
|
|
1098
|
-
type: string;
|
|
1099
|
-
ref: string;
|
|
1100
|
-
};
|
|
1101
|
-
};
|
|
1102
|
-
};
|
|
1103
|
-
};
|
|
1104
|
-
};
|
|
1105
|
-
ComAtprotoAdminReverseModerationAction: {
|
|
1106
|
-
lexicon: number;
|
|
1107
|
-
id: string;
|
|
1108
|
-
defs: {
|
|
1109
|
-
main: {
|
|
1110
|
-
type: string;
|
|
1111
|
-
description: string;
|
|
1112
|
-
input: {
|
|
1113
1229
|
encoding: string;
|
|
1114
1230
|
schema: {
|
|
1115
1231
|
type: string;
|
|
1116
1232
|
required: string[];
|
|
1117
1233
|
properties: {
|
|
1118
|
-
|
|
1119
|
-
type: string;
|
|
1120
|
-
};
|
|
1121
|
-
reason: {
|
|
1234
|
+
cursor: {
|
|
1122
1235
|
type: string;
|
|
1123
1236
|
};
|
|
1124
|
-
|
|
1237
|
+
subjectStatuses: {
|
|
1125
1238
|
type: string;
|
|
1126
|
-
|
|
1239
|
+
items: {
|
|
1240
|
+
type: string;
|
|
1241
|
+
ref: string;
|
|
1242
|
+
};
|
|
1127
1243
|
};
|
|
1128
1244
|
};
|
|
1129
1245
|
};
|
|
1130
1246
|
};
|
|
1131
|
-
output: {
|
|
1132
|
-
encoding: string;
|
|
1133
|
-
schema: {
|
|
1134
|
-
type: string;
|
|
1135
|
-
ref: string;
|
|
1136
|
-
};
|
|
1137
|
-
};
|
|
1138
1247
|
};
|
|
1139
1248
|
};
|
|
1140
1249
|
};
|
|
@@ -1211,88 +1320,25 @@ export declare const schemaDict: {
|
|
|
1211
1320
|
subject: {
|
|
1212
1321
|
type: string;
|
|
1213
1322
|
};
|
|
1214
|
-
|
|
1215
|
-
};
|
|
1216
|
-
};
|
|
1217
|
-
output: {
|
|
1218
|
-
encoding: string;
|
|
1219
|
-
schema: {
|
|
1220
|
-
type: string;
|
|
1221
|
-
required: string[];
|
|
1222
|
-
properties: {
|
|
1223
|
-
sent: {
|
|
1323
|
+
senderDid: {
|
|
1224
1324
|
type: string;
|
|
1325
|
+
format: string;
|
|
1225
1326
|
};
|
|
1226
1327
|
};
|
|
1227
1328
|
};
|
|
1228
1329
|
};
|
|
1229
|
-
|
|
1230
|
-
};
|
|
1231
|
-
};
|
|
1232
|
-
ComAtprotoAdminTakeModerationAction: {
|
|
1233
|
-
lexicon: number;
|
|
1234
|
-
id: string;
|
|
1235
|
-
defs: {
|
|
1236
|
-
main: {
|
|
1237
|
-
type: string;
|
|
1238
|
-
description: string;
|
|
1239
|
-
input: {
|
|
1330
|
+
output: {
|
|
1240
1331
|
encoding: string;
|
|
1241
1332
|
schema: {
|
|
1242
1333
|
type: string;
|
|
1243
1334
|
required: string[];
|
|
1244
1335
|
properties: {
|
|
1245
|
-
|
|
1246
|
-
type: string;
|
|
1247
|
-
knownValues: string[];
|
|
1248
|
-
};
|
|
1249
|
-
subject: {
|
|
1250
|
-
type: string;
|
|
1251
|
-
refs: string[];
|
|
1252
|
-
};
|
|
1253
|
-
subjectBlobCids: {
|
|
1254
|
-
type: string;
|
|
1255
|
-
items: {
|
|
1256
|
-
type: string;
|
|
1257
|
-
format: string;
|
|
1258
|
-
};
|
|
1259
|
-
};
|
|
1260
|
-
createLabelVals: {
|
|
1261
|
-
type: string;
|
|
1262
|
-
items: {
|
|
1263
|
-
type: string;
|
|
1264
|
-
};
|
|
1265
|
-
};
|
|
1266
|
-
negateLabelVals: {
|
|
1267
|
-
type: string;
|
|
1268
|
-
items: {
|
|
1269
|
-
type: string;
|
|
1270
|
-
};
|
|
1271
|
-
};
|
|
1272
|
-
reason: {
|
|
1273
|
-
type: string;
|
|
1274
|
-
};
|
|
1275
|
-
durationInHours: {
|
|
1276
|
-
type: string;
|
|
1277
|
-
description: string;
|
|
1278
|
-
};
|
|
1279
|
-
createdBy: {
|
|
1336
|
+
sent: {
|
|
1280
1337
|
type: string;
|
|
1281
|
-
format: string;
|
|
1282
1338
|
};
|
|
1283
1339
|
};
|
|
1284
1340
|
};
|
|
1285
1341
|
};
|
|
1286
|
-
output: {
|
|
1287
|
-
encoding: string;
|
|
1288
|
-
schema: {
|
|
1289
|
-
type: string;
|
|
1290
|
-
ref: string;
|
|
1291
|
-
};
|
|
1292
|
-
};
|
|
1293
|
-
errors: {
|
|
1294
|
-
name: string;
|
|
1295
|
-
}[];
|
|
1296
1342
|
};
|
|
1297
1343
|
};
|
|
1298
1344
|
};
|
|
@@ -3633,6 +3679,113 @@ export declare const schemaDict: {
|
|
|
3633
3679
|
};
|
|
3634
3680
|
};
|
|
3635
3681
|
};
|
|
3682
|
+
ComAtprotoTempImportRepo: {
|
|
3683
|
+
lexicon: number;
|
|
3684
|
+
id: string;
|
|
3685
|
+
defs: {
|
|
3686
|
+
main: {
|
|
3687
|
+
type: string;
|
|
3688
|
+
description: string;
|
|
3689
|
+
parameters: {
|
|
3690
|
+
type: string;
|
|
3691
|
+
required: string[];
|
|
3692
|
+
properties: {
|
|
3693
|
+
did: {
|
|
3694
|
+
type: string;
|
|
3695
|
+
format: string;
|
|
3696
|
+
description: string;
|
|
3697
|
+
};
|
|
3698
|
+
};
|
|
3699
|
+
};
|
|
3700
|
+
input: {
|
|
3701
|
+
encoding: string;
|
|
3702
|
+
};
|
|
3703
|
+
output: {
|
|
3704
|
+
encoding: string;
|
|
3705
|
+
};
|
|
3706
|
+
};
|
|
3707
|
+
};
|
|
3708
|
+
};
|
|
3709
|
+
ComAtprotoTempPushBlob: {
|
|
3710
|
+
lexicon: number;
|
|
3711
|
+
id: string;
|
|
3712
|
+
defs: {
|
|
3713
|
+
main: {
|
|
3714
|
+
type: string;
|
|
3715
|
+
description: string;
|
|
3716
|
+
parameters: {
|
|
3717
|
+
type: string;
|
|
3718
|
+
required: string[];
|
|
3719
|
+
properties: {
|
|
3720
|
+
did: {
|
|
3721
|
+
type: string;
|
|
3722
|
+
format: string;
|
|
3723
|
+
description: string;
|
|
3724
|
+
};
|
|
3725
|
+
};
|
|
3726
|
+
};
|
|
3727
|
+
input: {
|
|
3728
|
+
encoding: string;
|
|
3729
|
+
};
|
|
3730
|
+
};
|
|
3731
|
+
};
|
|
3732
|
+
};
|
|
3733
|
+
ComAtprotoTempTransferAccount: {
|
|
3734
|
+
lexicon: number;
|
|
3735
|
+
id: string;
|
|
3736
|
+
defs: {
|
|
3737
|
+
main: {
|
|
3738
|
+
type: string;
|
|
3739
|
+
description: string;
|
|
3740
|
+
input: {
|
|
3741
|
+
encoding: string;
|
|
3742
|
+
schema: {
|
|
3743
|
+
type: string;
|
|
3744
|
+
required: string[];
|
|
3745
|
+
properties: {
|
|
3746
|
+
handle: {
|
|
3747
|
+
type: string;
|
|
3748
|
+
format: string;
|
|
3749
|
+
};
|
|
3750
|
+
did: {
|
|
3751
|
+
type: string;
|
|
3752
|
+
format: string;
|
|
3753
|
+
};
|
|
3754
|
+
plcOp: {
|
|
3755
|
+
type: string;
|
|
3756
|
+
};
|
|
3757
|
+
};
|
|
3758
|
+
};
|
|
3759
|
+
};
|
|
3760
|
+
output: {
|
|
3761
|
+
encoding: string;
|
|
3762
|
+
schema: {
|
|
3763
|
+
type: string;
|
|
3764
|
+
required: string[];
|
|
3765
|
+
properties: {
|
|
3766
|
+
accessJwt: {
|
|
3767
|
+
type: string;
|
|
3768
|
+
};
|
|
3769
|
+
refreshJwt: {
|
|
3770
|
+
type: string;
|
|
3771
|
+
};
|
|
3772
|
+
handle: {
|
|
3773
|
+
type: string;
|
|
3774
|
+
format: string;
|
|
3775
|
+
};
|
|
3776
|
+
did: {
|
|
3777
|
+
type: string;
|
|
3778
|
+
format: string;
|
|
3779
|
+
};
|
|
3780
|
+
};
|
|
3781
|
+
};
|
|
3782
|
+
};
|
|
3783
|
+
errors: {
|
|
3784
|
+
name: string;
|
|
3785
|
+
}[];
|
|
3786
|
+
};
|
|
3787
|
+
};
|
|
3788
|
+
};
|
|
3636
3789
|
AppBskyActorDefs: {
|
|
3637
3790
|
lexicon: number;
|
|
3638
3791
|
id: string;
|
|
@@ -4555,6 +4708,9 @@ export declare const schemaDict: {
|
|
|
4555
4708
|
type: string;
|
|
4556
4709
|
format: string;
|
|
4557
4710
|
};
|
|
4711
|
+
replyDisabled: {
|
|
4712
|
+
type: string;
|
|
4713
|
+
};
|
|
4558
4714
|
};
|
|
4559
4715
|
};
|
|
4560
4716
|
feedViewPost: {
|
|
@@ -4622,10 +4778,6 @@ export declare const schemaDict: {
|
|
|
4622
4778
|
refs: string[];
|
|
4623
4779
|
};
|
|
4624
4780
|
};
|
|
4625
|
-
viewer: {
|
|
4626
|
-
type: string;
|
|
4627
|
-
ref: string;
|
|
4628
|
-
};
|
|
4629
4781
|
};
|
|
4630
4782
|
};
|
|
4631
4783
|
notFoundPost: {
|
|
@@ -4674,14 +4826,6 @@ export declare const schemaDict: {
|
|
|
4674
4826
|
};
|
|
4675
4827
|
};
|
|
4676
4828
|
};
|
|
4677
|
-
viewerThreadState: {
|
|
4678
|
-
type: string;
|
|
4679
|
-
properties: {
|
|
4680
|
-
canReply: {
|
|
4681
|
-
type: string;
|
|
4682
|
-
};
|
|
4683
|
-
};
|
|
4684
|
-
};
|
|
4685
4829
|
generatorView: {
|
|
4686
4830
|
type: string;
|
|
4687
4831
|
required: string[];
|
|
@@ -5994,6 +6138,10 @@ export declare const schemaDict: {
|
|
|
5994
6138
|
type: string;
|
|
5995
6139
|
required: string[];
|
|
5996
6140
|
properties: {
|
|
6141
|
+
uri: {
|
|
6142
|
+
type: string;
|
|
6143
|
+
format: string;
|
|
6144
|
+
};
|
|
5997
6145
|
subject: {
|
|
5998
6146
|
type: string;
|
|
5999
6147
|
ref: string;
|
|
@@ -7196,23 +7344,21 @@ export declare const schemas: LexiconDoc[];
|
|
|
7196
7344
|
export declare const lexicons: Lexicons;
|
|
7197
7345
|
export declare const ids: {
|
|
7198
7346
|
ComAtprotoAdminDefs: string;
|
|
7347
|
+
ComAtprotoAdminDeleteAccount: string;
|
|
7199
7348
|
ComAtprotoAdminDisableAccountInvites: string;
|
|
7200
7349
|
ComAtprotoAdminDisableInviteCodes: string;
|
|
7350
|
+
ComAtprotoAdminEmitModerationEvent: string;
|
|
7201
7351
|
ComAtprotoAdminEnableAccountInvites: string;
|
|
7202
7352
|
ComAtprotoAdminGetAccountInfo: string;
|
|
7203
7353
|
ComAtprotoAdminGetInviteCodes: string;
|
|
7204
|
-
|
|
7205
|
-
ComAtprotoAdminGetModerationActions: string;
|
|
7206
|
-
ComAtprotoAdminGetModerationReport: string;
|
|
7207
|
-
ComAtprotoAdminGetModerationReports: string;
|
|
7354
|
+
ComAtprotoAdminGetModerationEvent: string;
|
|
7208
7355
|
ComAtprotoAdminGetRecord: string;
|
|
7209
7356
|
ComAtprotoAdminGetRepo: string;
|
|
7210
7357
|
ComAtprotoAdminGetSubjectStatus: string;
|
|
7211
|
-
|
|
7212
|
-
|
|
7358
|
+
ComAtprotoAdminQueryModerationEvents: string;
|
|
7359
|
+
ComAtprotoAdminQueryModerationStatuses: string;
|
|
7213
7360
|
ComAtprotoAdminSearchRepos: string;
|
|
7214
7361
|
ComAtprotoAdminSendEmail: string;
|
|
7215
|
-
ComAtprotoAdminTakeModerationAction: string;
|
|
7216
7362
|
ComAtprotoAdminUpdateAccountEmail: string;
|
|
7217
7363
|
ComAtprotoAdminUpdateAccountHandle: string;
|
|
7218
7364
|
ComAtprotoAdminUpdateSubjectStatus: string;
|
|
@@ -7267,6 +7413,9 @@ export declare const ids: {
|
|
|
7267
7413
|
ComAtprotoSyncRequestCrawl: string;
|
|
7268
7414
|
ComAtprotoSyncSubscribeRepos: string;
|
|
7269
7415
|
ComAtprotoTempFetchLabels: string;
|
|
7416
|
+
ComAtprotoTempImportRepo: string;
|
|
7417
|
+
ComAtprotoTempPushBlob: string;
|
|
7418
|
+
ComAtprotoTempTransferAccount: string;
|
|
7270
7419
|
AppBskyActorDefs: string;
|
|
7271
7420
|
AppBskyActorGetPreferences: string;
|
|
7272
7421
|
AppBskyActorGetProfile: string;
|