@atproto/pds 0.4.85 → 0.4.87

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/lexicon/index.d.ts +2 -0
  3. package/dist/lexicon/index.d.ts.map +1 -1
  4. package/dist/lexicon/index.js +2 -0
  5. package/dist/lexicon/index.js.map +1 -1
  6. package/dist/lexicon/lexicons.d.ts +230 -2
  7. package/dist/lexicon/lexicons.d.ts.map +1 -1
  8. package/dist/lexicon/lexicons.js +126 -1
  9. package/dist/lexicon/lexicons.js.map +1 -1
  10. package/dist/lexicon/types/app/bsky/feed/defs.d.ts +5 -0
  11. package/dist/lexicon/types/app/bsky/feed/defs.d.ts.map +1 -1
  12. package/dist/lexicon/types/app/bsky/feed/defs.js +5 -1
  13. package/dist/lexicon/types/app/bsky/feed/defs.js.map +1 -1
  14. package/dist/lexicon/types/app/bsky/feed/generator.d.ts +1 -0
  15. package/dist/lexicon/types/app/bsky/feed/generator.d.ts.map +1 -1
  16. package/dist/lexicon/types/app/bsky/feed/generator.js.map +1 -1
  17. package/dist/lexicon/types/tools/ozone/moderation/defs.d.ts +40 -0
  18. package/dist/lexicon/types/tools/ozone/moderation/defs.d.ts.map +1 -1
  19. package/dist/lexicon/types/tools/ozone/moderation/defs.js +20 -0
  20. package/dist/lexicon/types/tools/ozone/moderation/defs.js.map +1 -1
  21. package/dist/lexicon/types/tools/ozone/moderation/queryStatuses.d.ts +7 -1
  22. package/dist/lexicon/types/tools/ozone/moderation/queryStatuses.d.ts.map +1 -1
  23. package/package.json +6 -6
  24. package/src/lexicon/index.ts +2 -0
  25. package/src/lexicon/lexicons.ts +138 -1
  26. package/src/lexicon/types/app/bsky/feed/defs.ts +9 -0
  27. package/src/lexicon/types/app/bsky/feed/generator.ts +4 -0
  28. package/src/lexicon/types/tools/ozone/moderation/defs.ts +62 -0
  29. package/src/lexicon/types/tools/ozone/moderation/queryStatuses.ts +11 -1
  30. package/tests/__snapshots__/takedown-appeal.test.ts.snap +6 -0
  31. package/tests/proxied/__snapshots__/admin.test.ts.snap +57 -0
  32. package/tests/proxied/admin.test.ts +3 -0
@@ -247,6 +247,10 @@ export interface GeneratorView {
247
247
  acceptsInteractions?: boolean
248
248
  labels?: ComAtprotoLabelDefs.Label[]
249
249
  viewer?: GeneratorViewerState
250
+ contentMode?:
251
+ | 'app.bsky.feed.defs#contentModeUnspecified'
252
+ | 'app.bsky.feed.defs#contentModeVideo'
253
+ | (string & {})
250
254
  indexedAt: string
251
255
  [k: string]: unknown
252
256
  }
@@ -401,6 +405,11 @@ export const CLICKTHROUGHAUTHOR = 'app.bsky.feed.defs#clickthroughAuthor'
401
405
  export const CLICKTHROUGHREPOSTER = 'app.bsky.feed.defs#clickthroughReposter'
402
406
  /** User clicked through to the embedded content of the feed item */
403
407
  export const CLICKTHROUGHEMBED = 'app.bsky.feed.defs#clickthroughEmbed'
408
+ /** Declares the feed generator returns any types of posts. */
409
+ export const CONTENTMODEUNSPECIFIED =
410
+ 'app.bsky.feed.defs#contentModeUnspecified'
411
+ /** Declares the feed generator returns posts containing app.bsky.embed.video embeds. */
412
+ export const CONTENTMODEVIDEO = 'app.bsky.feed.defs#contentModeVideo'
404
413
  /** Feed item was seen by user */
405
414
  export const INTERACTIONSEEN = 'app.bsky.feed.defs#interactionSeen'
406
415
  /** User liked the feed item */
@@ -19,6 +19,10 @@ export interface Record {
19
19
  labels?:
20
20
  | ComAtprotoLabelDefs.SelfLabels
21
21
  | { $type: string; [k: string]: unknown }
22
+ contentMode?:
23
+ | 'app.bsky.feed.defs#contentModeUnspecified'
24
+ | 'app.bsky.feed.defs#contentModeVideo'
25
+ | (string & {})
22
26
  createdAt: string
23
27
  [k: string]: unknown
24
28
  }
@@ -136,6 +136,8 @@ export interface SubjectStatusView {
136
136
  appealed?: boolean
137
137
  suspendUntil?: string
138
138
  tags?: string[]
139
+ accountStats?: AccountStats
140
+ recordsStats?: RecordsStats
139
141
  [k: string]: unknown
140
142
  }
141
143
 
