@atproto/api 0.6.10 → 0.6.12

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 (104) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +45 -36
  3. package/bench/agent.bench.ts +2 -2
  4. package/build.js +0 -8
  5. package/definitions/labels.json +7 -1
  6. package/definitions/locale/en/label-groups.json +1 -1
  7. package/definitions/locale/en/labels.json +15 -1
  8. package/definitions/locale/en/proposed-label-groups.json +1 -1
  9. package/definitions/locale/en/proposed-labels.json +1 -1
  10. package/definitions/post-moderation-behaviors.json +315 -231
  11. package/definitions/profile-moderation-behaviors.json +188 -117
  12. package/definitions/proposed-labels.json +1 -1
  13. package/dist/bsky-agent.d.ts +8 -0
  14. package/dist/client/lexicons.d.ts +33 -0
  15. package/dist/client/types/app/bsky/actor/createScene.d.ts +32 -0
  16. package/dist/client/types/app/bsky/actor/defs.d.ts +7 -1
  17. package/dist/client/types/app/bsky/actor/ref.d.ts +28 -0
  18. package/dist/client/types/app/bsky/actor/search.d.ts +22 -0
  19. package/dist/client/types/app/bsky/actor/searchTypeahead.d.ts +20 -0
  20. package/dist/client/types/app/bsky/actor/updateProfile.d.ts +40 -0
  21. package/dist/client/types/app/bsky/embed/images.d.ts +9 -0
  22. package/dist/client/types/app/bsky/feed/feedViewPost.d.ts +28 -0
  23. package/dist/client/types/app/bsky/feed/getVotes.d.ts +36 -0
  24. package/dist/client/types/app/bsky/feed/saveFeed.d.ts +17 -0
  25. package/dist/client/types/app/bsky/feed/setVote.d.ts +25 -0
  26. package/dist/client/types/app/bsky/feed/trend.d.ts +9 -0
  27. package/dist/client/types/app/bsky/feed/unsaveFeed.d.ts +17 -0
  28. package/dist/client/types/app/bsky/feed/vote.d.ts +10 -0
  29. package/dist/client/types/app/bsky/graph/assertCreator.d.ts +1 -0
  30. package/dist/client/types/app/bsky/graph/assertMember.d.ts +1 -0
  31. package/dist/client/types/app/bsky/graph/assertion.d.ts +10 -0
  32. package/dist/client/types/app/bsky/graph/confirmation.d.ts +11 -0
  33. package/dist/client/types/app/bsky/graph/getAssertions.d.ts +48 -0
  34. package/dist/client/types/app/bsky/{actor/getFeedSuggestions.d.ts → graph/getListBlocks.d.ts} +2 -2
  35. package/dist/client/types/app/bsky/graph/getMembers.d.ts +36 -0
  36. package/dist/client/types/app/bsky/graph/getMemberships.d.ts +36 -0
  37. package/dist/client/types/app/bsky/graph/listblock.d.ts +8 -0
  38. package/dist/client/types/app/bsky/graph/mute.d.ts +17 -0
  39. package/dist/client/types/app/bsky/graph/subscribeMuteList.d.ts +17 -0
  40. package/dist/client/types/app/bsky/graph/unmute.d.ts +17 -0
  41. package/dist/client/types/app/bsky/graph/unsubscribeMuteList.d.ts +17 -0
  42. package/dist/client/types/app/bsky/notification/getCount.d.ts +17 -0
  43. package/dist/client/types/app/bsky/notification/list.d.ts +35 -0
  44. package/dist/client/types/app/bsky/system/actorScene.d.ts +1 -0
  45. package/dist/client/types/app/bsky/system/actorUser.d.ts +1 -0
  46. package/dist/client/types/app/bsky/system/declRef.d.ts +8 -0
  47. package/dist/client/types/app/bsky/system/declaration.d.ts +7 -0
  48. package/dist/client/types/app/bsky/unspecced/registerPushNotification.d.ts +16 -0
  49. package/dist/client/types/com/atproto/account/create.d.ts +41 -0
  50. package/dist/client/types/com/atproto/account/createInviteCode.d.ts +22 -0
  51. package/dist/client/types/com/atproto/account/delete.d.ts +25 -0
  52. package/dist/client/types/com/atproto/account/get.d.ts +12 -0
  53. package/dist/client/types/com/atproto/account/requestDelete.d.ts +13 -0
  54. package/dist/client/types/com/atproto/account/requestPasswordReset.d.ts +17 -0
  55. package/dist/client/types/com/atproto/account/resetPassword.d.ts +24 -0
  56. package/dist/client/types/com/atproto/admin/blob.d.ts +37 -0
  57. package/dist/client/types/com/atproto/admin/moderationAction.d.ts +60 -0
  58. package/dist/client/types/com/atproto/admin/moderationReport.d.ts +37 -0
  59. package/dist/client/types/com/atproto/admin/rebaseRepo.d.ts +24 -0
  60. package/dist/client/types/com/atproto/admin/record.d.ts +43 -0
  61. package/dist/client/types/com/atproto/admin/repo.d.ts +45 -0
  62. package/dist/client/types/com/atproto/blob/upload.d.ts +19 -0
  63. package/dist/client/types/com/atproto/handle/resolve.d.ts +18 -0
  64. package/dist/client/types/com/atproto/handle/update.d.ts +17 -0
  65. package/dist/client/types/com/atproto/repo/batchWrite.d.ts +46 -0
  66. package/dist/client/types/com/atproto/repo/describe.d.ts +22 -0
  67. package/dist/client/types/com/atproto/repo/rebaseRepo.d.ts +24 -0
  68. package/dist/client/types/com/atproto/repo/recordRef.d.ts +8 -0
  69. package/dist/client/types/com/atproto/repo/repoRef.d.ts +7 -0
  70. package/dist/client/types/com/atproto/report/create.d.ts +39 -0
  71. package/dist/client/types/com/atproto/report/reasonType.d.ts +3 -0
  72. package/dist/client/types/com/atproto/report/subject.d.ts +23 -0
  73. package/dist/client/types/com/atproto/server/getAccountsConfig.d.ts +27 -0
  74. package/dist/client/types/com/atproto/session/create.d.ts +29 -0
  75. package/dist/client/types/com/atproto/session/delete.d.ts +13 -0
  76. package/dist/client/types/com/atproto/session/get.d.ts +18 -0
  77. package/dist/client/types/com/atproto/session/refresh.d.ts +24 -0
  78. package/dist/client/types/com/atproto/sync/getCommitPath.d.ts +20 -0
  79. package/dist/client/types/com/atproto/sync/getRoot.d.ts +18 -0
  80. package/dist/client/types/com/atproto/sync/subscribeAllRepos.d.ts +9 -0
  81. package/dist/client/types/com/atproto/sync/updateRepo.d.ts +15 -0
  82. package/dist/helpers/bsky.d.ts +20 -0
  83. package/dist/index.js +974 -1148
  84. package/dist/index.js.map +4 -4
  85. package/dist/mixins/bsky.d.ts +23 -0
  86. package/dist/rich-text/sanitize.d.ts +4 -0
  87. package/dist/session.d.ts +42 -0
  88. package/dist/types.d.ts +1 -0
  89. package/docs/labels.md +43 -27
  90. package/docs/moderation-behaviors/posts.md +13 -516
  91. package/docs/moderation-behaviors/profiles.md +14 -174
  92. package/docs/moderation.md +3 -3
  93. package/package.json +23 -23
  94. package/src/bsky-agent.ts +61 -11
  95. package/src/client/lexicons.ts +35 -0
  96. package/src/client/types/app/bsky/actor/defs.ts +19 -0
  97. package/src/client/types/app/bsky/embed/images.ts +21 -0
  98. package/src/moderation/const/label-groups.ts +1 -0
  99. package/src/moderation/const/labels.ts +30 -0
  100. package/src/types.ts +1 -0
  101. package/tests/bsky-agent.test.ts +182 -0
  102. package/tsconfig.build.json +1 -1
  103. package/update-pkg.js +0 -14
  104. /package/dist/client/types/app/bsky/feed/{getFeedSuggestions.d.ts → getSavedFeeds.d.ts} +0 -0
