@atproto/bsky 0.0.14 → 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.
- package/CHANGELOG.md +11 -0
- package/dist/api/app/bsky/feed/searchPosts.d.ts +3 -0
- package/dist/api/com/atproto/temp/fetchLabels.d.ts +3 -0
- package/dist/config.d.ts +2 -2
- package/dist/context.d.ts +1 -1
- package/dist/index.js +716 -443
- package/dist/index.js.map +3 -3
- package/dist/lexicon/index.d.ts +7 -0
- package/dist/lexicon/lexicons.d.ts +60 -0
- package/dist/lexicon/types/com/atproto/admin/defs.d.ts +2 -0
- package/dist/lexicon/types/com/atproto/temp/fetchLabels.d.ts +33 -0
- package/package.json +8 -9
- package/src/api/app/bsky/actor/getSuggestions.ts +45 -21
- package/src/api/app/bsky/feed/getPostThread.ts +16 -4
- package/src/api/app/bsky/feed/searchPosts.ts +127 -0
- package/src/api/com/atproto/admin/reverseModerationAction.ts +3 -3
- package/src/api/com/atproto/admin/takeModerationAction.ts +2 -2
- package/src/api/com/atproto/admin/util.ts +3 -1
- package/src/api/com/atproto/temp/fetchLabels.ts +30 -0
- package/src/api/index.ts +4 -0
- package/src/config.ts +6 -6
- package/src/context.ts +11 -9
- package/src/db/periodic-moderation-action-reversal.ts +1 -9
- package/src/lexicon/index.ts +22 -0
- package/src/lexicon/lexicons.ts +189 -129
- package/src/lexicon/types/app/bsky/actor/defs.ts +2 -2
- package/src/lexicon/types/app/bsky/actor/searchActors.ts +2 -2
- package/src/lexicon/types/app/bsky/actor/searchActorsTypeahead.ts +2 -2
- package/src/lexicon/types/app/bsky/feed/searchPosts.ts +3 -3
- package/src/lexicon/types/app/bsky/graph/defs.ts +2 -2
- package/src/lexicon/types/app/bsky/unspecced/searchActorsSkeleton.ts +4 -4
- package/src/lexicon/types/app/bsky/unspecced/searchPostsSkeleton.ts +3 -3
- package/src/lexicon/types/com/atproto/admin/defs.ts +5 -3
- package/src/lexicon/types/com/atproto/admin/disableAccountInvites.ts +1 -1
- package/src/lexicon/types/com/atproto/admin/enableAccountInvites.ts +1 -1
- package/src/lexicon/types/com/atproto/admin/getModerationReports.ts +3 -3
- package/src/lexicon/types/com/atproto/admin/takeModerationAction.ts +1 -1
- package/src/lexicon/types/com/atproto/label/defs.ts +9 -9
- package/src/lexicon/types/com/atproto/label/queryLabels.ts +2 -2
- package/src/lexicon/types/com/atproto/repo/applyWrites.ts +1 -1
- package/src/lexicon/types/com/atproto/repo/createRecord.ts +2 -2
- package/src/lexicon/types/com/atproto/repo/deleteRecord.ts +2 -2
- package/src/lexicon/types/com/atproto/repo/listRecords.ts +1 -1
- package/src/lexicon/types/com/atproto/repo/putRecord.ts +3 -3
- package/src/lexicon/types/com/atproto/sync/listBlobs.ts +1 -1
- package/src/lexicon/types/com/atproto/sync/subscribeRepos.ts +4 -4
- package/src/lexicon/types/com/atproto/temp/fetchLabels.ts +47 -0
- package/tests/admin/get-repo.test.ts +33 -0
- package/tests/views/suggestions.test.ts +15 -7
package/src/lexicon/lexicons.ts
CHANGED
|
@@ -43,7 +43,7 @@ export const schemaDict = {
|
|
|
43
43
|
durationInHours: {
|
|
44
44
|
type: 'integer',
|
|
45
45
|
description:
|
|
46
|
-
'Indicates how long this action
|
|
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
|
|
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
|
|
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:
|
|
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: '
|
|
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: '
|
|
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: '
|
|
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: '
|
|
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: '
|
|
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: '
|
|
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
|
|
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: '
|
|
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: '
|
|
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
|
-
'
|
|
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
|
|
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
|
|
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
|
|
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:
|
|
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
|
|
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
|
-
"
|
|
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
|
-
'
|
|
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
|
-
'
|
|
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: '
|
|
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
|
|
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
|
-
'
|
|
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:
|
|
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: '
|
|
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: '
|
|
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
|
|
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
|
|
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
|
|
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: '
|
|
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: '
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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:
|
|
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: {
|
|
@@ -3022,7 +3030,7 @@ export const schemaDict = {
|
|
|
3022
3030
|
defs: {
|
|
3023
3031
|
main: {
|
|
3024
3032
|
type: 'query',
|
|
3025
|
-
description: 'List all
|
|
3033
|
+
description: 'List all App Passwords.',
|
|
3026
3034
|
output: {
|
|
3027
3035
|
encoding: 'application/json',
|
|
3028
3036
|
schema: {
|
|
@@ -3118,7 +3126,7 @@ export const schemaDict = {
|
|
|
3118
3126
|
main: {
|
|
3119
3127
|
type: 'procedure',
|
|
3120
3128
|
description:
|
|
3121
|
-
'Request an email with a code to confirm ownership of email',
|
|
3129
|
+
'Request an email with a code to confirm ownership of email.',
|
|
3122
3130
|
},
|
|
3123
3131
|
},
|
|
3124
3132
|
},
|
|
@@ -3240,7 +3248,7 @@ export const schemaDict = {
|
|
|
3240
3248
|
defs: {
|
|
3241
3249
|
main: {
|
|
3242
3250
|
type: 'procedure',
|
|
3243
|
-
description: 'Revoke an
|
|
3251
|
+
description: 'Revoke an App Password by name.',
|
|
3244
3252
|
input: {
|
|
3245
3253
|
encoding: 'application/json',
|
|
3246
3254
|
schema: {
|
|
@@ -3329,7 +3337,7 @@ export const schemaDict = {
|
|
|
3329
3337
|
defs: {
|
|
3330
3338
|
main: {
|
|
3331
3339
|
type: 'query',
|
|
3332
|
-
description: '
|
|
3340
|
+
description: 'Get blocks from a given repo.',
|
|
3333
3341
|
parameters: {
|
|
3334
3342
|
type: 'params',
|
|
3335
3343
|
required: ['did', 'cids'],
|
|
@@ -3424,7 +3432,7 @@ export const schemaDict = {
|
|
|
3424
3432
|
defs: {
|
|
3425
3433
|
main: {
|
|
3426
3434
|
type: 'query',
|
|
3427
|
-
description: '
|
|
3435
|
+
description: 'Get the current commit CID & revision of the repo.',
|
|
3428
3436
|
parameters: {
|
|
3429
3437
|
type: 'params',
|
|
3430
3438
|
required: ['did'],
|
|
@@ -3467,7 +3475,7 @@ export const schemaDict = {
|
|
|
3467
3475
|
main: {
|
|
3468
3476
|
type: 'query',
|
|
3469
3477
|
description:
|
|
3470
|
-
'
|
|
3478
|
+
'Get blocks needed for existence or non-existence of record.',
|
|
3471
3479
|
parameters: {
|
|
3472
3480
|
type: 'params',
|
|
3473
3481
|
required: ['did', 'collection', 'rkey'],
|
|
@@ -3504,7 +3512,7 @@ export const schemaDict = {
|
|
|
3504
3512
|
main: {
|
|
3505
3513
|
type: 'query',
|
|
3506
3514
|
description:
|
|
3507
|
-
"Gets the
|
|
3515
|
+
"Gets the DID's repo, optionally catching up from a specific revision.",
|
|
3508
3516
|
parameters: {
|
|
3509
3517
|
type: 'params',
|
|
3510
3518
|
required: ['did'],
|
|
@@ -3532,7 +3540,7 @@ export const schemaDict = {
|
|
|
3532
3540
|
defs: {
|
|
3533
3541
|
main: {
|
|
3534
3542
|
type: 'query',
|
|
3535
|
-
description: 'List blob
|
|
3543
|
+
description: 'List blob CIDs since some revision.',
|
|
3536
3544
|
parameters: {
|
|
3537
3545
|
type: 'params',
|
|
3538
3546
|
required: ['did'],
|
|
@@ -3544,7 +3552,7 @@ export const schemaDict = {
|
|
|
3544
3552
|
},
|
|
3545
3553
|
since: {
|
|
3546
3554
|
type: 'string',
|
|
3547
|
-
description: 'Optional revision of the repo to list blobs since',
|
|
3555
|
+
description: 'Optional revision of the repo to list blobs since.',
|
|
3548
3556
|
},
|
|
3549
3557
|
limit: {
|
|
3550
3558
|
type: 'integer',
|
|
@@ -3585,7 +3593,7 @@ export const schemaDict = {
|
|
|
3585
3593
|
defs: {
|
|
3586
3594
|
main: {
|
|
3587
3595
|
type: 'query',
|
|
3588
|
-
description: 'List
|
|
3596
|
+
description: 'List DIDs and root CIDs of hosted repos.',
|
|
3589
3597
|
parameters: {
|
|
3590
3598
|
type: 'params',
|
|
3591
3599
|
properties: {
|
|
@@ -3646,7 +3654,7 @@ export const schemaDict = {
|
|
|
3646
3654
|
main: {
|
|
3647
3655
|
type: 'procedure',
|
|
3648
3656
|
description:
|
|
3649
|
-
'Notify a crawling service of a recent update
|
|
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.',
|
|
3650
3658
|
input: {
|
|
3651
3659
|
encoding: 'application/json',
|
|
3652
3660
|
schema: {
|
|
@@ -3694,7 +3702,7 @@ export const schemaDict = {
|
|
|
3694
3702
|
defs: {
|
|
3695
3703
|
main: {
|
|
3696
3704
|
type: 'subscription',
|
|
3697
|
-
description: 'Subscribe to repo updates',
|
|
3705
|
+
description: 'Subscribe to repo updates.',
|
|
3698
3706
|
parameters: {
|
|
3699
3707
|
type: 'params',
|
|
3700
3708
|
properties: {
|
|
@@ -3763,15 +3771,15 @@ export const schemaDict = {
|
|
|
3763
3771
|
},
|
|
3764
3772
|
rev: {
|
|
3765
3773
|
type: 'string',
|
|
3766
|
-
description: 'The rev of the emitted commit',
|
|
3774
|
+
description: 'The rev of the emitted commit.',
|
|
3767
3775
|
},
|
|
3768
3776
|
since: {
|
|
3769
3777
|
type: 'string',
|
|
3770
|
-
description: 'The rev of the last emitted commit from this repo',
|
|
3778
|
+
description: 'The rev of the last emitted commit from this repo.',
|
|
3771
3779
|
},
|
|
3772
3780
|
blocks: {
|
|
3773
3781
|
type: 'bytes',
|
|
3774
|
-
description: 'CAR file containing relevant blocks',
|
|
3782
|
+
description: 'CAR file containing relevant blocks.',
|
|
3775
3783
|
maxLength: 1000000,
|
|
3776
3784
|
},
|
|
3777
3785
|
ops: {
|
|
@@ -3869,7 +3877,7 @@ export const schemaDict = {
|
|
|
3869
3877
|
repoOp: {
|
|
3870
3878
|
type: 'object',
|
|
3871
3879
|
description:
|
|
3872
|
-
"A repo operation, ie a write of a single record. For creates and updates,
|
|
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.",
|
|
3873
3881
|
required: ['action', 'path', 'cid'],
|
|
3874
3882
|
nullable: ['cid'],
|
|
3875
3883
|
properties: {
|
|
@@ -3887,6 +3895,47 @@ export const schemaDict = {
|
|
|
3887
3895
|
},
|
|
3888
3896
|
},
|
|
3889
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
|
+
},
|
|
3890
3939
|
AppBskyActorDefs: {
|
|
3891
3940
|
lexicon: 1,
|
|
3892
3941
|
id: 'app.bsky.actor.defs',
|
|
@@ -4115,7 +4164,7 @@ export const schemaDict = {
|
|
|
4115
4164
|
birthDate: {
|
|
4116
4165
|
type: 'string',
|
|
4117
4166
|
format: 'datetime',
|
|
4118
|
-
description: 'The birth date of
|
|
4167
|
+
description: 'The birth date of account owner.',
|
|
4119
4168
|
},
|
|
4120
4169
|
},
|
|
4121
4170
|
},
|
|
@@ -4157,7 +4206,7 @@ export const schemaDict = {
|
|
|
4157
4206
|
properties: {
|
|
4158
4207
|
sort: {
|
|
4159
4208
|
type: 'string',
|
|
4160
|
-
description: 'Sorting mode.',
|
|
4209
|
+
description: 'Sorting mode for threads.',
|
|
4161
4210
|
knownValues: ['oldest', 'newest', 'most-likes', 'random'],
|
|
4162
4211
|
},
|
|
4163
4212
|
prioritizeFollowedUsers: {
|
|
@@ -4201,6 +4250,7 @@ export const schemaDict = {
|
|
|
4201
4250
|
defs: {
|
|
4202
4251
|
main: {
|
|
4203
4252
|
type: 'query',
|
|
4253
|
+
description: 'Get detailed profile view of an actor.',
|
|
4204
4254
|
parameters: {
|
|
4205
4255
|
type: 'params',
|
|
4206
4256
|
required: ['actor'],
|
|
@@ -4227,6 +4277,7 @@ export const schemaDict = {
|
|
|
4227
4277
|
defs: {
|
|
4228
4278
|
main: {
|
|
4229
4279
|
type: 'query',
|
|
4280
|
+
description: 'Get detailed profile views of multiple actors.',
|
|
4230
4281
|
parameters: {
|
|
4231
4282
|
type: 'params',
|
|
4232
4283
|
required: ['actors'],
|
|
@@ -4266,8 +4317,7 @@ export const schemaDict = {
|
|
|
4266
4317
|
defs: {
|
|
4267
4318
|
main: {
|
|
4268
4319
|
type: 'query',
|
|
4269
|
-
description:
|
|
4270
|
-
'Get a list of actors suggested for following. Used in discovery UIs.',
|
|
4320
|
+
description: 'Get a list of suggested actors, used for discovery.',
|
|
4271
4321
|
parameters: {
|
|
4272
4322
|
type: 'params',
|
|
4273
4323
|
properties: {
|
|
@@ -4310,6 +4360,7 @@ export const schemaDict = {
|
|
|
4310
4360
|
defs: {
|
|
4311
4361
|
main: {
|
|
4312
4362
|
type: 'record',
|
|
4363
|
+
description: 'A declaration of a profile.',
|
|
4313
4364
|
key: 'literal:self',
|
|
4314
4365
|
record: {
|
|
4315
4366
|
type: 'object',
|
|
@@ -4349,7 +4400,7 @@ export const schemaDict = {
|
|
|
4349
4400
|
defs: {
|
|
4350
4401
|
main: {
|
|
4351
4402
|
type: 'procedure',
|
|
4352
|
-
description: '
|
|
4403
|
+
description: 'Set the private preferences attached to the account.',
|
|
4353
4404
|
input: {
|
|
4354
4405
|
encoding: 'application/json',
|
|
4355
4406
|
schema: {
|
|
@@ -4378,12 +4429,12 @@ export const schemaDict = {
|
|
|
4378
4429
|
properties: {
|
|
4379
4430
|
term: {
|
|
4380
4431
|
type: 'string',
|
|
4381
|
-
description: "DEPRECATED: use 'q' instead",
|
|
4432
|
+
description: "DEPRECATED: use 'q' instead.",
|
|
4382
4433
|
},
|
|
4383
4434
|
q: {
|
|
4384
4435
|
type: 'string',
|
|
4385
4436
|
description:
|
|
4386
|
-
'
|
|
4437
|
+
'Search query string. Syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended.',
|
|
4387
4438
|
},
|
|
4388
4439
|
limit: {
|
|
4389
4440
|
type: 'integer',
|
|
@@ -4424,17 +4475,17 @@ export const schemaDict = {
|
|
|
4424
4475
|
defs: {
|
|
4425
4476
|
main: {
|
|
4426
4477
|
type: 'query',
|
|
4427
|
-
description: 'Find actor suggestions for a search term.',
|
|
4478
|
+
description: 'Find actor suggestions for a prefix search term.',
|
|
4428
4479
|
parameters: {
|
|
4429
4480
|
type: 'params',
|
|
4430
4481
|
properties: {
|
|
4431
4482
|
term: {
|
|
4432
4483
|
type: 'string',
|
|
4433
|
-
description: "DEPRECATED: use 'q' instead",
|
|
4484
|
+
description: "DEPRECATED: use 'q' instead.",
|
|
4434
4485
|
},
|
|
4435
4486
|
q: {
|
|
4436
4487
|
type: 'string',
|
|
4437
|
-
description: '
|
|
4488
|
+
description: 'Search query prefix; not a full query string.',
|
|
4438
4489
|
},
|
|
4439
4490
|
limit: {
|
|
4440
4491
|
type: 'integer',
|
|
@@ -4467,7 +4518,7 @@ export const schemaDict = {
|
|
|
4467
4518
|
lexicon: 1,
|
|
4468
4519
|
id: 'app.bsky.embed.external',
|
|
4469
4520
|
description:
|
|
4470
|
-
'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.',
|
|
4471
4522
|
defs: {
|
|
4472
4523
|
main: {
|
|
4473
4524
|
type: 'object',
|
|
@@ -4534,7 +4585,7 @@ export const schemaDict = {
|
|
|
4534
4585
|
AppBskyEmbedImages: {
|
|
4535
4586
|
lexicon: 1,
|
|
4536
4587
|
id: 'app.bsky.embed.images',
|
|
4537
|
-
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.',
|
|
4538
4589
|
defs: {
|
|
4539
4590
|
main: {
|
|
4540
4591
|
type: 'object',
|
|
@@ -4623,7 +4674,7 @@ export const schemaDict = {
|
|
|
4623
4674
|
lexicon: 1,
|
|
4624
4675
|
id: 'app.bsky.embed.record',
|
|
4625
4676
|
description:
|
|
4626
|
-
'A representation of a record embedded in another form of content',
|
|
4677
|
+
'A representation of a record embedded in another form of content.',
|
|
4627
4678
|
defs: {
|
|
4628
4679
|
main: {
|
|
4629
4680
|
type: 'object',
|
|
@@ -4733,7 +4784,7 @@ export const schemaDict = {
|
|
|
4733
4784
|
lexicon: 1,
|
|
4734
4785
|
id: 'app.bsky.embed.recordWithMedia',
|
|
4735
4786
|
description:
|
|
4736
|
-
'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.',
|
|
4737
4788
|
defs: {
|
|
4738
4789
|
main: {
|
|
4739
4790
|
type: 'object',
|
|
@@ -5101,7 +5152,7 @@ export const schemaDict = {
|
|
|
5101
5152
|
main: {
|
|
5102
5153
|
type: 'query',
|
|
5103
5154
|
description:
|
|
5104
|
-
'
|
|
5155
|
+
'Get information about a feed generator, including policies and offered feed URIs.',
|
|
5105
5156
|
output: {
|
|
5106
5157
|
encoding: 'application/json',
|
|
5107
5158
|
schema: {
|
|
@@ -5156,7 +5207,7 @@ export const schemaDict = {
|
|
|
5156
5207
|
defs: {
|
|
5157
5208
|
main: {
|
|
5158
5209
|
type: 'record',
|
|
5159
|
-
description: 'A declaration of the existence of a feed generator',
|
|
5210
|
+
description: 'A declaration of the existence of a feed generator.',
|
|
5160
5211
|
key: 'any',
|
|
5161
5212
|
record: {
|
|
5162
5213
|
type: 'object',
|
|
@@ -5207,7 +5258,7 @@ export const schemaDict = {
|
|
|
5207
5258
|
defs: {
|
|
5208
5259
|
main: {
|
|
5209
5260
|
type: 'query',
|
|
5210
|
-
description: '
|
|
5261
|
+
description: 'Get a list of feeds created by the actor.',
|
|
5211
5262
|
parameters: {
|
|
5212
5263
|
type: 'params',
|
|
5213
5264
|
required: ['actor'],
|
|
@@ -5255,7 +5306,7 @@ export const schemaDict = {
|
|
|
5255
5306
|
defs: {
|
|
5256
5307
|
main: {
|
|
5257
5308
|
type: 'query',
|
|
5258
|
-
description: '
|
|
5309
|
+
description: 'Get a list of posts liked by an actor.',
|
|
5259
5310
|
parameters: {
|
|
5260
5311
|
type: 'params',
|
|
5261
5312
|
required: ['actor'],
|
|
@@ -5311,7 +5362,7 @@ export const schemaDict = {
|
|
|
5311
5362
|
defs: {
|
|
5312
5363
|
main: {
|
|
5313
5364
|
type: 'query',
|
|
5314
|
-
description: "
|
|
5365
|
+
description: "Get a view of an actor's feed.",
|
|
5315
5366
|
parameters: {
|
|
5316
5367
|
type: 'params',
|
|
5317
5368
|
required: ['actor'],
|
|
@@ -5377,7 +5428,7 @@ export const schemaDict = {
|
|
|
5377
5428
|
main: {
|
|
5378
5429
|
type: 'query',
|
|
5379
5430
|
description:
|
|
5380
|
-
"
|
|
5431
|
+
"Get a hydrated feed from an actor's selected feed generator.",
|
|
5381
5432
|
parameters: {
|
|
5382
5433
|
type: 'params',
|
|
5383
5434
|
required: ['feed'],
|
|
@@ -5430,8 +5481,7 @@ export const schemaDict = {
|
|
|
5430
5481
|
defs: {
|
|
5431
5482
|
main: {
|
|
5432
5483
|
type: 'query',
|
|
5433
|
-
description:
|
|
5434
|
-
'Get information about a specific feed offered by a feed generator, such as its online status',
|
|
5484
|
+
description: 'Get information about a feed generator.',
|
|
5435
5485
|
parameters: {
|
|
5436
5486
|
type: 'params',
|
|
5437
5487
|
required: ['feed'],
|
|
@@ -5470,7 +5520,7 @@ export const schemaDict = {
|
|
|
5470
5520
|
defs: {
|
|
5471
5521
|
main: {
|
|
5472
5522
|
type: 'query',
|
|
5473
|
-
description: 'Get information about a list of feed generators',
|
|
5523
|
+
description: 'Get information about a list of feed generators.',
|
|
5474
5524
|
parameters: {
|
|
5475
5525
|
type: 'params',
|
|
5476
5526
|
required: ['feeds'],
|
|
@@ -5509,7 +5559,7 @@ export const schemaDict = {
|
|
|
5509
5559
|
defs: {
|
|
5510
5560
|
main: {
|
|
5511
5561
|
type: 'query',
|
|
5512
|
-
description: '
|
|
5562
|
+
description: 'Get a skeleton of a feed provided by a feed generator.',
|
|
5513
5563
|
parameters: {
|
|
5514
5564
|
type: 'params',
|
|
5515
5565
|
required: ['feed'],
|
|
@@ -5562,6 +5612,7 @@ export const schemaDict = {
|
|
|
5562
5612
|
defs: {
|
|
5563
5613
|
main: {
|
|
5564
5614
|
type: 'query',
|
|
5615
|
+
description: 'Get the list of likes.',
|
|
5565
5616
|
parameters: {
|
|
5566
5617
|
type: 'params',
|
|
5567
5618
|
required: ['uri'],
|
|
@@ -5639,7 +5690,7 @@ export const schemaDict = {
|
|
|
5639
5690
|
defs: {
|
|
5640
5691
|
main: {
|
|
5641
5692
|
type: 'query',
|
|
5642
|
-
description: '
|
|
5693
|
+
description: 'Get a view of a recent posts from actors in a list.',
|
|
5643
5694
|
parameters: {
|
|
5644
5695
|
type: 'params',
|
|
5645
5696
|
required: ['list'],
|
|
@@ -5692,6 +5743,7 @@ export const schemaDict = {
|
|
|
5692
5743
|
defs: {
|
|
5693
5744
|
main: {
|
|
5694
5745
|
type: 'query',
|
|
5746
|
+
description: 'Get posts in a thread.',
|
|
5695
5747
|
parameters: {
|
|
5696
5748
|
type: 'params',
|
|
5697
5749
|
required: ['uri'],
|
|
@@ -5745,7 +5797,7 @@ export const schemaDict = {
|
|
|
5745
5797
|
defs: {
|
|
5746
5798
|
main: {
|
|
5747
5799
|
type: 'query',
|
|
5748
|
-
description: "
|
|
5800
|
+
description: "Get a view of an actor's feed.",
|
|
5749
5801
|
parameters: {
|
|
5750
5802
|
type: 'params',
|
|
5751
5803
|
required: ['uris'],
|
|
@@ -5785,6 +5837,7 @@ export const schemaDict = {
|
|
|
5785
5837
|
defs: {
|
|
5786
5838
|
main: {
|
|
5787
5839
|
type: 'query',
|
|
5840
|
+
description: 'Get a list of reposts.',
|
|
5788
5841
|
parameters: {
|
|
5789
5842
|
type: 'params',
|
|
5790
5843
|
required: ['uri'],
|
|
@@ -5887,7 +5940,7 @@ export const schemaDict = {
|
|
|
5887
5940
|
defs: {
|
|
5888
5941
|
main: {
|
|
5889
5942
|
type: 'query',
|
|
5890
|
-
description: "
|
|
5943
|
+
description: "Get a view of the actor's home timeline.",
|
|
5891
5944
|
parameters: {
|
|
5892
5945
|
type: 'params',
|
|
5893
5946
|
properties: {
|
|
@@ -5933,6 +5986,7 @@ export const schemaDict = {
|
|
|
5933
5986
|
defs: {
|
|
5934
5987
|
main: {
|
|
5935
5988
|
type: 'record',
|
|
5989
|
+
description: 'A declaration of a like.',
|
|
5936
5990
|
key: 'tid',
|
|
5937
5991
|
record: {
|
|
5938
5992
|
type: 'object',
|
|
@@ -5957,6 +6011,7 @@ export const schemaDict = {
|
|
|
5957
6011
|
defs: {
|
|
5958
6012
|
main: {
|
|
5959
6013
|
type: 'record',
|
|
6014
|
+
description: 'A declaration of a post.',
|
|
5960
6015
|
key: 'tid',
|
|
5961
6016
|
record: {
|
|
5962
6017
|
type: 'object',
|
|
@@ -6079,6 +6134,7 @@ export const schemaDict = {
|
|
|
6079
6134
|
id: 'app.bsky.feed.repost',
|
|
6080
6135
|
defs: {
|
|
6081
6136
|
main: {
|
|
6137
|
+
description: 'A declaration of a repost.',
|
|
6082
6138
|
type: 'record',
|
|
6083
6139
|
key: 'tid',
|
|
6084
6140
|
record: {
|
|
@@ -6104,7 +6160,7 @@ export const schemaDict = {
|
|
|
6104
6160
|
defs: {
|
|
6105
6161
|
main: {
|
|
6106
6162
|
type: 'query',
|
|
6107
|
-
description: 'Find posts matching search criteria',
|
|
6163
|
+
description: 'Find posts matching search criteria.',
|
|
6108
6164
|
parameters: {
|
|
6109
6165
|
type: 'params',
|
|
6110
6166
|
required: ['q'],
|
|
@@ -6112,7 +6168,7 @@ export const schemaDict = {
|
|
|
6112
6168
|
q: {
|
|
6113
6169
|
type: 'string',
|
|
6114
6170
|
description:
|
|
6115
|
-
'
|
|
6171
|
+
'Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended.',
|
|
6116
6172
|
},
|
|
6117
6173
|
limit: {
|
|
6118
6174
|
type: 'integer',
|
|
@@ -6123,7 +6179,7 @@ export const schemaDict = {
|
|
|
6123
6179
|
cursor: {
|
|
6124
6180
|
type: 'string',
|
|
6125
6181
|
description:
|
|
6126
|
-
'
|
|
6182
|
+
'Optional pagination mechanism; may not necessarily allow scrolling through entire result set.',
|
|
6127
6183
|
},
|
|
6128
6184
|
},
|
|
6129
6185
|
},
|
|
@@ -6139,7 +6195,7 @@ export const schemaDict = {
|
|
|
6139
6195
|
hitsTotal: {
|
|
6140
6196
|
type: 'integer',
|
|
6141
6197
|
description:
|
|
6142
|
-
'
|
|
6198
|
+
'Count of search hits. Optional, may be rounded/truncated, and may not be possible to paginate through all hits.',
|
|
6143
6199
|
},
|
|
6144
6200
|
posts: {
|
|
6145
6201
|
type: 'array',
|
|
@@ -6224,7 +6280,7 @@ export const schemaDict = {
|
|
|
6224
6280
|
defs: {
|
|
6225
6281
|
main: {
|
|
6226
6282
|
type: 'record',
|
|
6227
|
-
description: 'A block.',
|
|
6283
|
+
description: 'A declaration of a block.',
|
|
6228
6284
|
key: 'tid',
|
|
6229
6285
|
record: {
|
|
6230
6286
|
type: 'object',
|
|
@@ -6351,12 +6407,12 @@ export const schemaDict = {
|
|
|
6351
6407
|
modlist: {
|
|
6352
6408
|
type: 'token',
|
|
6353
6409
|
description:
|
|
6354
|
-
'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.',
|
|
6355
6411
|
},
|
|
6356
6412
|
curatelist: {
|
|
6357
6413
|
type: 'token',
|
|
6358
6414
|
description:
|
|
6359
|
-
'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.',
|
|
6360
6416
|
},
|
|
6361
6417
|
listViewerState: {
|
|
6362
6418
|
type: 'object',
|
|
@@ -6378,7 +6434,7 @@ export const schemaDict = {
|
|
|
6378
6434
|
defs: {
|
|
6379
6435
|
main: {
|
|
6380
6436
|
type: 'record',
|
|
6381
|
-
description: 'A social follow.',
|
|
6437
|
+
description: 'A declaration of a social follow.',
|
|
6382
6438
|
key: 'tid',
|
|
6383
6439
|
record: {
|
|
6384
6440
|
type: 'object',
|
|
@@ -6403,7 +6459,7 @@ export const schemaDict = {
|
|
|
6403
6459
|
defs: {
|
|
6404
6460
|
main: {
|
|
6405
6461
|
type: 'query',
|
|
6406
|
-
description:
|
|
6462
|
+
description: 'Get a list of who the actor is blocking.',
|
|
6407
6463
|
parameters: {
|
|
6408
6464
|
type: 'params',
|
|
6409
6465
|
properties: {
|
|
@@ -6446,7 +6502,7 @@ export const schemaDict = {
|
|
|
6446
6502
|
defs: {
|
|
6447
6503
|
main: {
|
|
6448
6504
|
type: 'query',
|
|
6449
|
-
description:
|
|
6505
|
+
description: "Get a list of an actor's followers.",
|
|
6450
6506
|
parameters: {
|
|
6451
6507
|
type: 'params',
|
|
6452
6508
|
required: ['actor'],
|
|
@@ -6498,7 +6554,7 @@ export const schemaDict = {
|
|
|
6498
6554
|
defs: {
|
|
6499
6555
|
main: {
|
|
6500
6556
|
type: 'query',
|
|
6501
|
-
description: '
|
|
6557
|
+
description: 'Get a list of who the actor follows.',
|
|
6502
6558
|
parameters: {
|
|
6503
6559
|
type: 'params',
|
|
6504
6560
|
required: ['actor'],
|
|
@@ -6550,7 +6606,7 @@ export const schemaDict = {
|
|
|
6550
6606
|
defs: {
|
|
6551
6607
|
main: {
|
|
6552
6608
|
type: 'query',
|
|
6553
|
-
description: '
|
|
6609
|
+
description: 'Get a list of actors.',
|
|
6554
6610
|
parameters: {
|
|
6555
6611
|
type: 'params',
|
|
6556
6612
|
required: ['list'],
|
|
@@ -6602,7 +6658,7 @@ export const schemaDict = {
|
|
|
6602
6658
|
defs: {
|
|
6603
6659
|
main: {
|
|
6604
6660
|
type: 'query',
|
|
6605
|
-
description:
|
|
6661
|
+
description: 'Get lists that the actor is blocking.',
|
|
6606
6662
|
parameters: {
|
|
6607
6663
|
type: 'params',
|
|
6608
6664
|
properties: {
|
|
@@ -6645,7 +6701,7 @@ export const schemaDict = {
|
|
|
6645
6701
|
defs: {
|
|
6646
6702
|
main: {
|
|
6647
6703
|
type: 'query',
|
|
6648
|
-
description:
|
|
6704
|
+
description: 'Get lists that the actor is muting.',
|
|
6649
6705
|
parameters: {
|
|
6650
6706
|
type: 'params',
|
|
6651
6707
|
properties: {
|
|
@@ -6688,7 +6744,7 @@ export const schemaDict = {
|
|
|
6688
6744
|
defs: {
|
|
6689
6745
|
main: {
|
|
6690
6746
|
type: 'query',
|
|
6691
|
-
description: '
|
|
6747
|
+
description: 'Get a list of lists that belong to an actor.',
|
|
6692
6748
|
parameters: {
|
|
6693
6749
|
type: 'params',
|
|
6694
6750
|
required: ['actor'],
|
|
@@ -6736,7 +6792,7 @@ export const schemaDict = {
|
|
|
6736
6792
|
defs: {
|
|
6737
6793
|
main: {
|
|
6738
6794
|
type: 'query',
|
|
6739
|
-
description: '
|
|
6795
|
+
description: 'Get a list of who the actor mutes.',
|
|
6740
6796
|
parameters: {
|
|
6741
6797
|
type: 'params',
|
|
6742
6798
|
properties: {
|
|
@@ -6891,7 +6947,7 @@ export const schemaDict = {
|
|
|
6891
6947
|
defs: {
|
|
6892
6948
|
main: {
|
|
6893
6949
|
type: 'record',
|
|
6894
|
-
description: 'An item under a declared list of actors',
|
|
6950
|
+
description: 'An item under a declared list of actors.',
|
|
6895
6951
|
key: 'tid',
|
|
6896
6952
|
record: {
|
|
6897
6953
|
type: 'object',
|
|
@@ -6920,7 +6976,7 @@ export const schemaDict = {
|
|
|
6920
6976
|
defs: {
|
|
6921
6977
|
main: {
|
|
6922
6978
|
type: 'procedure',
|
|
6923
|
-
description: 'Mute an actor by
|
|
6979
|
+
description: 'Mute an actor by DID or handle.',
|
|
6924
6980
|
input: {
|
|
6925
6981
|
encoding: 'application/json',
|
|
6926
6982
|
schema: {
|
|
@@ -6966,7 +7022,7 @@ export const schemaDict = {
|
|
|
6966
7022
|
defs: {
|
|
6967
7023
|
main: {
|
|
6968
7024
|
type: 'procedure',
|
|
6969
|
-
description: 'Unmute an actor by
|
|
7025
|
+
description: 'Unmute an actor by DID or handle.',
|
|
6970
7026
|
input: {
|
|
6971
7027
|
encoding: 'application/json',
|
|
6972
7028
|
schema: {
|
|
@@ -7012,6 +7068,7 @@ export const schemaDict = {
|
|
|
7012
7068
|
defs: {
|
|
7013
7069
|
main: {
|
|
7014
7070
|
type: 'query',
|
|
7071
|
+
description: 'Get the count of unread notifications.',
|
|
7015
7072
|
parameters: {
|
|
7016
7073
|
type: 'params',
|
|
7017
7074
|
properties: {
|
|
@@ -7042,6 +7099,7 @@ export const schemaDict = {
|
|
|
7042
7099
|
defs: {
|
|
7043
7100
|
main: {
|
|
7044
7101
|
type: 'query',
|
|
7102
|
+
description: 'Get a list of notifications.',
|
|
7045
7103
|
parameters: {
|
|
7046
7104
|
type: 'params',
|
|
7047
7105
|
properties: {
|
|
@@ -7148,7 +7206,7 @@ export const schemaDict = {
|
|
|
7148
7206
|
defs: {
|
|
7149
7207
|
main: {
|
|
7150
7208
|
type: 'procedure',
|
|
7151
|
-
description: 'Register for push notifications with a service',
|
|
7209
|
+
description: 'Register for push notifications with a service.',
|
|
7152
7210
|
input: {
|
|
7153
7211
|
encoding: 'application/json',
|
|
7154
7212
|
schema: {
|
|
@@ -7308,7 +7366,7 @@ export const schemaDict = {
|
|
|
7308
7366
|
main: {
|
|
7309
7367
|
type: 'query',
|
|
7310
7368
|
description:
|
|
7311
|
-
'DEPRECATED: will be removed soon
|
|
7369
|
+
'DEPRECATED: will be removed soon. Use a feed generator alternative.',
|
|
7312
7370
|
parameters: {
|
|
7313
7371
|
type: 'params',
|
|
7314
7372
|
properties: {
|
|
@@ -7355,7 +7413,7 @@ export const schemaDict = {
|
|
|
7355
7413
|
defs: {
|
|
7356
7414
|
main: {
|
|
7357
7415
|
type: 'query',
|
|
7358
|
-
description: 'An unspecced view of globally popular feed generators',
|
|
7416
|
+
description: 'An unspecced view of globally popular feed generators.',
|
|
7359
7417
|
parameters: {
|
|
7360
7418
|
type: 'params',
|
|
7361
7419
|
properties: {
|
|
@@ -7401,7 +7459,8 @@ export const schemaDict = {
|
|
|
7401
7459
|
defs: {
|
|
7402
7460
|
main: {
|
|
7403
7461
|
type: 'query',
|
|
7404
|
-
description:
|
|
7462
|
+
description:
|
|
7463
|
+
'DEPRECATED: a skeleton of a timeline. Unspecced and will be unavailable soon.',
|
|
7405
7464
|
parameters: {
|
|
7406
7465
|
type: 'params',
|
|
7407
7466
|
properties: {
|
|
@@ -7449,7 +7508,7 @@ export const schemaDict = {
|
|
|
7449
7508
|
defs: {
|
|
7450
7509
|
main: {
|
|
7451
7510
|
type: 'query',
|
|
7452
|
-
description: 'Backend Actors (profile) search,
|
|
7511
|
+
description: 'Backend Actors (profile) search, returns only skeleton.',
|
|
7453
7512
|
parameters: {
|
|
7454
7513
|
type: 'params',
|
|
7455
7514
|
required: ['q'],
|
|
@@ -7457,11 +7516,11 @@ export const schemaDict = {
|
|
|
7457
7516
|
q: {
|
|
7458
7517
|
type: 'string',
|
|
7459
7518
|
description:
|
|
7460
|
-
'
|
|
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.',
|
|
7461
7520
|
},
|
|
7462
7521
|
typeahead: {
|
|
7463
7522
|
type: 'boolean',
|
|
7464
|
-
description: "
|
|
7523
|
+
description: "If true, acts as fast/simple 'typeahead' query.",
|
|
7465
7524
|
},
|
|
7466
7525
|
limit: {
|
|
7467
7526
|
type: 'integer',
|
|
@@ -7472,7 +7531,7 @@ export const schemaDict = {
|
|
|
7472
7531
|
cursor: {
|
|
7473
7532
|
type: 'string',
|
|
7474
7533
|
description:
|
|
7475
|
-
'
|
|
7534
|
+
'Optional pagination mechanism; may not necessarily allow scrolling through entire result set.',
|
|
7476
7535
|
},
|
|
7477
7536
|
},
|
|
7478
7537
|
},
|
|
@@ -7488,7 +7547,7 @@ export const schemaDict = {
|
|
|
7488
7547
|
hitsTotal: {
|
|
7489
7548
|
type: 'integer',
|
|
7490
7549
|
description:
|
|
7491
|
-
'
|
|
7550
|
+
'Count of search hits. Optional, may be rounded/truncated, and may not be possible to paginate through all hits.',
|
|
7492
7551
|
},
|
|
7493
7552
|
actors: {
|
|
7494
7553
|
type: 'array',
|
|
@@ -7514,7 +7573,7 @@ export const schemaDict = {
|
|
|
7514
7573
|
defs: {
|
|
7515
7574
|
main: {
|
|
7516
7575
|
type: 'query',
|
|
7517
|
-
description: 'Backend Posts search,
|
|
7576
|
+
description: 'Backend Posts search, returns only skeleton',
|
|
7518
7577
|
parameters: {
|
|
7519
7578
|
type: 'params',
|
|
7520
7579
|
required: ['q'],
|
|
@@ -7522,7 +7581,7 @@ export const schemaDict = {
|
|
|
7522
7581
|
q: {
|
|
7523
7582
|
type: 'string',
|
|
7524
7583
|
description:
|
|
7525
|
-
'
|
|
7584
|
+
'Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended.',
|
|
7526
7585
|
},
|
|
7527
7586
|
limit: {
|
|
7528
7587
|
type: 'integer',
|
|
@@ -7533,7 +7592,7 @@ export const schemaDict = {
|
|
|
7533
7592
|
cursor: {
|
|
7534
7593
|
type: 'string',
|
|
7535
7594
|
description:
|
|
7536
|
-
'
|
|
7595
|
+
'Optional pagination mechanism; may not necessarily allow scrolling through entire result set.',
|
|
7537
7596
|
},
|
|
7538
7597
|
},
|
|
7539
7598
|
},
|
|
@@ -7549,7 +7608,7 @@ export const schemaDict = {
|
|
|
7549
7608
|
hitsTotal: {
|
|
7550
7609
|
type: 'integer',
|
|
7551
7610
|
description:
|
|
7552
|
-
'
|
|
7611
|
+
'Count of search hits. Optional, may be rounded/truncated, and may not be possible to paginate through all hits.',
|
|
7553
7612
|
},
|
|
7554
7613
|
posts: {
|
|
7555
7614
|
type: 'array',
|
|
@@ -7651,6 +7710,7 @@ export const ids = {
|
|
|
7651
7710
|
ComAtprotoSyncNotifyOfUpdate: 'com.atproto.sync.notifyOfUpdate',
|
|
7652
7711
|
ComAtprotoSyncRequestCrawl: 'com.atproto.sync.requestCrawl',
|
|
7653
7712
|
ComAtprotoSyncSubscribeRepos: 'com.atproto.sync.subscribeRepos',
|
|
7713
|
+
ComAtprotoTempFetchLabels: 'com.atproto.temp.fetchLabels',
|
|
7654
7714
|
AppBskyActorDefs: 'app.bsky.actor.defs',
|
|
7655
7715
|
AppBskyActorGetPreferences: 'app.bsky.actor.getPreferences',
|
|
7656
7716
|
AppBskyActorGetProfile: 'app.bsky.actor.getProfile',
|