@@ -151,6 +153,66 @@ export function validateSubjectStatusView(v: unknown): ValidationResult {
151
153
  return lexicons.validate('tools.ozone.moderation.defs#subjectStatusView', v)
152
154
  }
153
155
 
156
+ /** Statistics about a particular account subject */
157
+ export interface AccountStats {
158
+ /** Total number of reports on the account */
159
+ reportCount?: number
160
+ /** Total number of appeals against a moderation action on the account */
161
+ appealCount?: number
162
+ /** Number of times the account was suspended */
163
+ suspendCount?: number
164
+ /** Number of times the account was escalated */
165
+ escalateCount?: number
166
+ /** Number of times the account was taken down */
167
+ takedownCount?: number
168
+ [k: string]: unknown
169
+ }
170
+
171
+ export function isAccountStats(v: unknown): v is AccountStats {
172
+ return (
173
+ isObj(v) &&
174
+ hasProp(v, '$type') &&
175
+ v.$type === 'tools.ozone.moderation.defs#accountStats'
176
+ )
177
+ }
178
+
179
+ export function validateAccountStats(v: unknown): ValidationResult {
180
+ return lexicons.validate('tools.ozone.moderation.defs#accountStats', v)
181
+ }
182
+
183
+ /** Statistics about a set of record subject items */
184
+ export interface RecordsStats {
185
+ /** Cumulative sum of the number of reports on the items in the set */
186
+ totalReports?: number
187
+ /** Number of items that were reported at least once */
188
+ reportedCount?: number
189
+ /** Number of items that were escalated at least once */
190
+ escalatedCount?: number
191
+ /** Number of items that were appealed at least once */
192
+ appealedCount?: number
193
+ /** Total number of item in the set */
194
+ subjectCount?: number
195
+ /** Number of item currently in "reviewOpen" or "reviewEscalated" state */
196
+ pendingCount?: number
197
+ /** Number of item currently in "reviewNone" or "reviewClosed" state */
198
+ processedCount?: number
199
+ /** Number of item currently taken down */
200
+ takendownCount?: number
201
+ [k: string]: unknown
202
+ }
203
+
204
+ export function isRecordsStats(v: unknown): v is RecordsStats {
205
+ return (
206
+ isObj(v) &&
207
+ hasProp(v, '$type') &&
208
+ v.$type === 'tools.ozone.moderation.defs#recordsStats'
209
+ )
210
+ }
211
+
212
+ export function validateRecordsStats(v: unknown): ValidationResult {
213
+ return lexicons.validate('tools.ozone.moderation.defs#recordsStats', v)
214
+ }
215
+
154
216
  export type SubjectReviewState =
155
217
  | 'lex:tools.ozone.moderation.defs#reviewOpen'
156
218
  | 'lex:tools.ozone.moderation.defs#reviewEscalated'