@@ -38,7 +38,6 @@ Key:
38
38
  </td>
39
39
  <td>
40
40
 
41
-
42
41
  </td>
43
42
  <td>
44
43
  🚫
@@ -46,9 +45,6 @@ Key:
46
45
  </td>
47
46
  </tr>
48
47
 
49
-
50
-
51
-
52
48
  <tr>
53
49
  <td><strong>Imperative label ('!hide') on profile</strong></td>
54
50
  <td>
@@ -56,7 +52,6 @@ Key:
56
52
  </td>
57
53
  <td>
58
54
 
59
-
60
55
  </td>
61
56
  <td>
62
57
  🚫
@@ -68,9 +63,6 @@ Key:
68
63
  </td>
69
64
  </tr>
70
65
 
71
-
72
-
73
-
74
66
  <tr>
75
67
  <td><strong>Imperative label ('!no-promote') on account</strong></td>
76
68
  <td>
@@ -78,21 +70,15 @@ Key:
78
70
  </td>
79
71
  <td>
80
72
 
81
-
82
73
  </td>
83
74
  <td>
84
75
 
85
-
86
76
  </td>
87
77
  <td>
88
78
 
89
-
90
79
  </td>
91
80
  </tr>
92
81
 
93
-
94
-
95
-
96
82
  <tr>
