@atproto/bsky 0.0.13 → 0.0.15

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 (51) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/api/app/bsky/feed/searchPosts.d.ts +3 -0
  3. package/dist/api/com/atproto/temp/fetchLabels.d.ts +3 -0
  4. package/dist/config.d.ts +2 -2
  5. package/dist/context.d.ts +1 -1
  6. package/dist/index.js +723 -443
  7. package/dist/index.js.map +3 -3
  8. package/dist/lexicon/index.d.ts +7 -0
  9. package/dist/lexicon/lexicons.d.ts +63 -0
  10. package/dist/lexicon/types/com/atproto/admin/defs.d.ts +2 -0
  11. package/dist/lexicon/types/com/atproto/server/getSession.d.ts +1 -0
  12. package/dist/lexicon/types/com/atproto/temp/fetchLabels.d.ts +33 -0
  13. package/package.json +10 -11
  14. package/src/api/app/bsky/actor/getSuggestions.ts +45 -21
  15. package/src/api/app/bsky/feed/getPostThread.ts +16 -4
  16. package/src/api/app/bsky/feed/searchPosts.ts +127 -0
  17. package/src/api/com/atproto/admin/reverseModerationAction.ts +3 -3
  18. package/src/api/com/atproto/admin/takeModerationAction.ts +2 -2
  19. package/src/api/com/atproto/admin/util.ts +3 -1
  20. package/src/api/com/atproto/temp/fetchLabels.ts +30 -0
  21. package/src/api/index.ts +4 -0
  22. package/src/config.ts +6 -6
  23. package/src/context.ts +11 -9
  24. package/src/db/periodic-moderation-action-reversal.ts +1 -9
  25. package/src/lexicon/index.ts +22 -0
  26. package/src/lexicon/lexicons.ts +192 -129
  27. package/src/lexicon/types/app/bsky/actor/defs.ts +2 -2
  28. package/src/lexicon/types/app/bsky/actor/searchActors.ts +2 -2
  29. package/src/lexicon/types/app/bsky/actor/searchActorsTypeahead.ts +2 -2
  30. package/src/lexicon/types/app/bsky/feed/searchPosts.ts +3 -3
  31. package/src/lexicon/types/app/bsky/graph/defs.ts +2 -2
  32. package/src/lexicon/types/app/bsky/unspecced/searchActorsSkeleton.ts +4 -4
  33. package/src/lexicon/types/app/bsky/unspecced/searchPostsSkeleton.ts +3 -3
  34. package/src/lexicon/types/com/atproto/admin/defs.ts +5 -3
  35. package/src/lexicon/types/com/atproto/admin/disableAccountInvites.ts +1 -1
  36. package/src/lexicon/types/com/atproto/admin/enableAccountInvites.ts +1 -1
  37. package/src/lexicon/types/com/atproto/admin/getModerationReports.ts +3 -3
  38. package/src/lexicon/types/com/atproto/admin/takeModerationAction.ts +1 -1
  39. package/src/lexicon/types/com/atproto/label/defs.ts +9 -9
  40. package/src/lexicon/types/com/atproto/label/queryLabels.ts +2 -2
  41. package/src/lexicon/types/com/atproto/repo/applyWrites.ts +1 -1
  42. package/src/lexicon/types/com/atproto/repo/createRecord.ts +2 -2
  43. package/src/lexicon/types/com/atproto/repo/deleteRecord.ts +2 -2
  44. package/src/lexicon/types/com/atproto/repo/listRecords.ts +1 -1
  45. package/src/lexicon/types/com/atproto/repo/putRecord.ts +3 -3
  46. package/src/lexicon/types/com/atproto/server/getSession.ts +1 -0
  47. package/src/lexicon/types/com/atproto/sync/listBlobs.ts +1 -1
  48. package/src/lexicon/types/com/atproto/sync/subscribeRepos.ts +4 -4
  49. package/src/lexicon/types/com/atproto/temp/fetchLabels.ts +47 -0
  50. package/tests/admin/get-repo.test.ts +33 -0
  51. package/tests/views/suggestions.test.ts +15 -7