@@ -49,7 +49,11 @@ export interface QueryParams {
49
49
  ignoreSubjects?: string[]
50
50
  /** Get all subject statuses that were reviewed by a specific moderator */
51
51
  lastReviewedBy?: string
52
- sortField: 'lastReviewedAt' | 'lastReportedAt'
52
+ sortField:
53
+ | 'lastReviewedAt'
54
+ | 'lastReportedAt'
55
+ | 'reportedRecordsCount'
56
+ | 'takendownRecordsCount'
53
57
  sortDirection: 'asc' | 'desc'
54
58
  /** Get subjects that were taken down */
55
59
  takendown?: boolean
@@ -63,6 +67,12 @@ export interface QueryParams {
63
67
  collections?: string[]
64
68
  /** If specified, subjects of the given type (account or record) will be returned. When this is set to 'account' the 'collections' parameter will be ignored. When includeAllUserRecords or subject is set, this will be ignored. */
65
69
  subjectType?: 'account' | 'record' | (string & {})
70
+ /** If specified, only subjects that belong to an account that has at least this many suspensions will be returned. */
71
+ minAccountSuspendCount?: number
72
+ /** If specified, only subjects that belong to an account that has at least this many reported records will be returned. */
73
+ minReportedRecordsCount?: number
74
+ /** If specified, only subjects that belong to an account that has at least this many taken down records will be returned. */
75
+ minTakendownRecordsCount?: number
66
76
  }
67
77
 
68
78
  export type InputSchema = undefined
@@ -2,6 +2,9 @@
2
2
 
3
3
  exports[`appeal account takedown actor takedown allows appeal request. 1`] = `
4
4
  Object {
5
+ "accountStats": Object {
6
+ "$type": "tools.ozone.moderation.defs#accountStats",
7
+ },
5
8
  "appealed": true,
6
9
  "createdAt": "1970-01-01T00:00:00.000Z",
7
10
  "hosting": Object {
@@ -13,6 +16,9 @@ Object {
13
16
  "lastReportedAt": "1970-01-01T00:00:00.000Z",
14
17
  "lastReviewedAt": "1970-01-01T00:00:00.000Z",
15
18
  "lastReviewedBy": "user(0)",
19
+ "recordsStats": Object {
20
+ "$type": "tools.ozone.moderation.defs#recordStats",
21
+ },
16
22
  "reviewState": "tools.ozone.moderation.defs#reviewEscalated",
17
23
  "subject": Object {
18
24
  "$type": "com.atproto.admin.defs#repoRef",
@@ -142,6 +142,14 @@ Object {
142
142
  "indexedAt": "1970-01-01T00:00:00.000Z",
143
143
  "moderation": Object {
144
144
  "subjectStatus": Object {
145
+ "accountStats": Object {
146
+ "$type": "tools.ozone.moderation.defs#accountStats",
147
+ "appealCount": 0,
148
+ "escalateCount": 0,
149
+ "reportCount": 2,
150
+ "suspendCount": 0,
151
+ "takedownCount": 0,
152
+ },
145
153
  "createdAt": "1970-01-01T00:00:00.000Z",
146
154
  "hosting": Object {
147
155
  "$type": "tools.ozone.moderation.defs#accountHosting",
@@ -151,6 +159,17 @@ Object {
151
159
  "lastReportedAt": "1970-01-01T00:00:00.000Z",
152
160
  "lastReviewedAt": "1970-01-01T00:00:00.000Z",
153
161
  "lastReviewedBy": "user(1)",
162
+ "recordsStats": Object {
163
+ "$type": "tools.ozone.moderation.defs#recordStats",
164
+ "appealedCount": 0,
165
+ "escalatedCount": 0,
166
+ "pendingCount": 0,
167
+ "processedCount": 1,
168
+ "reportedCount": 0,
169
+ "subjectCount": 1,
170
+ "takendownCount": 0,
171
+ "totalReports": 0,
172
+ },
154
173
  "reviewState": "tools.ozone.moderation.defs#reviewClosed",
155
174
  "subject": Object {
156
175
  "$type": "com.atproto.admin.defs#repoRef",
@@ -240,6 +259,14 @@ Object {
240
259
  "labels": Array [],
241
260
  "moderation": Object {
242
261
  "subjectStatus": Object {
262
+ "accountStats": Object {
263
+ "$type": "tools.ozone.moderation.defs#accountStats",
264
+ "appealCount": 0,
265
+ "escalateCount": 0,
266
+ "reportCount": 2,
267
+ "suspendCount": 0,
268
+ "takedownCount": 0,
269
+ },
243
270
  "createdAt": "1970-01-01T00:00:00.000Z",
244
271
  "hosting": Object {
245
272
  "$type": "tools.ozone.moderation.defs#recordHosting",
@@ -248,6 +275,17 @@ Object {
248
275
  "id": 5,
249
276
  "lastReviewedAt": "1970-01-01T00:00:00.000Z",
250
277
  "lastReviewedBy": "user(1)",
278
+ "recordsStats": Object {
279
+ "$type": "tools.ozone.moderation.defs#recordStats",
280
+ "appealedCount": 0,
281
+ "escalatedCount": 0,
282
+ "pendingCount": 0,
283
+ "processedCount": 1,
284
+ "reportedCount": 0,
285
+ "subjectCount": 1,
286
+ "takendownCount": 0,
287
+ "totalReports": 0,
288
+ },
251
289
  "reviewState": "tools.ozone.moderation.defs#reviewClosed",
252
290
  "subject": Object {
253
291
  "$type": "com.atproto.repo.strongRef",
@@ -301,6 +339,14 @@ Object {
301
339
  "invitesDisabled": true,
302
340
  "moderation": Object {
303
341
  "subjectStatus": Object {
342
+ "accountStats": Object {
343
+ "$type": "tools.ozone.moderation.defs#accountStats",
344
+ "appealCount": 0,
345
+ "escalateCount": 0,
346
+ "reportCount": 2,
347
+ "suspendCount": 0,
348
+ "takedownCount": 0,
349
+ },
304
350
  "createdAt": "1970-01-01T00:00:00.000Z",
305
351
  "hosting": Object {
306
352
  "$type": "tools.ozone.moderation.defs#accountHosting",
@@ -310,6 +356,17 @@ Object {
310
356
  "lastReportedAt": "1970-01-01T00:00:00.000Z",
311
357
  "lastReviewedAt": "1970-01-01T00:00:00.000Z",
312
358
  "lastReviewedBy": "user(1)",
359
+ "recordsStats": Object {
360
+ "$type": "tools.ozone.moderation.defs#recordStats",
361
+ "appealedCount": 0,
362
+ "escalatedCount": 0,
363
+ "pendingCount": 0,
364
+ "processedCount": 1,
365
+ "reportedCount": 0,
366
+ "subjectCount": 1,
367
+ "takendownCount": 0,
368
+ "totalReports": 0,
369
+ },
313
370
  "reviewState": "tools.ozone.moderation.defs#reviewClosed",
314
371
  "subject": Object {
315
372
  "$type": "com.atproto.admin.defs#repoRef",
@@ -62,6 +62,9 @@ describe('proxies admin requests', () => {
62
62
  password: 'password',
63
63
  inviteCode: invite.code,
64
64
  })
65
+ })
66
+
67
+ beforeEach(async () => {
65
68
  await network.processAll()
66
69
  })
67
70