97
83
  <td><strong>Imperative label ('!no-promote') on profile</strong></td>
98
84
  <td>
@@ -100,21 +86,15 @@ Key:
100
86
  </td>
101
87
  <td>
102
88
 
103
-
104
89
  </td>
105
90
  <td>
106
91
 
107
-
108
92
  </td>
109
93
  <td>
110
94
 
111
-
112
95
  </td>
113
96
  </tr>
114
97
 
115
-
116
-
117
-
118
98
  <tr>
119
99
  <td><strong>Imperative label ('!warn') on account</strong></td>
120
100
  <td>
@@ -126,7 +106,6 @@ Key:
126
106
  </td>
127
107
  <td>
128
108
 
129
-
130
109
  </td>
131
110
  <td>
132
111
 
@@ -134,9 +113,6 @@ Key:
134
113
  </td>
135
114
  </tr>
136
115
 
137
-
138
-
139
-
140
116
  <tr>
141
117
  <td><strong>Imperative label ('!warn') on profile</strong></td>
142
118
  <td>
@@ -144,7 +120,6 @@ Key:
144
120
  </td>
145
121
  <td>
146
122
 
147
-
148
123
  </td>
149
124
  <td>
150
125
 
@@ -156,8 +131,6 @@ Key:
156
131
  </td>
157
132
  </tr>
158
133
 
159
-
160
-
161
134
  <tr><th>Scenario</th><th>Filter</th><th>Account</th><th>Profile</td><th>Avatar</th></tr>
162
135
  <tr>
163
136
  <td><strong>Blur label ('intolerant') on account (hide)</strong></td>
@@ -170,7 +143,6 @@ Key:
170
143
  </td>
171
144
  <td>
172
145
 
173
-
174
146
  </td>
175
147
  <td>
176
148
 
@@ -178,9 +150,6 @@ Key:
178
150
  </td>
179
151
  </tr>
180
152
 
181
-
182
-
183
-
184
153
  <tr>
185
154
  <td><strong>Blur label ('intolerant') on profile (hide)</strong></td>
186
155
  <td>
@@ -188,7 +157,6 @@ Key:
188
157
  </td>
189
158
  <td>
190
159
 
191
-
192
160
  </td>
193
161
  <td>
194
162
 
@@ -200,9 +168,6 @@ Key:
200
168
  </td>
201
169
  </tr>
202
170
 
203
-
204
-
205
-
206
171
  <tr>
207
172
  <td><strong>Blur label ('intolerant') on account (warn)</strong></td>