@@ -43,7 +43,7 @@ export const schemaDict = {
43
43
  durationInHours: {
44
44
  type: 'integer',
45
45
  description:
46
- 'Indicates how long this action was meant to be in effect before automatically expiring.',
46
+ 'Indicates how long this action is meant to be in effect before automatically expiring.',
47
47
  },
48
48
  subject: {
49
49
  type: 'union',
@@ -116,7 +116,7 @@ export const schemaDict = {
116
116
  durationInHours: {
117
117
  type: 'integer',
118
118
  description:
119
- 'Indicates how long this action was meant to be in effect before automatically expiring.',
119
+ 'Indicates how long this action is meant to be in effect before automatically expiring.',
120
120
  },
121
121
  subject: {
122
122
  type: 'union',
@@ -184,7 +184,7 @@ export const schemaDict = {
184
184
  durationInHours: {
185
185
  type: 'integer',
186
186
  description:
187
- 'Indicates how long this action was meant to be in effect before automatically expiring.',
187
+ 'Indicates how long this action is meant to be in effect before automatically expiring.',
188
188
  },
189
189
  },
190
190
  },
@@ -434,6 +434,10 @@ export const schemaDict = {
434
434
  inviteNote: {
435
435
  type: 'string',
436
436
  },
437
+ emailConfirmedAt: {
438
+ type: 'string',
439
+ format: 'datetime',
440
+ },
437
441
  },
438
442
  },
439
443
  accountView: {
@@ -469,6 +473,10 @@ export const schemaDict = {
469
473
  invitesDisabled: {
470
474
  type: 'boolean',
471
475
  },
476
+ emailConfirmedAt: {
477
+ type: 'string',
478
+ format: 'datetime',
479
+ },
472
480
  inviteNote: {
473
481
  type: 'string',
474
482
  },
@@ -717,7 +725,7 @@ export const schemaDict = {
717
725
  main: {
718
726
  type: 'procedure',
719
727
  description:
720
- 'Disable an account from receiving new invite codes, but does not invalidate existing codes',
728
+ 'Disable an account from receiving new invite codes, but does not invalidate existing codes.',
721
729
  input: {
722
730
  encoding: 'application/json',
723
731
  schema: {
@@ -730,8 +738,7 @@ export const schemaDict = {
730
738
  },
731
739
  note: {
732
740
  type: 'string',
733
- description:
734
- 'Additionally add a note describing why the invites were disabled',
741
+ description: 'Optional reason for disabled invites.',
735
742
  },
736
743
  },
737
744
  },
@@ -746,7 +753,7 @@ export const schemaDict = {
746
753
  main: {
747
754
  type: 'procedure',
748
755
  description:
749
- 'Disable some set of codes and/or all codes associated with a set of users',
756
+ 'Disable some set of codes and/or all codes associated with a set of users.',
750
757
  input: {
751
758
  encoding: 'application/json',
752
759
  schema: {
@@ -776,7 +783,7 @@ export const schemaDict = {
776
783
  defs: {
777
784
  main: {
778
785
  type: 'procedure',
779
- description: 'Re-enable an accounts ability to receive invite codes',
786
+ description: "Re-enable an account's ability to receive invite codes.",
780
787
  input: {
781
788
  encoding: 'application/json',
782
789
  schema: {
@@ -789,8 +796,7 @@ export const schemaDict = {
789
796
  },
790
797
  note: {
791
798
  type: 'string',
792
- description:
793
- 'Additionally add a note describing why the invites were enabled',
799
+ description: 'Optional reason for enabled invites.',
794
800
  },
795
801
  },
796
802
  },
@@ -804,7 +810,7 @@ export const schemaDict = {
804
810
  defs: {
805
811
  main: {
806
812
  type: 'query',
807
- description: 'View details about an account.',
813
+ description: 'Get details about an account.',
808
814
  parameters: {
809
815
  type: 'params',
810
816
  required: ['did'],
@@ -831,7 +837,7 @@ export const schemaDict = {
831
837
  defs: {
832
838
  main: {
833
839
  type: 'query',
834
- description: 'Admin view of invite codes',
840
+ description: 'Get an admin view of invite codes.',
835
841
  parameters: {
836
842
  type: 'params',
837
843
  properties: {
@@ -879,7 +885,7 @@ export const schemaDict = {
879
885
  defs: {
880
886
  main: {
881
887
  type: 'query',
882
- description: 'View details about a moderation action.',
888
+ description: 'Get details about a moderation action.',
883
889
  parameters: {
884
890
  type: 'params',
885
891
  required: ['id'],
@@ -905,7 +911,7 @@ export const schemaDict = {
905
911
  defs: {
906
912
  main: {
907
913
  type: 'query',
908
- description: 'List moderation actions related to a subject.',
914
+ description: 'Get a list of moderation actions related to a subject.',
909
915
  parameters: {
910
916
  type: 'params',
911
917
  properties: {
@@ -951,7 +957,7 @@ export const schemaDict = {
951
957
  defs: {
952
958
  main: {
953
959
  type: 'query',
954
- description: 'View details about a moderation report.',
960
+ description: 'Get details about a moderation report.',
955
961
  parameters: {
956
962
  type: 'params',
957
963
  required: ['id'],
@@ -977,7 +983,7 @@ export const schemaDict = {
977
983
  defs: {
978
984
  main: {
979
985
  type: 'query',
980
- description: 'List moderation reports related to a subject.',
986
+ description: 'Get moderation reports related to a subject.',
981
987
  parameters: {
982
988
  type: 'params',
983
989
  properties: {
@@ -994,14 +1000,14 @@ export const schemaDict = {
994
1000
  type: 'string',
995
1001
  format: 'did',
996
1002
  description:
997
- 'Get all reports that were actioned by a specific moderator',
1003
+ 'Get all reports that were actioned by a specific moderator.',
998
1004
  },
999
1005
  reporters: {
1000
1006
  type: 'array',
1001
1007
  items: {
1002
1008
  type: 'string',
1003
1009
  },
1004
- description: 'Filter reports made by one or more DIDs',
1010
+ description: 'Filter reports made by one or more DIDs.',
1005
1011
  },
1006
1012
  resolved: {
1007
1013
  type: 'boolean',
@@ -1027,7 +1033,7 @@ export const schemaDict = {
1027
1033
  reverse: {
1028
1034
  type: 'boolean',
1029
1035
  description:
1030
- 'Reverse the order of the returned records? when true, returns reports in chronological order',
1036
+ 'Reverse the order of the returned records. When true, returns reports in chronological order.',
1031
1037
  },
1032
1038
  },
1033
1039
  },
@@ -1059,7 +1065,7 @@ export const schemaDict = {
1059
1065
  defs: {
1060
1066
  main: {
1061
1067
  type: 'query',
1062
- description: 'View details about a record.',
1068
+ description: 'Get details about a record.',
1063
1069
  parameters: {
1064
1070
  type: 'params',
1065
1071
  required: ['uri'],
@@ -1095,7 +1101,7 @@ export const schemaDict = {
1095
1101
  defs: {
1096
1102
  main: {
1097
1103
  type: 'query',
1098
- description: 'View details about a repository.',
1104
+ description: 'Get details about a repository.',
1099
1105
  parameters: {
1100
1106
  type: 'params',
1101
1107
  required: ['did'],
@@ -1128,7 +1134,7 @@ export const schemaDict = {
1128
1134
  main: {
1129
1135
  type: 'query',
1130
1136
  description:
1131
- 'Fetch the service-specific the admin status of a subject (account, record, or blob)',
1137
+ 'Get the service-specific admin status of a subject (account, record, or blob).',
1132
1138
  parameters: {
1133
1139
  type: 'params',
1134
1140
  properties: {
@@ -1301,7 +1307,7 @@ export const schemaDict = {
1301
1307
  defs: {
1302
1308
  main: {
1303
1309
  type: 'procedure',
1304
- description: "Send email to a user's primary email address",
1310
+ description: "Send email to a user's account email address.",
1305
1311
  input: {
1306
1312
  encoding: 'application/json',
1307
1313
  schema: {
@@ -1342,7 +1348,7 @@ export const schemaDict = {
1342
1348
  defs: {
1343
1349
  main: {
1344
1350
  type: 'procedure',
1345
- description: 'Take a moderation action on a repo.',
1351
+ description: 'Take a moderation action on an actor.',
1346
1352
  input: {
1347
1353
  encoding: 'application/json',
1348
1354
  schema: {
@@ -1389,7 +1395,7 @@ export const schemaDict = {
1389
1395
  durationInHours: {
1390
1396
  type: 'integer',
1391
1397
  description:
1392
- 'Indicates how long this action was meant to be in effect before automatically expiring.',
1398
+ 'Indicates how long this action is meant to be in effect before automatically expiring.',
1393
1399
  },
1394
1400
  createdBy: {
1395
1401
  type: 'string',
@@ -1419,7 +1425,7 @@ export const schemaDict = {
1419
1425
  defs: {
1420
1426
  main: {
1421
1427
  type: 'procedure',
1422
- description: "Administrative action to update an account's email",
1428
+ description: "Administrative action to update an account's email.",
1423
1429
  input: {
1424
1430
  encoding: 'application/json',
1425
1431
  schema: {
@@ -1446,7 +1452,7 @@ export const schemaDict = {
1446
1452
  defs: {
1447
1453
  main: {
1448
1454
  type: 'procedure',
1449
- description: "Administrative action to update an account's handle",
1455
+ description: "Administrative action to update an account's handle.",
1450
1456
  input: {
1451
1457
  encoding: 'application/json',
1452
1458
  schema: {
@@ -1474,7 +1480,7 @@ export const schemaDict = {
1474
1480
  main: {
1475
1481
  type: 'procedure',
1476
1482
  description:
1477
- 'Update the service-specific admin status of a subject (account, record, or blob)',
1483
+ 'Update the service-specific admin status of a subject (account, record, or blob).',
1478
1484
  input: {
1479
1485
  encoding: 'application/json',
1480
1486
  schema: {
@@ -1560,7 +1566,7 @@ export const schemaDict = {
1560
1566
  defs: {
1561
1567
  main: {
1562
1568
  type: 'procedure',
1563
- description: 'Updates the handle of the account',
1569
+ description: 'Updates the handle of the account.',
1564
1570
  input: {
1565
1571
  encoding: 'application/json',
1566
1572
  schema: {
@@ -1583,41 +1589,42 @@ export const schemaDict = {
1583
1589
  defs: {
1584
1590
  label: {
1585
1591
  type: 'object',
1586
- description: 'Metadata tag on an atproto resource (eg, repo or record)',
1592
+ description:
1593
+ 'Metadata tag on an atproto resource (eg, repo or record).',
1587
1594
  required: ['src', 'uri', 'val', 'cts'],
1588
1595
  properties: {
1589
1596
  src: {
1590
1597
  type: 'string',
1591
1598
  format: 'did',
1592
- description: 'DID of the actor who created this label',
1599
+ description: 'DID of the actor who created this label.',
1593
1600
  },
1594
1601
  uri: {
1595
1602
  type: 'string',
1596
1603
  format: 'uri',
1597
1604
  description:
1598
- 'AT URI of the record, repository (account), or other resource which this label applies to',
1605
+ 'AT URI of the record, repository (account), or other resource that this label applies to.',
1599
1606
  },
1600
1607
  cid: {
1601
1608
  type: 'string',
1602
1609
  format: 'cid',
1603
1610
  description:
1604
- "optionally, CID specifying the specific version of 'uri' resource this label applies to",
1611
+ "Optionally, CID specifying the specific version of 'uri' resource this label applies to.",
1605
1612
  },
1606
1613
  val: {
1607
1614
  type: 'string',
1608
1615
  maxLength: 128,
1609
1616
  description:
1610
- 'the short string name of the value or type of this label',
1617
+ 'The short string name of the value or type of this label.',
1611
1618
  },
1612
1619
  neg: {
1613
1620
  type: 'boolean',
1614
1621
  description:
1615
- 'if true, this is a negation label, overwriting a previous label',
1622
+ 'If true, this is a negation label, overwriting a previous label.',
1616
1623
  },
1617
1624
  cts: {
1618
1625
  type: 'string',
1619
1626
  format: 'datetime',
1620
- description: 'timestamp when this label was created',
1627
+ description: 'Timestamp when this label was created.',
1621
1628
  },
1622
1629
  },
1623
1630
  },
@@ -1640,14 +1647,14 @@ export const schemaDict = {
1640
1647
  selfLabel: {
1641
1648
  type: 'object',
1642
1649
  description:
1643
- 'Metadata tag on an atproto record, published by the author within the record. Note -- schemas should use #selfLabels, not #selfLabel.',
1650
+ 'Metadata tag on an atproto record, published by the author within the record. Note that schemas should use #selfLabels, not #selfLabel.',
1644
1651
  required: ['val'],
1645
1652
  properties: {
1646
1653
  val: {
1647
1654
  type: 'string',
1648
1655
  maxLength: 128,
1649
1656
  description:
1650
- 'the short string name of the value or type of this label',
1657
+ 'The short string name of the value or type of this label.',
1651
1658
  },
1652
1659
  },
1653
1660
  },
@@ -1670,7 +1677,7 @@ export const schemaDict = {
1670
1677
  type: 'string',
1671
1678
  },
1672
1679
  description:
1673
- "List of AT URI patterns to match (boolean 'OR'). Each may be a prefix (ending with '*'; will match inclusive of the string leading to '*'), or a full URI",
1680
+ "List of AT URI patterns to match (boolean 'OR'). Each may be a prefix (ending with '*'; will match inclusive of the string leading to '*'), or a full URI.",
1674
1681
  },
1675
1682
  sources: {
1676
1683
  type: 'array',
@@ -1678,7 +1685,8 @@ export const schemaDict = {
1678
1685
  type: 'string',
1679
1686
  format: 'did',
1680
1687
  },
1681
- description: 'Optional list of label sources (DIDs) to filter on',
1688
+ description:
1689
+ 'Optional list of label sources (DIDs) to filter on.',
1682
1690
  },
1683
1691
  limit: {
1684
1692
  type: 'integer',
@@ -1719,7 +1727,7 @@ export const schemaDict = {
1719
1727
  defs: {
1720
1728
  main: {
1721
1729
  type: 'subscription',
1722
- description: 'Subscribe to label updates',
1730
+ description: 'Subscribe to label updates.',
1723
1731
  parameters: {
1724
1732
  type: 'params',
1725
1733
  properties: {
@@ -1914,7 +1922,7 @@ export const schemaDict = {
1914
1922
  validate: {
1915
1923
  type: 'boolean',
1916
1924
  default: true,
1917
- description: 'Validate the records?',
1925
+ description: 'Flag for validating the records.',
1918
1926
  },
1919
1927
  writes: {
1920
1928
  type: 'array',
@@ -2023,7 +2031,7 @@ export const schemaDict = {
2023
2031
  validate: {
2024
2032
  type: 'boolean',
2025
2033
  default: true,
2026
- description: 'Validate the record?',
2034
+ description: 'Flag for validating the record.',
2027
2035
  },
2028
2036
  record: {
2029
2037
  type: 'unknown',
@@ -2033,7 +2041,7 @@ export const schemaDict = {
2033
2041
  type: 'string',
2034
2042
  format: 'cid',
2035
2043
  description:
2036
- 'Compare and swap with the previous commit by cid.',
2044
+ 'Compare and swap with the previous commit by CID.',
2037
2045
  },
2038
2046
  },
2039
2047
  },
@@ -2094,13 +2102,13 @@ export const schemaDict = {
2094
2102
  type: 'string',
2095
2103
  format: 'cid',
2096
2104
  description:
2097
- 'Compare and swap with the previous record by cid.',
2105
+ 'Compare and swap with the previous record by CID.',
2098
2106
  },
2099
2107
  swapCommit: {
2100
2108
  type: 'string',
2101
2109
  format: 'cid',
2102
2110
  description:
2103
- 'Compare and swap with the previous commit by cid.',
2111
+ 'Compare and swap with the previous commit by CID.',
2104
2112
  },
2105
2113
  },
2106
2114
  },
@@ -2270,7 +2278,7 @@ export const schemaDict = {
2270
2278
  },
2271
2279
  reverse: {
2272
2280
  type: 'boolean',
2273
- description: 'Reverse the order of the returned records?',
2281
+ description: 'Flag to reverse the order of the returned records.',
2274
2282
  },
2275
2283
  },
2276
2284
  },
@@ -2345,7 +2353,7 @@ export const schemaDict = {
2345
2353
  validate: {
2346
2354
  type: 'boolean',
2347
2355
  default: true,
2348
- description: 'Validate the record?',
2356
+ description: 'Flag for validating the record.',
2349
2357
  },
2350
2358
  record: {
2351
2359
  type: 'unknown',
@@ -2355,13 +2363,13 @@ export const schemaDict = {
2355
2363
  type: 'string',
2356
2364
  format: 'cid',
2357
2365
  description:
2358
- 'Compare and swap with the previous record by cid.',
2366
+ 'Compare and swap with the previous record by CID.',
2359
2367
  },
2360
2368
  swapCommit: {
2361
2369
  type: 'string',
2362
2370
  format: 'cid',
2363
2371
  description:
2364
- 'Compare and swap with the previous commit by cid.',
2372
+ 'Compare and swap with the previous commit by CID.',
2365
2373
  },
2366
2374
  },
2367
2375
  },
@@ -2575,7 +2583,7 @@ export const schemaDict = {
2575
2583
  defs: {
2576
2584
  main: {
2577
2585
  type: 'procedure',
2578
- description: 'Create an app-specific password.',
2586
+ description: 'Create an App Password.',
2579
2587
  input: {
2580
2588
  encoding: 'application/json',
2581
2589
  schema: {
@@ -2663,7 +2671,7 @@ export const schemaDict = {
2663
2671
  defs: {
2664
2672
  main: {
2665
2673
  type: 'procedure',
2666
- description: 'Create an invite code.',
2674
+ description: 'Create invite codes.',
2667
2675
  input: {
2668
2676
  encoding: 'application/json',
2669
2677
  schema: {
@@ -2851,7 +2859,7 @@ export const schemaDict = {
2851
2859
  defs: {
2852
2860
  main: {
2853
2861
  type: 'procedure',
2854
- description: 'Delete a user account with a token and password.',
2862
+ description: "Delete an actor's account with a token and password.",
2855
2863
  input: {
2856
2864
  encoding: 'application/json',
2857
2865
  schema: {
@@ -2942,7 +2950,7 @@ export const schemaDict = {
2942
2950
  defs: {
2943
2951
  main: {
2944
2952
  type: 'query',
2945
- description: 'Get all invite codes for a given account',
2953
+ description: 'Get all invite codes for a given account.',
2946
2954
  parameters: {
2947
2955
  type: 'params',
2948
2956
  properties: {
@@ -3007,6 +3015,9 @@ export const schemaDict = {
3007
3015
  emailConfirmed: {
3008
3016
  type: 'boolean',
3009
3017
  },
3018
+ didDoc: {
3019
+ type: 'unknown',
3020
+ },
3010
3021
  },
3011
3022
  },
3012
3023
  },
@@ -3019,7 +3030,7 @@ export const schemaDict = {
3019
3030
  defs: {
3020
3031
  main: {
3021
3032
  type: 'query',
3022
- description: 'List all app-specific passwords.',
3033
+ description: 'List all App Passwords.',
3023
3034
  output: {
3024
3035
  encoding: 'application/json',
3025
3036
  schema: {
@@ -3115,7 +3126,7 @@ export const schemaDict = {
3115
3126
  main: {
3116
3127
  type: 'procedure',
3117
3128
  description:
3118
- 'Request an email with a code to confirm ownership of email',
3129
+ 'Request an email with a code to confirm ownership of email.',
3119
3130
  },
3120
3131
  },
3121
3132
  },
@@ -3237,7 +3248,7 @@ export const schemaDict = {
3237
3248
  defs: {
3238
3249
  main: {
3239
3250
  type: 'procedure',
3240
- description: 'Revoke an app-specific password by name.',
3251
+ description: 'Revoke an App Password by name.',
3241
3252
  input: {
3242
3253
  encoding: 'application/json',
3243
3254
  schema: {
@@ -3326,7 +3337,7 @@ export const schemaDict = {
3326
3337
  defs: {
3327
3338
  main: {
3328
3339
  type: 'query',
3329
- description: 'Gets blocks from a given repo.',
3340
+ description: 'Get blocks from a given repo.',
3330
3341
  parameters: {
3331
3342
  type: 'params',
3332
3343
  required: ['did', 'cids'],
@@ -3421,7 +3432,7 @@ export const schemaDict = {
3421
3432
  defs: {
3422
3433
  main: {
3423
3434
  type: 'query',
3424
- description: 'Gets the current commit CID & revision of the repo.',
3435
+ description: 'Get the current commit CID & revision of the repo.',
3425
3436
  parameters: {
3426
3437
  type: 'params',
3427
3438
  required: ['did'],
@@ -3464,7 +3475,7 @@ export const schemaDict = {
3464
3475
  main: {
3465
3476
  type: 'query',
3466
3477
  description:
3467
- 'Gets blocks needed for existence or non-existence of record.',
3478
+ 'Get blocks needed for existence or non-existence of record.',
3468
3479
  parameters: {
3469
3480
  type: 'params',
3470
3481
  required: ['did', 'collection', 'rkey'],
@@ -3501,7 +3512,7 @@ export const schemaDict = {
3501
3512
  main: {
3502
3513
  type: 'query',
3503
3514
  description:
3504
- "Gets the did's repo, optionally catching up from a specific revision.",
3515
+ "Gets the DID's repo, optionally catching up from a specific revision.",
3505
3516
  parameters: {
3506
3517
  type: 'params',
3507
3518
  required: ['did'],
@@ -3529,7 +3540,7 @@ export const schemaDict = {
3529
3540
  defs: {
3530
3541
  main: {
3531
3542
  type: 'query',
3532
- description: 'List blob cids since some revision',
3543
+ description: 'List blob CIDs since some revision.',
3533
3544
  parameters: {
3534
3545
  type: 'params',
3535
3546
  required: ['did'],
@@ -3541,7 +3552,7 @@ export const schemaDict = {
3541
3552
  },
3542
3553
  since: {
3543
3554
  type: 'string',
3544
- description: 'Optional revision of the repo to list blobs since',
3555
+ description: 'Optional revision of the repo to list blobs since.',
3545
3556
  },
3546
3557
  limit: {
3547
3558
  type: 'integer',
@@ -3582,7 +3593,7 @@ export const schemaDict = {
3582
3593
  defs: {
3583
3594
  main: {
3584
3595
  type: 'query',
3585
- description: 'List dids and root cids of hosted repos',
3596
+ description: 'List DIDs and root CIDs of hosted repos.',
3586
3597
  parameters: {
3587
3598
  type: 'params',
3588
3599
  properties: {
@@ -3643,7 +3654,7 @@ export const schemaDict = {
3643
3654
  main: {
3644
3655
  type: 'procedure',
3645
3656
  description:
3646
- 'Notify a crawling service of a recent update. Often when a long break between updates causes the connection with the crawling service to break.',
3657
+ 'Notify a crawling service of a recent update; often when a long break between updates causes the connection with the crawling service to break.',
3647
3658
  input: {
3648
3659
  encoding: 'application/json',
3649
3660
  schema: {
@@ -3691,7 +3702,7 @@ export const schemaDict = {
3691
3702
  defs: {
3692
3703
  main: {
3693
3704
  type: 'subscription',
3694
- description: 'Subscribe to repo updates',
3705
+ description: 'Subscribe to repo updates.',
3695
3706
  parameters: {
3696
3707
  type: 'params',
3697
3708
  properties: {
@@ -3760,15 +3771,15 @@ export const schemaDict = {
3760
3771
  },
3761
3772
  rev: {
3762
3773
  type: 'string',
3763
- description: 'The rev of the emitted commit',
3774
+ description: 'The rev of the emitted commit.',
3764
3775
  },
3765
3776
  since: {
3766
3777
  type: 'string',
3767
- description: 'The rev of the last emitted commit from this repo',
3778
+ description: 'The rev of the last emitted commit from this repo.',
3768
3779
  },
3769
3780
  blocks: {
3770
3781
  type: 'bytes',
3771
- description: 'CAR file containing relevant blocks',
3782
+ description: 'CAR file containing relevant blocks.',
3772
3783
  maxLength: 1000000,
3773
3784
  },
3774
3785
  ops: {
@@ -3866,7 +3877,7 @@ export const schemaDict = {
3866
3877
  repoOp: {
3867
3878
  type: 'object',
3868
3879
  description:
3869
- "A repo operation, ie a write of a single record. For creates and updates, cid is the record's CID as of this operation. For deletes, it's null.",
3880
+ "A repo operation, ie a write of a single record. For creates and updates, CID is the record's CID as of this operation. For deletes, it's null.",
3870
3881
  required: ['action', 'path', 'cid'],
3871
3882
  nullable: ['cid'],
3872
3883
  properties: {
@@ -3884,6 +3895,47 @@ export const schemaDict = {
3884
3895
  },
3885
3896
  },
3886
3897
  },
3898
+ ComAtprotoTempFetchLabels: {
3899
+ lexicon: 1,
3900
+ id: 'com.atproto.temp.fetchLabels',
3901
+ defs: {
3902
+ main: {
3903
+ type: 'query',
3904
+ description:
3905
+ 'Fetch all labels from a labeler created after a certain date.',
3906
+ parameters: {
3907
+ type: 'params',
3908
+ properties: {
3909
+ since: {
3910
+ type: 'integer',
3911
+ },
3912
+ limit: {
3913
+ type: 'integer',
3914
+ minimum: 1,
3915
+ maximum: 250,
3916
+ default: 50,
3917
+ },
3918
+ },
3919
+ },
3920
+ output: {
3921
+ encoding: 'application/json',
3922
+ schema: {
3923
+ type: 'object',
3924
+ required: ['labels'],
3925
+ properties: {
3926
+ labels: {
3927
+ type: 'array',
3928
+ items: {
3929
+ type: 'ref',
3930
+ ref: 'lex:com.atproto.label.defs#label',
3931
+ },
3932
+ },
3933
+ },
3934
+ },
3935
+ },
3936
+ },
3937
+ },
3938
+ },
3887
3939
  AppBskyActorDefs: {
3888
3940
  lexicon: 1,
3889
3941
  id: 'app.bsky.actor.defs',
@@ -4112,7 +4164,7 @@ export const schemaDict = {
4112
4164
  birthDate: {
4113
4165
  type: 'string',
4114
4166
  format: 'datetime',
4115
- description: 'The birth date of the owner of the account.',
4167
+ description: 'The birth date of account owner.',
4116
4168
  },
4117
4169
  },
4118
4170
  },
@@ -4154,7 +4206,7 @@ export const schemaDict = {
4154
4206
  properties: {
4155
4207
  sort: {
4156
4208
  type: 'string',
4157
- description: 'Sorting mode.',
4209
+ description: 'Sorting mode for threads.',
4158
4210
  knownValues: ['oldest', 'newest', 'most-likes', 'random'],
4159
4211
  },
4160
4212
  prioritizeFollowedUsers: {
@@ -4198,6 +4250,7 @@ export const schemaDict = {
4198
4250
  defs: {
4199
4251
  main: {
4200
4252
  type: 'query',
4253
+ description: 'Get detailed profile view of an actor.',
4201
4254
  parameters: {
4202
4255
  type: 'params',
4203
4256
  required: ['actor'],
@@ -4224,6 +4277,7 @@ export const schemaDict = {
4224
4277
  defs: {
4225
4278
  main: {
4226
4279
  type: 'query',
4280
+ description: 'Get detailed profile views of multiple actors.',
4227
4281
  parameters: {
4228
4282
  type: 'params',
4229
4283
  required: ['actors'],
@@ -4263,8 +4317,7 @@ export const schemaDict = {
4263
4317
  defs: {
4264
4318
  main: {
4265
4319
  type: 'query',
4266
- description:
4267
- 'Get a list of actors suggested for following. Used in discovery UIs.',
4320
+ description: 'Get a list of suggested actors, used for discovery.',
4268
4321
  parameters: {
4269
4322
  type: 'params',
4270
4323
  properties: {
@@ -4307,6 +4360,7 @@ export const schemaDict = {
4307
4360
  defs: {
4308
4361
  main: {
4309
4362
  type: 'record',
4363
+ description: 'A declaration of a profile.',
4310
4364
  key: 'literal:self',
4311
4365
  record: {
4312
4366
  type: 'object',
@@ -4346,7 +4400,7 @@ export const schemaDict = {
4346
4400
  defs: {
4347
4401
  main: {
4348
4402
  type: 'procedure',
4349
- description: 'Sets the private preferences attached to the account.',
4403
+ description: 'Set the private preferences attached to the account.',
4350
4404
  input: {
4351
4405
  encoding: 'application/json',
4352
4406
  schema: {
@@ -4375,12 +4429,12 @@ export const schemaDict = {
4375
4429
  properties: {
4376
4430
  term: {
4377
4431
  type: 'string',
4378
- description: "DEPRECATED: use 'q' instead",
4432
+ description: "DEPRECATED: use 'q' instead.",
4379
4433
  },
4380
4434
  q: {
4381
4435
  type: 'string',
4382
4436
  description:
4383
- 'search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended',
4437
+ 'Search query string. Syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended.',
4384
4438
  },
4385
4439
  limit: {
4386
4440
  type: 'integer',
@@ -4421,17 +4475,17 @@ export const schemaDict = {
4421
4475
  defs: {
4422
4476
  main: {
4423
4477
  type: 'query',
4424
- description: 'Find actor suggestions for a search term.',
4478
+ description: 'Find actor suggestions for a prefix search term.',
4425
4479
  parameters: {
4426
4480
  type: 'params',
4427
4481
  properties: {
4428
4482
  term: {
4429
4483
  type: 'string',
4430
- description: "DEPRECATED: use 'q' instead",
4484
+ description: "DEPRECATED: use 'q' instead.",
4431
4485
  },
4432
4486
  q: {
4433
4487
  type: 'string',
4434
- description: 'search query prefix; not a full query string',
4488
+ description: 'Search query prefix; not a full query string.',
4435
4489
  },
4436
4490
  limit: {
4437
4491
  type: 'integer',
@@ -4464,7 +4518,7 @@ export const schemaDict = {
4464
4518
  lexicon: 1,
4465
4519
  id: 'app.bsky.embed.external',
4466
4520
  description:
4467
- 'A representation of some externally linked content, embedded in another form of content',
4521
+ 'A representation of some externally linked content, embedded in another form of content.',
4468
4522
  defs: {
4469
4523
  main: {
4470
4524
  type: 'object',
@@ -4531,7 +4585,7 @@ export const schemaDict = {
4531
4585
  AppBskyEmbedImages: {
4532
4586
  lexicon: 1,
4533
4587
  id: 'app.bsky.embed.images',
4534
- description: 'A set of images embedded in some other form of content',
4588
+ description: 'A set of images embedded in some other form of content.',
4535
4589
  defs: {
4536
4590
  main: {
4537
4591
  type: 'object',
@@ -4620,7 +4674,7 @@ export const schemaDict = {
4620
4674
  lexicon: 1,
4621
4675
  id: 'app.bsky.embed.record',
4622
4676
  description:
4623
- 'A representation of a record embedded in another form of content',
4677
+ 'A representation of a record embedded in another form of content.',
4624
4678
  defs: {
4625
4679
  main: {
4626
4680
  type: 'object',
@@ -4730,7 +4784,7 @@ export const schemaDict = {
4730
4784
  lexicon: 1,
4731
4785
  id: 'app.bsky.embed.recordWithMedia',
4732
4786
  description:
4733
- 'A representation of a record embedded in another form of content, alongside other compatible embeds',
4787
+ 'A representation of a record embedded in another form of content, alongside other compatible embeds.',
4734
4788
  defs: {
4735
4789
  main: {
4736
4790
  type: 'object',
@@ -5098,7 +5152,7 @@ export const schemaDict = {
5098
5152
  main: {
5099
5153
  type: 'query',
5100
5154
  description:
5101
- 'Returns information about a given feed generator including TOS & offered feed URIs',
5155
+ 'Get information about a feed generator, including policies and offered feed URIs.',
5102
5156
  output: {
5103
5157
  encoding: 'application/json',
5104
5158
  schema: {
@@ -5153,7 +5207,7 @@ export const schemaDict = {
5153
5207
  defs: {
5154
5208
  main: {
5155
5209
  type: 'record',
5156
- description: 'A declaration of the existence of a feed generator',
5210
+ description: 'A declaration of the existence of a feed generator.',
5157
5211
  key: 'any',
5158
5212
  record: {
5159
5213
  type: 'object',
@@ -5204,7 +5258,7 @@ export const schemaDict = {
5204
5258
  defs: {
5205
5259
  main: {
5206
5260
  type: 'query',
5207
- description: 'Retrieve a list of feeds created by a given actor',
5261
+ description: 'Get a list of feeds created by the actor.',
5208
5262
  parameters: {
5209
5263
  type: 'params',
5210
5264
  required: ['actor'],
@@ -5252,7 +5306,7 @@ export const schemaDict = {
5252
5306
  defs: {
5253
5307
  main: {
5254
5308
  type: 'query',
5255
- description: 'A view of the posts liked by an actor.',
5309
+ description: 'Get a list of posts liked by an actor.',
5256
5310
  parameters: {
5257
5311
  type: 'params',
5258
5312
  required: ['actor'],
@@ -5308,7 +5362,7 @@ export const schemaDict = {
5308
5362
  defs: {
5309
5363
  main: {
5310
5364
  type: 'query',
5311
- description: "A view of an actor's feed.",
5365
+ description: "Get a view of an actor's feed.",
5312
5366
  parameters: {
5313
5367
  type: 'params',
5314
5368
  required: ['actor'],
@@ -5374,7 +5428,7 @@ export const schemaDict = {
5374
5428
  main: {
5375
5429
  type: 'query',
5376
5430
  description:
5377
- "Compose and hydrate a feed from a user's selected feed generator",
5431
+ "Get a hydrated feed from an actor's selected feed generator.",
5378
5432
  parameters: {
5379
5433
  type: 'params',
5380
5434
  required: ['feed'],
@@ -5427,8 +5481,7 @@ export const schemaDict = {
5427
5481
  defs: {
5428
5482
  main: {
5429
5483
  type: 'query',
5430
- description:
5431
- 'Get information about a specific feed offered by a feed generator, such as its online status',
5484
+ description: 'Get information about a feed generator.',
5432
5485
  parameters: {
5433
5486
  type: 'params',
5434
5487
  required: ['feed'],
@@ -5467,7 +5520,7 @@ export const schemaDict = {
5467
5520
  defs: {
5468
5521
  main: {
5469
5522
  type: 'query',
5470
- description: 'Get information about a list of feed generators',
5523
+ description: 'Get information about a list of feed generators.',
5471
5524
  parameters: {
5472
5525
  type: 'params',
5473
5526
  required: ['feeds'],
@@ -5506,7 +5559,7 @@ export const schemaDict = {
5506
5559
  defs: {
5507
5560
  main: {
5508
5561
  type: 'query',
5509
- description: 'A skeleton of a feed provided by a feed generator',
5562
+ description: 'Get a skeleton of a feed provided by a feed generator.',
5510
5563
  parameters: {
5511
5564
  type: 'params',
5512
5565
  required: ['feed'],
@@ -5559,6 +5612,7 @@ export const schemaDict = {
5559
5612
  defs: {
5560
5613
  main: {
5561
5614
  type: 'query',
5615
+ description: 'Get the list of likes.',
5562
5616
  parameters: {
5563
5617
  type: 'params',
5564
5618
  required: ['uri'],
@@ -5636,7 +5690,7 @@ export const schemaDict = {
5636
5690
  defs: {
5637
5691
  main: {
5638
5692
  type: 'query',
5639
- description: 'A view of a recent posts from actors in a list',
5693
+ description: 'Get a view of a recent posts from actors in a list.',
5640
5694
  parameters: {
5641
5695
  type: 'params',
5642
5696
  required: ['list'],
@@ -5689,6 +5743,7 @@ export const schemaDict = {
5689
5743
  defs: {
5690
5744
  main: {
5691
5745
  type: 'query',
5746
+ description: 'Get posts in a thread.',
5692
5747
  parameters: {
5693
5748
  type: 'params',
5694
5749
  required: ['uri'],
@@ -5742,7 +5797,7 @@ export const schemaDict = {
5742
5797
  defs: {
5743
5798
  main: {
5744
5799
  type: 'query',
5745
- description: "A view of an actor's feed.",
5800
+ description: "Get a view of an actor's feed.",
5746
5801
  parameters: {
5747
5802
  type: 'params',
5748
5803
  required: ['uris'],
@@ -5782,6 +5837,7 @@ export const schemaDict = {
5782
5837
  defs: {
5783
5838
  main: {
5784
5839
  type: 'query',
5840
+ description: 'Get a list of reposts.',
5785
5841
  parameters: {
5786
5842
  type: 'params',
5787
5843
  required: ['uri'],
@@ -5884,7 +5940,7 @@ export const schemaDict = {
5884
5940
  defs: {
5885
5941
  main: {
5886
5942
  type: 'query',
5887
- description: "A view of the user's home timeline.",
5943
+ description: "Get a view of the actor's home timeline.",
5888
5944
  parameters: {
5889
5945
  type: 'params',
5890
5946
  properties: {
@@ -5930,6 +5986,7 @@ export const schemaDict = {
5930
5986
  defs: {
5931
5987
  main: {
5932
5988
  type: 'record',
5989
+ description: 'A declaration of a like.',
5933
5990
  key: 'tid',
5934
5991
  record: {
5935
5992
  type: 'object',
@@ -5954,6 +6011,7 @@ export const schemaDict = {
5954
6011
  defs: {
5955
6012
  main: {
5956
6013
  type: 'record',
6014
+ description: 'A declaration of a post.',
5957
6015
  key: 'tid',
5958
6016
  record: {
5959
6017
  type: 'object',
@@ -6076,6 +6134,7 @@ export const schemaDict = {
6076
6134
  id: 'app.bsky.feed.repost',
6077
6135
  defs: {
6078
6136
  main: {
6137
+ description: 'A declaration of a repost.',
6079
6138
  type: 'record',
6080
6139
  key: 'tid',
6081
6140
  record: {
@@ -6101,7 +6160,7 @@ export const schemaDict = {
6101
6160
  defs: {
6102
6161
  main: {
6103
6162
  type: 'query',
6104
- description: 'Find posts matching search criteria',
6163
+ description: 'Find posts matching search criteria.',
6105
6164
  parameters: {
6106
6165
  type: 'params',
6107
6166
  required: ['q'],
@@ -6109,7 +6168,7 @@ export const schemaDict = {
6109
6168
  q: {
6110
6169
  type: 'string',
6111
6170
  description:
6112
- 'search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended',
6171
+ 'Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended.',
6113
6172
  },
6114
6173
  limit: {
6115
6174
  type: 'integer',
@@ -6120,7 +6179,7 @@ export const schemaDict = {
6120
6179
  cursor: {
6121
6180
  type: 'string',
6122
6181
  description:
6123
- 'optional pagination mechanism; may not necessarily allow scrolling through entire result set',
6182
+ 'Optional pagination mechanism; may not necessarily allow scrolling through entire result set.',
6124
6183
  },
6125
6184
  },
6126
6185
  },
@@ -6136,7 +6195,7 @@ export const schemaDict = {
6136
6195
  hitsTotal: {
6137
6196
  type: 'integer',
6138
6197
  description:
6139
- 'count of search hits. optional, may be rounded/truncated, and may not be possible to paginate through all hits',
6198
+ 'Count of search hits. Optional, may be rounded/truncated, and may not be possible to paginate through all hits.',
6140
6199
  },
6141
6200
  posts: {
6142
6201
  type: 'array',
@@ -6221,7 +6280,7 @@ export const schemaDict = {
6221
6280
  defs: {
6222
6281
  main: {
6223
6282
  type: 'record',
6224
- description: 'A block.',
6283
+ description: 'A declaration of a block.',
6225
6284
  key: 'tid',
6226
6285
  record: {
6227
6286
  type: 'object',
@@ -6348,12 +6407,12 @@ export const schemaDict = {
6348
6407
  modlist: {
6349
6408
  type: 'token',
6350
6409
  description:
6351
- 'A list of actors to apply an aggregate moderation action (mute/block) on',
6410
+ 'A list of actors to apply an aggregate moderation action (mute/block) on.',
6352
6411
  },
6353
6412
  curatelist: {
6354
6413
  type: 'token',
6355
6414
  description:
6356
- 'A list of actors used for curation purposes such as list feeds or interaction gating',
6415
+ 'A list of actors used for curation purposes such as list feeds or interaction gating.',
6357
6416
  },
6358
6417
  listViewerState: {
6359
6418
  type: 'object',
@@ -6375,7 +6434,7 @@ export const schemaDict = {
6375
6434
  defs: {
6376
6435
  main: {
6377
6436
  type: 'record',
6378
- description: 'A social follow.',
6437
+ description: 'A declaration of a social follow.',
6379
6438
  key: 'tid',
6380
6439
  record: {
6381
6440
  type: 'object',
@@ -6400,7 +6459,7 @@ export const schemaDict = {
6400
6459
  defs: {
6401
6460
  main: {
6402
6461
  type: 'query',
6403
- description: "Who is the requester's account blocking?",
6462
+ description: 'Get a list of who the actor is blocking.',
6404
6463
  parameters: {
6405
6464
  type: 'params',
6406
6465
  properties: {
@@ -6443,7 +6502,7 @@ export const schemaDict = {
6443
6502
  defs: {
6444
6503
  main: {
6445
6504
  type: 'query',
6446
- description: 'Who is following an actor?',
6505
+ description: "Get a list of an actor's followers.",
6447
6506
  parameters: {
6448
6507
  type: 'params',
6449
6508
  required: ['actor'],
@@ -6495,7 +6554,7 @@ export const schemaDict = {
6495
6554
  defs: {
6496
6555
  main: {
6497
6556
  type: 'query',
6498
- description: 'Who is an actor following?',
6557
+ description: 'Get a list of who the actor follows.',
6499
6558
  parameters: {
6500
6559
  type: 'params',
6501
6560
  required: ['actor'],
@@ -6547,7 +6606,7 @@ export const schemaDict = {
6547
6606
  defs: {
6548
6607
  main: {
6549
6608
  type: 'query',
6550
- description: 'Fetch a list of actors',
6609
+ description: 'Get a list of actors.',
6551
6610
  parameters: {
6552
6611
  type: 'params',
6553
6612
  required: ['list'],
@@ -6599,7 +6658,7 @@ export const schemaDict = {
6599
6658
  defs: {
6600
6659
  main: {
6601
6660
  type: 'query',
6602
- description: "Which lists is the requester's account blocking?",
6661
+ description: 'Get lists that the actor is blocking.',
6603
6662
  parameters: {
6604
6663
  type: 'params',
6605
6664
  properties: {
@@ -6642,7 +6701,7 @@ export const schemaDict = {
6642
6701
  defs: {
6643
6702
  main: {
6644
6703
  type: 'query',
6645
- description: "Which lists is the requester's account muting?",
6704
+ description: 'Get lists that the actor is muting.',
6646
6705
  parameters: {
6647
6706
  type: 'params',
6648
6707
  properties: {
@@ -6685,7 +6744,7 @@ export const schemaDict = {
6685
6744
  defs: {
6686
6745
  main: {
6687
6746
  type: 'query',
6688
- description: 'Fetch a list of lists that belong to an actor',
6747
+ description: 'Get a list of lists that belong to an actor.',
6689
6748
  parameters: {
6690
6749
  type: 'params',
6691
6750
  required: ['actor'],
@@ -6733,7 +6792,7 @@ export const schemaDict = {
6733
6792
  defs: {
6734
6793
  main: {
6735
6794
  type: 'query',
6736
- description: 'Who does the viewer mute?',
6795
+ description: 'Get a list of who the actor mutes.',
6737
6796
  parameters: {
6738
6797
  type: 'params',
6739
6798
  properties: {
@@ -6888,7 +6947,7 @@ export const schemaDict = {
6888
6947
  defs: {
6889
6948
  main: {
6890
6949
  type: 'record',
6891
- description: 'An item under a declared list of actors',
6950
+ description: 'An item under a declared list of actors.',
6892
6951
  key: 'tid',
6893
6952
  record: {
6894
6953
  type: 'object',
@@ -6917,7 +6976,7 @@ export const schemaDict = {
6917
6976
  defs: {
6918
6977
  main: {
6919
6978
  type: 'procedure',
6920
- description: 'Mute an actor by did or handle.',
6979
+ description: 'Mute an actor by DID or handle.',
6921
6980
  input: {
6922
6981
  encoding: 'application/json',
6923
6982
  schema: {
@@ -6963,7 +7022,7 @@ export const schemaDict = {
6963
7022
  defs: {
6964
7023
  main: {
6965
7024
  type: 'procedure',
6966
- description: 'Unmute an actor by did or handle.',
7025
+ description: 'Unmute an actor by DID or handle.',
6967
7026
  input: {
6968
7027
  encoding: 'application/json',
6969
7028
  schema: {
@@ -7009,6 +7068,7 @@ export const schemaDict = {
7009
7068
  defs: {
7010
7069
  main: {
7011
7070
  type: 'query',
7071
+ description: 'Get the count of unread notifications.',
7012
7072
  parameters: {
7013
7073
  type: 'params',
7014
7074
  properties: {
@@ -7039,6 +7099,7 @@ export const schemaDict = {
7039
7099
  defs: {
7040
7100
  main: {
7041
7101
  type: 'query',
7102
+ description: 'Get a list of notifications.',
7042
7103
  parameters: {
7043
7104
  type: 'params',
7044
7105
  properties: {
@@ -7145,7 +7206,7 @@ export const schemaDict = {
7145
7206
  defs: {
7146
7207
  main: {
7147
7208
  type: 'procedure',
7148
- description: 'Register for push notifications with a service',
7209
+ description: 'Register for push notifications with a service.',
7149
7210
  input: {
7150
7211
  encoding: 'application/json',
7151
7212
  schema: {
@@ -7305,7 +7366,7 @@ export const schemaDict = {
7305
7366
  main: {
7306
7367
  type: 'query',
7307
7368
  description:
7308
- 'DEPRECATED: will be removed soon, please find a feed generator alternative',
7369
+ 'DEPRECATED: will be removed soon. Use a feed generator alternative.',
7309
7370
  parameters: {
7310
7371
  type: 'params',
7311
7372
  properties: {
@@ -7352,7 +7413,7 @@ export const schemaDict = {
7352
7413
  defs: {
7353
7414
  main: {
7354
7415
  type: 'query',
7355
- description: 'An unspecced view of globally popular feed generators',
7416
+ description: 'An unspecced view of globally popular feed generators.',
7356
7417
  parameters: {
7357
7418
  type: 'params',
7358
7419
  properties: {
@@ -7398,7 +7459,8 @@ export const schemaDict = {
7398
7459
  defs: {
7399
7460
  main: {
7400
7461
  type: 'query',
7401
- description: 'A skeleton of a timeline - UNSPECCED & WILL GO AWAY SOON',
7462
+ description:
7463
+ 'DEPRECATED: a skeleton of a timeline. Unspecced and will be unavailable soon.',
7402
7464
  parameters: {
7403
7465
  type: 'params',
7404
7466
  properties: {
@@ -7446,7 +7508,7 @@ export const schemaDict = {
7446
7508
  defs: {
7447
7509
  main: {
7448
7510
  type: 'query',
7449
- description: 'Backend Actors (profile) search, returning only skeleton',
7511
+ description: 'Backend Actors (profile) search, returns only skeleton.',
7450
7512
  parameters: {
7451
7513
  type: 'params',
7452
7514
  required: ['q'],
@@ -7454,11 +7516,11 @@ export const schemaDict = {
7454
7516
  q: {
7455
7517
  type: 'string',
7456
7518
  description:
7457
- 'search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. For typeahead search, only simple term match is supported, not full syntax',
7519
+ 'Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. For typeahead search, only simple term match is supported, not full syntax.',
7458
7520
  },
7459
7521
  typeahead: {
7460
7522
  type: 'boolean',
7461
- description: "if true, acts as fast/simple 'typeahead' query",
7523
+ description: "If true, acts as fast/simple 'typeahead' query.",
7462
7524
  },
7463
7525
  limit: {
7464
7526
  type: 'integer',
@@ -7469,7 +7531,7 @@ export const schemaDict = {
7469
7531
  cursor: {
7470
7532
  type: 'string',
7471
7533
  description:
7472
- 'optional pagination mechanism; may not necessarily allow scrolling through entire result set',
7534
+ 'Optional pagination mechanism; may not necessarily allow scrolling through entire result set.',
7473
7535
  },
7474
7536
  },
7475
7537
  },
@@ -7485,7 +7547,7 @@ export const schemaDict = {
7485
7547
  hitsTotal: {
7486
7548
  type: 'integer',
7487
7549
  description:
7488
- 'count of search hits. optional, may be rounded/truncated, and may not be possible to paginate through all hits',
7550
+ 'Count of search hits. Optional, may be rounded/truncated, and may not be possible to paginate through all hits.',
7489
7551
  },
7490
7552
  actors: {
7491
7553
  type: 'array',
@@ -7511,7 +7573,7 @@ export const schemaDict = {
7511
7573
  defs: {
7512
7574
  main: {
7513
7575
  type: 'query',
7514
- description: 'Backend Posts search, returning only skeleton',
7576
+ description: 'Backend Posts search, returns only skeleton',
7515
7577
  parameters: {
7516
7578
  type: 'params',
7517
7579
  required: ['q'],
@@ -7519,7 +7581,7 @@ export const schemaDict = {
7519
7581
  q: {
7520
7582
  type: 'string',
7521
7583
  description:
7522
- 'search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended',
7584
+ 'Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended.',
7523
7585
  },
7524
7586
  limit: {
7525
7587
  type: 'integer',
@@ -7530,7 +7592,7 @@ export const schemaDict = {
7530
7592
  cursor: {
7531
7593
  type: 'string',
7532
7594
  description:
7533
- 'optional pagination mechanism; may not necessarily allow scrolling through entire result set',
7595
+ 'Optional pagination mechanism; may not necessarily allow scrolling through entire result set.',
7534
7596
  },
7535
7597
  },
7536
7598
  },
@@ -7546,7 +7608,7 @@ export const schemaDict = {
7546
7608
  hitsTotal: {
7547
7609
  type: 'integer',
7548
7610
  description:
7549
- 'count of search hits. optional, may be rounded/truncated, and may not be possible to paginate through all hits',
7611
+ 'Count of search hits. Optional, may be rounded/truncated, and may not be possible to paginate through all hits.',
7550
7612
  },
7551
7613
  posts: {
7552
7614
  type: 'array',
@@ -7648,6 +7710,7 @@ export const ids = {
7648
7710
  ComAtprotoSyncNotifyOfUpdate: 'com.atproto.sync.notifyOfUpdate',
7649
7711
  ComAtprotoSyncRequestCrawl: 'com.atproto.sync.requestCrawl',
7650
7712
  ComAtprotoSyncSubscribeRepos: 'com.atproto.sync.subscribeRepos',
7713
+ ComAtprotoTempFetchLabels: 'com.atproto.temp.fetchLabels',
7651
7714
  AppBskyActorDefs: 'app.bsky.actor.defs',
7652
7715
  AppBskyActorGetPreferences: 'app.bsky.actor.getPreferences',
7653
7716
  AppBskyActorGetProfile: 'app.bsky.actor.getProfile',