208
173
  <td>
@@ -214,7 +179,6 @@ Key:
214
179
  </td>
215
180
  <td>
216
181
 
217
-
218
182
  </td>
219
183
  <td>
220
184
 
@@ -222,9 +186,6 @@ Key:
222
186
  </td>
223
187
  </tr>
224
188
 
225
-
226
-
227
-
228
189
  <tr>
229
190
  <td><strong>Blur label ('intolerant') on profile (warn)</strong></td>
230
191
  <td>
@@ -232,7 +193,6 @@ Key:
232
193
  </td>
233
194
  <td>
234
195
 
235
-
236
196
  </td>
237
197
  <td>
238
198
 
@@ -244,9 +204,6 @@ Key:
244
204
  </td>
245
205
  </tr>
246
206
 
247
-
248
-
249
-
250
207
  <tr>
251
208
  <td><strong>Blur label ('intolerant') on account (ignore)</strong></td>
252
209
  <td>
@@ -254,21 +211,15 @@ Key:
254
211
  </td>
255
212
  <td>
256
213
 
257
-
258
214
  </td>
259
215
  <td>
260
216
 
261
-
262
217
  </td>
263
218
  <td>
264
219
 
265
-
266
220
  </td>
267
221
  </tr>
268
222
 
269
-
270
-
271
-
272
223
  <tr>
273
224
  <td><strong>Blur label ('intolerant') on profile (ignore)</strong></td>
274
225
  <td>
@@ -276,20 +227,15 @@ Key:
276
227
  </td>
277
228
  <td>
278
229
 
279
-
280
230
  </td>
281
231
  <td>
282
232
 
283
-
284
233
  </td>
285
234
  <td>
286
235
 
287
-
288
236
  </td>
289
237
  </tr>
290
238
 
291
-
292
-
293
239
  <tr><th>Scenario</th><th>Filter</th><th>Account</th><th>Profile</td><th>Avatar</th></tr>
294
240
  <tr>
295
241
  <td><strong>Blur-media label ('porn') on account (hide)</strong></td>
@@ -302,7 +248,6 @@ Key:
302
248
  </td>
303
249
  <td>
304
250
 
305
-
306
251
  </td>
307
252
  <td>
308
253
 
@@ -310,9 +255,6 @@ Key:
310
255
  </td>
311
256
  </tr>
312
257
 
313
-
314
-
315
-
316
258
  <tr>
317
259
  <td><strong>Blur-media label ('porn') on profile (hide)</strong></td>
318
260
  <td>
@@ -320,11 +262,9 @@ Key:
320
262
  </td>
321
263
  <td>
322
264
 
323
-
324
265
  </td>
325
266
  <td>
326
267
 
327
-
328
268
  </td>
329
269
  <td>
330
270
 
@@ -332,9 +272,6 @@ Key:
332
272
  </td>
333
273
  </tr>
334
274
 
335
-
336
-
337
-
338
275
  <tr>
339
276
  <td><strong>Blur-media label ('porn') on account (warn)</strong></td>
340
277
  <td>
@@ -346,7 +283,6 @@ Key:
346
283
  </td>
347
284
  <td>
348
285
 
349
-
350
286
  </td>
351
287
  <td>
352
288
 
@@ -354,9 +290,6 @@ Key:
354
290
  </td>
355
291
  </tr>
356
292
 
357
-
358
-
359
-
360
293
  <tr>
361
294
  <td><strong>Blur-media label ('porn') on profile (warn)</strong></td>
362
295
  <td>
@@ -364,11 +297,9 @@ Key:
364
297
  </td>
365
298
  <td>
366
299
 
367
-
368
300
  </td>
369
301
  <td>
370
302
 
371
-
372
303
  </td>
373
304
  <td>
374
305
 
@@ -376,9 +307,6 @@ Key:
376
307
  </td>
377
308
  </tr>
378
309
 
379
-
380
-
381
-
382
310
  <tr>
383
311
  <td><strong>Blur-media label ('porn') on account (ignore)</strong></td>
384
312
  <td>
@@ -386,21 +314,15 @@ Key:
386
314
  </td>
387
315
  <td>
388
316
 
389
-
390
317
  </td>
391
318
  <td>
392
319
 
393
-
394
320
  </td>
395
321
  <td>
396
322
 
397
-
398
323
  </td>
399
324
  </tr>
400
325
 
401
-
402
-
403
-
404
326
  <tr>
405
327
  <td><strong>Blur-media label ('porn') on profile (ignore)</strong></td>
406
328
  <td>
@@ -408,20 +330,15 @@ Key:
408
330
  </td>
409
331
  <td>
410
332
 
411
-
412
333
  </td>
413
334
  <td>
414
335
 
415
-
416
336
  </td>
417
337
  <td>
418
338
 
419
-
420
339
  </td>
421
340
  </tr>
422
341
 
423
-
424
-
425
342
  <tr><th>Scenario</th><th>Filter</th><th>Account</th><th>Profile</td><th>Avatar</th></tr>
426
343
  <tr>
427
344
  <td><strong>Notice label ('scam') on account (hide)</strong></td>
@@ -431,20 +348,18 @@ Key:
431
348
  <td>
432
349
 
433
350
  🪧
351
+
434
352
  </td>
435
353
  <td>
436
354
 
437
-
438
355
  </td>
439
356
  <td>
440
357
 
441
358
  🪧
359
+
442
360
  </td>
443
361
  </tr>
444
362
 
445
-
446
-
447
-
448
363
  <tr>
449
364
  <td><strong>Notice label ('scam') on profile (hide)</strong></td>
450
365
  <td>
@@ -452,21 +367,19 @@ Key:
452
367
  </td>
453
368
  <td>
454
369
 
455
-
456
370
  </td>
457
371
  <td>
458
372
 
459
373
  🪧
374
+
460
375
  </td>
461
376
  <td>
462
377
 
463
378
  🪧
379
+
464
380
  </td>
465
381
  </tr>
466
382
 
467
-
468
-
469
-
470
383
  <tr>
471
384
  <td><strong>Notice label ('scam') on account (warn)</strong></td>
472
385
  <td>
@@ -475,20 +388,18 @@ Key:
475
388
  <td>
476
389
 
477
390
  🪧
391
+
478
392
  </td>
479
393
  <td>
480
394
 
481
-
482
395
  </td>
483
396
  <td>
484
397
 
485
398
  🪧
399
+
486
400
  </td>
487
401
  </tr>
488
402
 
489
-
490
-
491
-
492
403
  <tr>
493
404
  <td><strong>Notice label ('scam') on profile (warn)</strong></td>
494
405
  <td>
@@ -496,21 +407,19 @@ Key:
496
407
  </td>
497
408
  <td>
498
409
 
499
-
500
410
  </td>
501
411
  <td>
502
412
 
503
413
  🪧
414
+
504
415
  </td>
505
416
  <td>
506
417
 
507
418
  🪧
419
+
508
420
  </td>
509
421
  </tr>
510
422
 
511
-
512
-
513
-
514
423
  <tr>
515
424
  <td><strong>Notice label ('scam') on account (ignore)</strong></td>
516
425
  <td>
@@ -518,21 +427,15 @@ Key:
518
427
  </td>
519
428
  <td>
520
429
 
521
-
522
430
  </td>
523
431
  <td>
524
432
 
525
-
526
433
  </td>
527
434
  <td>
528
435
 
529
-
530
436
  </td>
531
437
  </tr>
532
438
 
533
-
534
-
535
-
536
439
  <tr>
537
440
  <td><strong>Notice label ('scam') on profile (ignore)</strong></td>
538
441
  <td>
@@ -540,20 +443,15 @@ Key:
540
443
  </td>
541
444
  <td>
542
445
 
543
-
544
446
  </td>
545
447
  <td>
546
448
 
547
-
548
449
  </td>
549
450
  <td>
550
451
 
551
-
552
452
  </td>
553
453
  </tr>
554
454
 
555
-
556
-
557
455
  <tr><th>Scenario</th><th>Filter</th><th>Account</th><th>Profile</td><th>Avatar</th></tr>
558
456
  <tr>
559
457
  <td><strong>Adult-only label on account when adult content is disabled</strong></td>
@@ -566,7 +464,6 @@ Key:
566
464
  </td>
567
465
  <td>
568
466
 
569
-
570
467
  </td>
571
468
  <td>
572
469
  🚫
@@ -574,9 +471,6 @@ Key:
574
471
  </td>
575
472
  </tr>
576
473
 
577
-
578
-
579
-
580
474
  <tr>
581
475
  <td><strong>Adult-only label on profile when adult content is disabled</strong></td>
582
476
  <td>
@@ -584,11 +478,9 @@ Key:
584
478
  </td>
585
479
  <td>
586
480
 
587
-
588
481
  </td>
589
482
  <td>
590
483
 
591
-
592
484
  </td>
593
485
  <td>
594
486
  🚫
@@ -596,8 +488,6 @@ Key:
596
488
  </td>
597
489
  </tr>
598
490
 
599
-
600
-
601
491
  <tr><th>Scenario</th><th>Filter</th><th>Account</th><th>Profile</td><th>Avatar</th></tr>
602
492
  <tr>
603
493
  <td><strong>Self-profile: !hide on account</strong></td>
@@ -607,20 +497,18 @@ Key:
607
497
  <td>
608
498
 
609
499
  🪧
500
+
610
501
  </td>
611
502
  <td>
612
503
 
613
-
614
504
  </td>
615
505
  <td>
616
506
 
617
507
  🪧
508
+
618
509
  </td>
619
510
  </tr>
620
511
 
621
-
622
-
623
-
624
512
  <tr>
625
513
  <td><strong>Self-profile: !hide on profile</strong></td>
626
514
  <td>
@@ -628,20 +516,19 @@ Key:
628
516
  </td>
629
517
  <td>
630
518
 
631
-
632
519
  </td>
633
520
  <td>
634
521
 
635
522
  🪧
523
+
636
524
  </td>
637
525
  <td>
638
526
 
639
527
  🪧
528
+
640
529
  </td>
641
530
  </tr>
642
531
 
643
-
644
-
645
532
  <tr><th>Scenario</th><th>Filter</th><th>Account</th><th>Profile</td><th>Avatar</th></tr>
646
533
  <tr>
647
534
  <td><strong>Mute/block: Blocking user</strong></td>
@@ -650,11 +537,9 @@ Key:
650
537
  </td>
651
538
  <td>
652
539
 
653
-
654
540
  </td>
655
541
  <td>
656
542
 
657
-
658
543
  </td>
659
544
  <td>
660
545
  🚫
@@ -662,9 +547,6 @@ Key:
662
547
  </td>
663
548
  </tr>
664
549
 
665
-
666
-
667
-
668
550
  <tr>
669
551
  <td><strong>Mute/block: Blocked by user</strong></td>
670
552
  <td>
@@ -672,11 +554,9 @@ Key:
672
554
  </td>
673
555
  <td>
674
556
 
675
-
676
557
  </td>
677
558
  <td>
678
559
 
679
-
680
560
  </td>
681
561
  <td>
682
562
  🚫
@@ -684,9 +564,6 @@ Key:
684
564
  </td>
685
565
  </tr>
686
566
 
687
-
688
-
689
-
690
567
  <tr>
691
568
  <td><strong>Mute/block: Muted user</strong></td>
692
569
  <td>
@@ -694,21 +571,15 @@ Key:
694
571
  </td>
695
572
  <td>
696
573
 
697
-
698
574
  </td>
699
575
  <td>
700
576
 
701
-
702
577
  </td>
703
578
  <td>
704
579
 
705
-
706
580
  </td>
707
581
  </tr>
708
582
 
709
-
710
-
711
-
712
583
  <tr>
713
584
  <td><strong>Mute/block: Muted-by-list user</strong></td>
714
585
  <td>
@@ -716,20 +587,15 @@ Key:
716
587
  </td>
717
588
  <td>
718
589
 
719
-
720
590
  </td>
721
591
  <td>
722
592
 
723
-
724
593
  </td>
725
594
  <td>
726
595
 
727
-
728
596
  </td>
729
597
  </tr>
730
598
 
731
-
732
-
733
599
  <tr><th>Scenario</th><th>Filter</th><th>Account</th><th>Profile</td><th>Avatar</th></tr>
734
600
  <tr>
735
601
  <td><strong>Prioritization: blocking & blocked-by user</strong></td>
@@ -738,11 +604,9 @@ Key:
738
604
  </td>
739
605
  <td>
740
606
 
741
-
742
607
  </td>
743
608
  <td>
744
609
 
745
-
746
610
  </td>
747
611
  <td>
748
612
  🚫
@@ -750,9 +614,6 @@ Key:
750
614
  </td>
751
615
  </tr>
752
616
 
753
-
754
-
755
-
756
617
  <tr>
757
618
  <td><strong>Prioritization: '!hide' label on account of blocked user</strong></td>
758
619
  <td>
@@ -764,7 +625,6 @@ Key:
764
625
  </td>
765
626
  <td>
766
627
 
767
-
768
628
  </td>
769
629
  <td>
770
630
  🚫
@@ -772,9 +632,6 @@ Key:
772
632
  </td>
773
633
  </tr>
774
634
 
775
-
776
-
777
-
778
635
  <tr>
779
636
  <td><strong>Prioritization: '!hide' and 'intolerant' labels on account (hide)</strong></td>
780
637
  <td>
@@ -786,7 +643,6 @@ Key:
786
643
  </td>
787
644
  <td>
788
645
 
789
-
790
646
  </td>
791
647
  <td>
792
648
  🚫
@@ -794,9 +650,6 @@ Key:
794
650
  </td>
795
651
  </tr>
796
652
 
797
-
798
-
799
-
800
653
  <tr>
801
654
  <td><strong>Prioritization: '!warn' and 'intolerant' labels on account (hide)</strong></td>
802
655
  <td>
@@ -808,7 +661,6 @@ Key:
808
661
  </td>
809
662
  <td>
810
663
 
811
-
812
664
  </td>
813
665
  <td>
814
666
 
@@ -816,9 +668,6 @@ Key:
816
668
  </td>
817
669
  </tr>
818
670
 
819
-
820
-
821
-
822
671
  <tr>
823
672
  <td><strong>Prioritization: '!warn' and 'porn' labels on account (hide)</strong></td>
824
673
  <td>
@@ -830,7 +679,6 @@ Key:
830
679
  </td>
831
680
  <td>
832
681
 
833
-
834
682
  </td>
835
683
  <td>
836
684
 
@@ -838,9 +686,6 @@ Key:
838
686
  </td>
839
687
  </tr>
840
688
 
841
-
842
-
843
-
844
689
  <tr>
845
690
  <td><strong>Prioritization: intolerant label on account (hide) and scam label on profile (warn)</strong></td>
846
691
  <td>
@@ -853,6 +698,7 @@ Key:
853
698
  <td>
854
699
 
855
700
  🪧
701
+
856
702
  </td>
857
703
  <td>
858
704
 
@@ -860,9 +706,6 @@ Key:
860
706
  </td>
861
707
  </tr>
862
708
 
863
-
864
-
865
-
866
709
  <tr>
867
710
  <td><strong>Prioritization: !hide on account, !warn on profile</strong></td>
868
711
  <td>
@@ -882,9 +725,6 @@ Key:
882
725
  </td>
883
726
  </tr>
884
727
 
885
-
886
-
887
-
888
728
  <tr>
889
729
  <td><strong>Prioritization: !warn on account, !hide on profile</strong></td>
890
730
  <td>
@@ -904,4 +744,4 @@ Key:
904
744
  </td>
905
745
  </tr>
906
746
 
907
- </table>
747
+ </table>