@atproto/bsky 0.0.37 → 0.0.39
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 +21 -0
- package/dist/api/app/bsky/feed/getAuthorFeed.d.ts +2 -3
- package/dist/api/app/bsky/feed/getListFeed.d.ts +2 -2
- package/dist/api/app/bsky/feed/getTimeline.d.ts +4 -2
- package/dist/api/app/bsky/labeler/getServices.d.ts +3 -0
- package/dist/api/util.d.ts +9 -2
- package/dist/auth-verifier.d.ts +1 -1
- package/dist/context.d.ts +3 -0
- package/dist/data-plane/server/db/database-schema.d.ts +2 -2
- package/dist/data-plane/server/db/migrations/20240226T225725627Z-labelers.d.ts +3 -0
- package/dist/data-plane/server/db/migrations/index.d.ts +1 -0
- package/dist/data-plane/server/db/tables/labeler.d.ts +13 -0
- package/dist/data-plane/server/indexing/index.d.ts +2 -0
- package/dist/data-plane/server/indexing/plugins/labeler.d.ts +10 -0
- package/dist/data-plane/server/util.d.ts +6 -6
- package/dist/hydration/actor.d.ts +3 -0
- package/dist/hydration/hydrator.d.ts +27 -22
- package/dist/hydration/label.d.ts +23 -9
- package/dist/index.js +4100 -4645
- package/dist/index.js.map +3 -3
- package/dist/lexicon/index.d.ts +7 -27
- package/dist/lexicon/lexicons.d.ts +516 -1463
- package/dist/lexicon/types/app/bsky/actor/defs.d.ts +23 -1
- package/dist/lexicon/types/app/bsky/embed/record.d.ts +2 -1
- package/dist/lexicon/types/app/bsky/feed/defs.d.ts +1 -0
- package/dist/lexicon/types/app/bsky/graph/defs.d.ts +3 -0
- package/dist/lexicon/types/app/bsky/labeler/defs.d.ts +41 -0
- package/dist/lexicon/types/{com/atproto/admin/searchRepos.d.ts → app/bsky/labeler/getServices.d.ts} +7 -7
- package/dist/lexicon/types/app/bsky/labeler/service.d.ts +14 -0
- package/dist/lexicon/types/com/atproto/admin/defs.d.ts +0 -304
- package/dist/lexicon/types/com/atproto/label/defs.d.ts +23 -0
- package/dist/lexicon/types/com/atproto/server/describeServer.d.ts +7 -0
- package/dist/proto/bsky_connect.d.ts +7 -1
- package/dist/proto/bsky_pb.d.ts +25 -0
- package/dist/util.d.ts +7 -0
- package/dist/views/index.d.ts +3 -0
- package/dist/views/types.d.ts +2 -1
- package/package.json +14 -13
- package/proto/bsky.proto +12 -0
- package/src/api/app/bsky/actor/getProfile.ts +21 -17
- package/src/api/app/bsky/actor/getProfiles.ts +16 -7
- package/src/api/app/bsky/actor/getSuggestions.ts +18 -13
- package/src/api/app/bsky/actor/searchActors.ts +9 -5
- package/src/api/app/bsky/actor/searchActorsTypeahead.ts +12 -5
- package/src/api/app/bsky/feed/getActorFeeds.ts +16 -6
- package/src/api/app/bsky/feed/getActorLikes.ts +18 -8
- package/src/api/app/bsky/feed/getAuthorFeed.ts +18 -19
- package/src/api/app/bsky/feed/getFeed.ts +14 -7
- package/src/api/app/bsky/feed/getFeedGenerator.ts +8 -2
- package/src/api/app/bsky/feed/getFeedGenerators.ts +16 -5
- package/src/api/app/bsky/feed/getLikes.ts +13 -6
- package/src/api/app/bsky/feed/getListFeed.ts +13 -7
- package/src/api/app/bsky/feed/getPostThread.ts +15 -8
- package/src/api/app/bsky/feed/getPosts.ts +14 -5
- package/src/api/app/bsky/feed/getRepostedBy.ts +13 -6
- package/src/api/app/bsky/feed/getSuggestedFeeds.ts +8 -2
- package/src/api/app/bsky/feed/getTimeline.ts +14 -8
- package/src/api/app/bsky/feed/searchPosts.ts +9 -5
- package/src/api/app/bsky/graph/getBlocks.ts +10 -9
- package/src/api/app/bsky/graph/getFollowers.ts +23 -15
- package/src/api/app/bsky/graph/getFollows.ts +23 -15
- package/src/api/app/bsky/graph/getList.ts +14 -8
- package/src/api/app/bsky/graph/getListBlocks.ts +10 -7
- package/src/api/app/bsky/graph/getListMutes.ts +10 -7
- package/src/api/app/bsky/graph/getLists.ts +9 -7
- package/src/api/app/bsky/graph/getMutes.ts +10 -8
- package/src/api/app/bsky/graph/getSuggestedFollowsByActor.ts +10 -7
- package/src/api/app/bsky/graph/muteActor.ts +1 -1
- package/src/api/app/bsky/labeler/getServices.ts +46 -0
- package/src/api/app/bsky/notification/listNotifications.ts +12 -8
- package/src/api/app/bsky/unspecced/getPopularFeedGenerators.ts +6 -3
- package/src/api/com/atproto/admin/getAccountInfos.ts +10 -3
- package/src/api/index.ts +2 -0
- package/src/api/util.ts +19 -4
- package/src/auth-verifier.ts +2 -2
- package/src/context.ts +20 -0
- package/src/data-plane/server/db/database-schema.ts +4 -4
- package/src/data-plane/server/db/migrations/20240226T225725627Z-labelers.ts +27 -0
- package/src/data-plane/server/db/migrations/index.ts +1 -0
- package/src/data-plane/server/db/tables/labeler.ts +16 -0
- package/src/data-plane/server/indexing/index.ts +4 -0
- package/src/data-plane/server/indexing/plugins/labeler.ts +77 -0
- package/src/data-plane/server/routes/interactions.ts +17 -1
- package/src/data-plane/server/routes/labels.ts +4 -2
- package/src/data-plane/server/routes/profile.ts +15 -1
- package/src/data-plane/server/routes/records.ts +1 -0
- package/src/hydration/actor.ts +6 -0
- package/src/hydration/hydrator.ts +171 -97
- package/src/hydration/label.ts +106 -20
- package/src/index.ts +1 -3
- package/src/lexicon/index.ts +22 -137
- package/src/lexicon/lexicons.ts +552 -1635
- package/src/lexicon/types/app/bsky/actor/defs.ts +57 -1
- package/src/lexicon/types/app/bsky/embed/record.ts +2 -0
- package/src/lexicon/types/app/bsky/feed/defs.ts +1 -0
- package/src/lexicon/types/app/bsky/graph/defs.ts +3 -0
- package/src/lexicon/types/app/bsky/labeler/defs.ts +93 -0
- package/src/lexicon/types/{com/atproto/admin/searchRepos.ts → app/bsky/labeler/getServices.ts} +8 -8
- package/src/lexicon/types/app/bsky/labeler/service.ts +31 -0
- package/src/lexicon/types/com/atproto/admin/defs.ts +0 -694
- package/src/lexicon/types/com/atproto/label/defs.ts +78 -0
- package/src/lexicon/types/com/atproto/server/describeServer.ts +18 -0
- package/src/proto/bsky_connect.ts +11 -0
- package/src/proto/bsky_pb.ts +146 -0
- package/src/util.ts +44 -0
- package/src/views/index.ts +77 -8
- package/src/views/types.ts +6 -3
- package/tests/__snapshots__/feed-generation.test.ts.snap +12 -45
- package/tests/_util.ts +21 -0
- package/tests/data-plane/__snapshots__/indexing.test.ts.snap +20 -8
- package/tests/label-hydration.test.ts +162 -0
- package/tests/views/__snapshots__/author-feed.test.ts.snap +0 -46
- package/tests/views/__snapshots__/block-lists.test.ts.snap +7 -17
- package/tests/views/__snapshots__/blocks.test.ts.snap +0 -9
- package/tests/views/__snapshots__/labeler-service.test.ts.snap +156 -0
- package/tests/views/__snapshots__/list-feed.test.ts.snap +0 -20
- package/tests/views/__snapshots__/mute-lists.test.ts.snap +10 -18
- package/tests/views/__snapshots__/mutes.test.ts.snap +0 -4
- package/tests/views/__snapshots__/notifications.test.ts.snap +0 -9
- package/tests/views/__snapshots__/posts.test.ts.snap +0 -7
- package/tests/views/__snapshots__/profile.test.ts.snap +40 -6
- package/tests/views/__snapshots__/thread.test.ts.snap +0 -38
- package/tests/views/__snapshots__/threadgating.test.ts.snap +2 -0
- package/tests/views/__snapshots__/timeline.test.ts.snap +0 -145
- package/tests/views/labeler-service.test.ts +156 -0
- package/tests/views/takedown-labels.test.ts +133 -0
- package/tests/views/timeline.test.ts +7 -2
- package/dist/data-plane/server/db/tables/moderation.d.ts +0 -42
- package/dist/lexicon/types/com/atproto/admin/createCommunicationTemplate.d.ts +0 -37
- package/dist/lexicon/types/com/atproto/admin/deleteCommunicationTemplate.d.ts +0 -25
- package/dist/lexicon/types/com/atproto/admin/emitModerationEvent.d.ts +0 -45
- package/dist/lexicon/types/com/atproto/admin/getModerationEvent.d.ts +0 -29
- package/dist/lexicon/types/com/atproto/admin/getRecord.d.ts +0 -31
- package/dist/lexicon/types/com/atproto/admin/getRepo.d.ts +0 -30
- package/dist/lexicon/types/com/atproto/admin/listCommunicationTemplates.d.ts +0 -31
- package/dist/lexicon/types/com/atproto/admin/queryModerationEvents.d.ts +0 -48
- package/dist/lexicon/types/com/atproto/admin/queryModerationStatuses.d.ts +0 -50
- package/dist/lexicon/types/com/atproto/admin/updateCommunicationTemplate.d.ts +0 -39
- package/src/data-plane/server/db/tables/moderation.ts +0 -59
- package/src/lexicon/types/com/atproto/admin/createCommunicationTemplate.ts +0 -54
- package/src/lexicon/types/com/atproto/admin/deleteCommunicationTemplate.ts +0 -38
- package/src/lexicon/types/com/atproto/admin/emitModerationEvent.ts +0 -67
- package/src/lexicon/types/com/atproto/admin/getModerationEvent.ts +0 -41
- package/src/lexicon/types/com/atproto/admin/getRecord.ts +0 -43
- package/src/lexicon/types/com/atproto/admin/getRepo.ts +0 -42
- package/src/lexicon/types/com/atproto/admin/listCommunicationTemplates.ts +0 -44
- package/src/lexicon/types/com/atproto/admin/queryModerationEvents.ts +0 -73
- package/src/lexicon/types/com/atproto/admin/queryModerationStatuses.ts +0 -74
- package/src/lexicon/types/com/atproto/admin/updateCommunicationTemplate.ts +0 -57
|
@@ -249,7 +249,6 @@ Array [
|
|
|
249
249
|
Object {
|
|
250
250
|
"cid": "cids(12)",
|
|
251
251
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
252
|
-
"neg": false,
|
|
253
252
|
"src": "did:example:labeler",
|
|
254
253
|
"uri": "record(14)",
|
|
255
254
|
"val": "test-label",
|
|
@@ -257,7 +256,6 @@ Array [
|
|
|
257
256
|
Object {
|
|
258
257
|
"cid": "cids(12)",
|
|
259
258
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
260
|
-
"neg": false,
|
|
261
259
|
"src": "did:example:labeler",
|
|
262
260
|
"uri": "record(14)",
|
|
263
261
|
"val": "test-label-2",
|
|
@@ -693,7 +691,6 @@ Array [
|
|
|
693
691
|
Object {
|
|
694
692
|
"cid": "cids(15)",
|
|
695
693
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
696
|
-
"neg": false,
|
|
697
694
|
"src": "did:example:labeler",
|
|
698
695
|
"uri": "record(17)",
|
|
699
696
|
"val": "test-label",
|
|
@@ -701,7 +698,6 @@ Array [
|
|
|
701
698
|
Object {
|
|
702
699
|
"cid": "cids(15)",
|
|
703
700
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
704
|
-
"neg": false,
|
|
705
701
|
"src": "did:example:labeler",
|
|
706
702
|
"uri": "record(17)",
|
|
707
703
|
"val": "test-label-2",
|
|
@@ -849,7 +845,6 @@ Array [
|
|
|
849
845
|
Object {
|
|
850
846
|
"cid": "cids(4)",
|
|
851
847
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
852
|
-
"neg": false,
|
|
853
848
|
"src": "user(1)",
|
|
854
849
|
"uri": "record(3)",
|
|
855
850
|
"val": "self-label-a",
|
|
@@ -857,7 +852,6 @@ Array [
|
|
|
857
852
|
Object {
|
|
858
853
|
"cid": "cids(4)",
|
|
859
854
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
860
|
-
"neg": false,
|
|
861
855
|
"src": "user(1)",
|
|
862
856
|
"uri": "record(3)",
|
|
863
857
|
"val": "self-label-b",
|
|
@@ -893,7 +887,6 @@ Array [
|
|
|
893
887
|
Object {
|
|
894
888
|
"cid": "cids(4)",
|
|
895
889
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
896
|
-
"neg": false,
|
|
897
890
|
"src": "user(1)",
|
|
898
891
|
"uri": "record(3)",
|
|
899
892
|
"val": "self-label-a",
|
|
@@ -901,7 +894,6 @@ Array [
|
|
|
901
894
|
Object {
|
|
902
895
|
"cid": "cids(4)",
|
|
903
896
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
904
|
-
"neg": false,
|
|
905
897
|
"src": "user(1)",
|
|
906
898
|
"uri": "record(3)",
|
|
907
899
|
"val": "self-label-b",
|
|
@@ -920,7 +912,6 @@ Array [
|
|
|
920
912
|
Object {
|
|
921
913
|
"cid": "cids(5)",
|
|
922
914
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
923
|
-
"neg": false,
|
|
924
915
|
"src": "did:example:labeler",
|
|
925
916
|
"uri": "record(4)",
|
|
926
917
|
"val": "test-label",
|
|
@@ -12,7 +12,6 @@ Array [
|
|
|
12
12
|
Object {
|
|
13
13
|
"cid": "cids(2)",
|
|
14
14
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
15
|
-
"neg": false,
|
|
16
15
|
"src": "user(0)",
|
|
17
16
|
"uri": "record(1)",
|
|
18
17
|
"val": "self-label-a",
|
|
@@ -20,7 +19,6 @@ Array [
|
|
|
20
19
|
Object {
|
|
21
20
|
"cid": "cids(2)",
|
|
22
21
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
23
|
-
"neg": false,
|
|
24
22
|
"src": "user(0)",
|
|
25
23
|
"uri": "record(1)",
|
|
26
24
|
"val": "self-label-b",
|
|
@@ -37,7 +35,6 @@ Array [
|
|
|
37
35
|
Object {
|
|
38
36
|
"cid": "cids(0)",
|
|
39
37
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
40
|
-
"neg": false,
|
|
41
38
|
"src": "user(0)",
|
|
42
39
|
"uri": "record(0)",
|
|
43
40
|
"val": "self-label",
|
|
@@ -72,7 +69,6 @@ Array [
|
|
|
72
69
|
Object {
|
|
73
70
|
"cid": "cids(2)",
|
|
74
71
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
75
|
-
"neg": false,
|
|
76
72
|
"src": "user(0)",
|
|
77
73
|
"uri": "record(1)",
|
|
78
74
|
"val": "self-label-a",
|
|
@@ -80,7 +76,6 @@ Array [
|
|
|
80
76
|
Object {
|
|
81
77
|
"cid": "cids(2)",
|
|
82
78
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
83
|
-
"neg": false,
|
|
84
79
|
"src": "user(0)",
|
|
85
80
|
"uri": "record(1)",
|
|
86
81
|
"val": "self-label-b",
|
|
@@ -420,7 +415,6 @@ Array [
|
|
|
420
415
|
Object {
|
|
421
416
|
"cid": "cids(2)",
|
|
422
417
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
423
|
-
"neg": false,
|
|
424
418
|
"src": "user(0)",
|
|
425
419
|
"uri": "record(1)",
|
|
426
420
|
"val": "self-label-a",
|
|
@@ -428,7 +422,6 @@ Array [
|
|
|
428
422
|
Object {
|
|
429
423
|
"cid": "cids(2)",
|
|
430
424
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
431
|
-
"neg": false,
|
|
432
425
|
"src": "user(0)",
|
|
433
426
|
"uri": "record(1)",
|
|
434
427
|
"val": "self-label-b",
|
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
exports[`pds profile views fetches multiple profiles 1`] = `
|
|
4
4
|
Array [
|
|
5
5
|
Object {
|
|
6
|
+
"associated": Object {
|
|
7
|
+
"feedgens": 0,
|
|
8
|
+
"labeler": false,
|
|
9
|
+
"lists": 0,
|
|
10
|
+
},
|
|
6
11
|
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(0)@jpeg",
|
|
7
12
|
"description": "its me!",
|
|
8
13
|
"did": "user(0)",
|
|
@@ -15,7 +20,6 @@ Array [
|
|
|
15
20
|
Object {
|
|
16
21
|
"cid": "cids(1)",
|
|
17
22
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
18
|
-
"neg": false,
|
|
19
23
|
"src": "user(0)",
|
|
20
24
|
"uri": "record(2)",
|
|
21
25
|
"val": "self-label-a",
|
|
@@ -23,7 +27,6 @@ Array [
|
|
|
23
27
|
Object {
|
|
24
28
|
"cid": "cids(1)",
|
|
25
29
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
26
|
-
"neg": false,
|
|
27
30
|
"src": "user(0)",
|
|
28
31
|
"uri": "record(2)",
|
|
29
32
|
"val": "self-label-b",
|
|
@@ -38,6 +41,11 @@ Array [
|
|
|
38
41
|
},
|
|
39
42
|
},
|
|
40
43
|
Object {
|
|
44
|
+
"associated": Object {
|
|
45
|
+
"feedgens": 0,
|
|
46
|
+
"labeler": false,
|
|
47
|
+
"lists": 0,
|
|
48
|
+
},
|
|
41
49
|
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(0)@jpeg",
|
|
42
50
|
"description": "hi im bob label_me",
|
|
43
51
|
"did": "user(2)",
|
|
@@ -54,6 +62,11 @@ Array [
|
|
|
54
62
|
},
|
|
55
63
|
},
|
|
56
64
|
Object {
|
|
65
|
+
"associated": Object {
|
|
66
|
+
"feedgens": 0,
|
|
67
|
+
"labeler": false,
|
|
68
|
+
"lists": 0,
|
|
69
|
+
},
|
|
57
70
|
"did": "user(4)",
|
|
58
71
|
"followersCount": 2,
|
|
59
72
|
"followsCount": 1,
|
|
@@ -67,6 +80,11 @@ Array [
|
|
|
67
80
|
},
|
|
68
81
|
},
|
|
69
82
|
Object {
|
|
83
|
+
"associated": Object {
|
|
84
|
+
"feedgens": 0,
|
|
85
|
+
"labeler": false,
|
|
86
|
+
"lists": 0,
|
|
87
|
+
},
|
|
70
88
|
"did": "user(5)",
|
|
71
89
|
"followersCount": 1,
|
|
72
90
|
"followsCount": 1,
|
|
@@ -84,6 +102,11 @@ Array [
|
|
|
84
102
|
|
|
85
103
|
exports[`pds profile views fetches other's profile, with a follow 1`] = `
|
|
86
104
|
Object {
|
|
105
|
+
"associated": Object {
|
|
106
|
+
"feedgens": 0,
|
|
107
|
+
"labeler": false,
|
|
108
|
+
"lists": 0,
|
|
109
|
+
},
|
|
87
110
|
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(0)@jpeg",
|
|
88
111
|
"description": "its me!",
|
|
89
112
|
"did": "user(0)",
|
|
@@ -96,7 +119,6 @@ Object {
|
|
|
96
119
|
Object {
|
|
97
120
|
"cid": "cids(1)",
|
|
98
121
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
99
|
-
"neg": false,
|
|
100
122
|
"src": "user(0)",
|
|
101
123
|
"uri": "record(2)",
|
|
102
124
|
"val": "self-label-a",
|
|
@@ -104,7 +126,6 @@ Object {
|
|
|
104
126
|
Object {
|
|
105
127
|
"cid": "cids(1)",
|
|
106
128
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
107
|
-
"neg": false,
|
|
108
129
|
"src": "user(0)",
|
|
109
130
|
"uri": "record(2)",
|
|
110
131
|
"val": "self-label-b",
|
|
@@ -122,6 +143,11 @@ Object {
|
|
|
122
143
|
|
|
123
144
|
exports[`pds profile views fetches other's profile, without a follow 1`] = `
|
|
124
145
|
Object {
|
|
146
|
+
"associated": Object {
|
|
147
|
+
"feedgens": 0,
|
|
148
|
+
"labeler": false,
|
|
149
|
+
"lists": 0,
|
|
150
|
+
},
|
|
125
151
|
"did": "user(0)",
|
|
126
152
|
"followersCount": 1,
|
|
127
153
|
"followsCount": 1,
|
|
@@ -138,6 +164,11 @@ Object {
|
|
|
138
164
|
|
|
139
165
|
exports[`pds profile views fetches own profile 1`] = `
|
|
140
166
|
Object {
|
|
167
|
+
"associated": Object {
|
|
168
|
+
"feedgens": 0,
|
|
169
|
+
"labeler": false,
|
|
170
|
+
"lists": 0,
|
|
171
|
+
},
|
|
141
172
|
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(0)@jpeg",
|
|
142
173
|
"description": "its me!",
|
|
143
174
|
"did": "user(0)",
|
|
@@ -150,7 +181,6 @@ Object {
|
|
|
150
181
|
Object {
|
|
151
182
|
"cid": "cids(1)",
|
|
152
183
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
153
|
-
"neg": false,
|
|
154
184
|
"src": "user(0)",
|
|
155
185
|
"uri": "record(0)",
|
|
156
186
|
"val": "self-label-a",
|
|
@@ -158,7 +188,6 @@ Object {
|
|
|
158
188
|
Object {
|
|
159
189
|
"cid": "cids(1)",
|
|
160
190
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
161
|
-
"neg": false,
|
|
162
191
|
"src": "user(0)",
|
|
163
192
|
"uri": "record(0)",
|
|
164
193
|
"val": "self-label-b",
|
|
@@ -174,6 +203,11 @@ Object {
|
|
|
174
203
|
|
|
175
204
|
exports[`pds profile views presents avatars & banners 1`] = `
|
|
176
205
|
Object {
|
|
206
|
+
"associated": Object {
|
|
207
|
+
"feedgens": 0,
|
|
208
|
+
"labeler": false,
|
|
209
|
+
"lists": 0,
|
|
210
|
+
},
|
|
177
211
|
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(0)@jpeg",
|
|
178
212
|
"banner": "https://bsky.public.url/img/banner/plain/user(1)/cids(1)@jpeg",
|
|
179
213
|
"description": "new descript",
|
|
@@ -17,7 +17,6 @@ Object {
|
|
|
17
17
|
Object {
|
|
18
18
|
"cid": "cids(2)",
|
|
19
19
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
20
|
-
"neg": false,
|
|
21
20
|
"src": "user(0)",
|
|
22
21
|
"uri": "record(3)",
|
|
23
22
|
"val": "self-label-a",
|
|
@@ -25,7 +24,6 @@ Object {
|
|
|
25
24
|
Object {
|
|
26
25
|
"cid": "cids(2)",
|
|
27
26
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
28
|
-
"neg": false,
|
|
29
27
|
"src": "user(0)",
|
|
30
28
|
"uri": "record(3)",
|
|
31
29
|
"val": "self-label-b",
|
|
@@ -83,7 +81,6 @@ Object {
|
|
|
83
81
|
Object {
|
|
84
82
|
"cid": "cids(4)",
|
|
85
83
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
86
|
-
"neg": false,
|
|
87
84
|
"src": "did:example:labeler",
|
|
88
85
|
"uri": "record(5)",
|
|
89
86
|
"val": "test-label",
|
|
@@ -91,7 +88,6 @@ Object {
|
|
|
91
88
|
Object {
|
|
92
89
|
"cid": "cids(4)",
|
|
93
90
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
94
|
-
"neg": false,
|
|
95
91
|
"src": "did:example:labeler",
|
|
96
92
|
"uri": "record(5)",
|
|
97
93
|
"val": "test-label-2",
|
|
@@ -145,7 +141,6 @@ Object {
|
|
|
145
141
|
Object {
|
|
146
142
|
"cid": "cids(2)",
|
|
147
143
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
148
|
-
"neg": false,
|
|
149
144
|
"src": "user(0)",
|
|
150
145
|
"uri": "record(3)",
|
|
151
146
|
"val": "self-label-a",
|
|
@@ -153,7 +148,6 @@ Object {
|
|
|
153
148
|
Object {
|
|
154
149
|
"cid": "cids(2)",
|
|
155
150
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
156
|
-
"neg": false,
|
|
157
151
|
"src": "user(0)",
|
|
158
152
|
"uri": "record(3)",
|
|
159
153
|
"val": "self-label-b",
|
|
@@ -209,7 +203,6 @@ Object {
|
|
|
209
203
|
Object {
|
|
210
204
|
"cid": "cids(2)",
|
|
211
205
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
212
|
-
"neg": false,
|
|
213
206
|
"src": "user(0)",
|
|
214
207
|
"uri": "record(3)",
|
|
215
208
|
"val": "self-label-a",
|
|
@@ -217,7 +210,6 @@ Object {
|
|
|
217
210
|
Object {
|
|
218
211
|
"cid": "cids(2)",
|
|
219
212
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
220
|
-
"neg": false,
|
|
221
213
|
"src": "user(0)",
|
|
222
214
|
"uri": "record(3)",
|
|
223
215
|
"val": "self-label-b",
|
|
@@ -316,7 +308,6 @@ Object {
|
|
|
316
308
|
Object {
|
|
317
309
|
"cid": "cids(4)",
|
|
318
310
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
319
|
-
"neg": false,
|
|
320
311
|
"src": "did:example:labeler",
|
|
321
312
|
"uri": "record(7)",
|
|
322
313
|
"val": "test-label",
|
|
@@ -324,7 +315,6 @@ Object {
|
|
|
324
315
|
Object {
|
|
325
316
|
"cid": "cids(4)",
|
|
326
317
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
327
|
-
"neg": false,
|
|
328
318
|
"src": "did:example:labeler",
|
|
329
319
|
"uri": "record(7)",
|
|
330
320
|
"val": "test-label-2",
|
|
@@ -380,7 +370,6 @@ Object {
|
|
|
380
370
|
Object {
|
|
381
371
|
"cid": "cids(2)",
|
|
382
372
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
383
|
-
"neg": false,
|
|
384
373
|
"src": "user(0)",
|
|
385
374
|
"uri": "record(3)",
|
|
386
375
|
"val": "self-label-a",
|
|
@@ -388,7 +377,6 @@ Object {
|
|
|
388
377
|
Object {
|
|
389
378
|
"cid": "cids(2)",
|
|
390
379
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
391
|
-
"neg": false,
|
|
392
380
|
"src": "user(0)",
|
|
393
381
|
"uri": "record(3)",
|
|
394
382
|
"val": "self-label-b",
|
|
@@ -448,7 +436,6 @@ Object {
|
|
|
448
436
|
Object {
|
|
449
437
|
"cid": "cids(2)",
|
|
450
438
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
451
|
-
"neg": false,
|
|
452
439
|
"src": "user(0)",
|
|
453
440
|
"uri": "record(3)",
|
|
454
441
|
"val": "self-label-a",
|
|
@@ -456,7 +443,6 @@ Object {
|
|
|
456
443
|
Object {
|
|
457
444
|
"cid": "cids(2)",
|
|
458
445
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
459
|
-
"neg": false,
|
|
460
446
|
"src": "user(0)",
|
|
461
447
|
"uri": "record(3)",
|
|
462
448
|
"val": "self-label-b",
|
|
@@ -554,7 +540,6 @@ Object {
|
|
|
554
540
|
Object {
|
|
555
541
|
"cid": "cids(4)",
|
|
556
542
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
557
|
-
"neg": false,
|
|
558
543
|
"src": "did:example:labeler",
|
|
559
544
|
"uri": "record(7)",
|
|
560
545
|
"val": "test-label",
|
|
@@ -562,7 +547,6 @@ Object {
|
|
|
562
547
|
Object {
|
|
563
548
|
"cid": "cids(4)",
|
|
564
549
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
565
|
-
"neg": false,
|
|
566
550
|
"src": "did:example:labeler",
|
|
567
551
|
"uri": "record(7)",
|
|
568
552
|
"val": "test-label-2",
|
|
@@ -623,7 +607,6 @@ Object {
|
|
|
623
607
|
Object {
|
|
624
608
|
"cid": "cids(2)",
|
|
625
609
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
626
|
-
"neg": false,
|
|
627
610
|
"src": "user(0)",
|
|
628
611
|
"uri": "record(3)",
|
|
629
612
|
"val": "self-label-a",
|
|
@@ -631,7 +614,6 @@ Object {
|
|
|
631
614
|
Object {
|
|
632
615
|
"cid": "cids(2)",
|
|
633
616
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
634
|
-
"neg": false,
|
|
635
617
|
"src": "user(0)",
|
|
636
618
|
"uri": "record(3)",
|
|
637
619
|
"val": "self-label-b",
|
|
@@ -710,7 +692,6 @@ Object {
|
|
|
710
692
|
Object {
|
|
711
693
|
"cid": "cids(2)",
|
|
712
694
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
713
|
-
"neg": false,
|
|
714
695
|
"src": "user(0)",
|
|
715
696
|
"uri": "record(3)",
|
|
716
697
|
"val": "self-label-a",
|
|
@@ -718,7 +699,6 @@ Object {
|
|
|
718
699
|
Object {
|
|
719
700
|
"cid": "cids(2)",
|
|
720
701
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
721
|
-
"neg": false,
|
|
722
702
|
"src": "user(0)",
|
|
723
703
|
"uri": "record(3)",
|
|
724
704
|
"val": "self-label-b",
|
|
@@ -776,7 +756,6 @@ Object {
|
|
|
776
756
|
Object {
|
|
777
757
|
"cid": "cids(2)",
|
|
778
758
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
779
|
-
"neg": false,
|
|
780
759
|
"src": "user(0)",
|
|
781
760
|
"uri": "record(3)",
|
|
782
761
|
"val": "self-label-a",
|
|
@@ -784,7 +763,6 @@ Object {
|
|
|
784
763
|
Object {
|
|
785
764
|
"cid": "cids(2)",
|
|
786
765
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
787
|
-
"neg": false,
|
|
788
766
|
"src": "user(0)",
|
|
789
767
|
"uri": "record(3)",
|
|
790
768
|
"val": "self-label-b",
|
|
@@ -833,7 +811,6 @@ Object {
|
|
|
833
811
|
Object {
|
|
834
812
|
"cid": "cids(2)",
|
|
835
813
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
836
|
-
"neg": false,
|
|
837
814
|
"src": "user(0)",
|
|
838
815
|
"uri": "record(3)",
|
|
839
816
|
"val": "self-label-a",
|
|
@@ -841,7 +818,6 @@ Object {
|
|
|
841
818
|
Object {
|
|
842
819
|
"cid": "cids(2)",
|
|
843
820
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
844
|
-
"neg": false,
|
|
845
821
|
"src": "user(0)",
|
|
846
822
|
"uri": "record(3)",
|
|
847
823
|
"val": "self-label-b",
|
|
@@ -900,7 +876,6 @@ Object {
|
|
|
900
876
|
Object {
|
|
901
877
|
"cid": "cids(2)",
|
|
902
878
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
903
|
-
"neg": false,
|
|
904
879
|
"src": "user(0)",
|
|
905
880
|
"uri": "record(3)",
|
|
906
881
|
"val": "self-label-a",
|
|
@@ -908,7 +883,6 @@ Object {
|
|
|
908
883
|
Object {
|
|
909
884
|
"cid": "cids(2)",
|
|
910
885
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
911
|
-
"neg": false,
|
|
912
886
|
"src": "user(0)",
|
|
913
887
|
"uri": "record(3)",
|
|
914
888
|
"val": "self-label-b",
|
|
@@ -969,7 +943,6 @@ Object {
|
|
|
969
943
|
Object {
|
|
970
944
|
"cid": "cids(2)",
|
|
971
945
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
972
|
-
"neg": false,
|
|
973
946
|
"src": "user(0)",
|
|
974
947
|
"uri": "record(3)",
|
|
975
948
|
"val": "self-label-a",
|
|
@@ -977,7 +950,6 @@ Object {
|
|
|
977
950
|
Object {
|
|
978
951
|
"cid": "cids(2)",
|
|
979
952
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
980
|
-
"neg": false,
|
|
981
953
|
"src": "user(0)",
|
|
982
954
|
"uri": "record(3)",
|
|
983
955
|
"val": "self-label-b",
|
|
@@ -1033,7 +1005,6 @@ Object {
|
|
|
1033
1005
|
Object {
|
|
1034
1006
|
"cid": "cids(2)",
|
|
1035
1007
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1036
|
-
"neg": false,
|
|
1037
1008
|
"src": "user(0)",
|
|
1038
1009
|
"uri": "record(3)",
|
|
1039
1010
|
"val": "self-label-a",
|
|
@@ -1041,7 +1012,6 @@ Object {
|
|
|
1041
1012
|
Object {
|
|
1042
1013
|
"cid": "cids(2)",
|
|
1043
1014
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1044
|
-
"neg": false,
|
|
1045
1015
|
"src": "user(0)",
|
|
1046
1016
|
"uri": "record(3)",
|
|
1047
1017
|
"val": "self-label-b",
|
|
@@ -1106,7 +1076,6 @@ Object {
|
|
|
1106
1076
|
Object {
|
|
1107
1077
|
"cid": "cids(3)",
|
|
1108
1078
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1109
|
-
"neg": false,
|
|
1110
1079
|
"src": "did:example:labeler",
|
|
1111
1080
|
"uri": "record(6)",
|
|
1112
1081
|
"val": "test-label",
|
|
@@ -1114,7 +1083,6 @@ Object {
|
|
|
1114
1083
|
Object {
|
|
1115
1084
|
"cid": "cids(3)",
|
|
1116
1085
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1117
|
-
"neg": false,
|
|
1118
1086
|
"src": "did:example:labeler",
|
|
1119
1087
|
"uri": "record(6)",
|
|
1120
1088
|
"val": "test-label-2",
|
|
@@ -1170,7 +1138,6 @@ Object {
|
|
|
1170
1138
|
Object {
|
|
1171
1139
|
"cid": "cids(2)",
|
|
1172
1140
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1173
|
-
"neg": false,
|
|
1174
1141
|
"src": "user(0)",
|
|
1175
1142
|
"uri": "record(3)",
|
|
1176
1143
|
"val": "self-label-a",
|
|
@@ -1178,7 +1145,6 @@ Object {
|
|
|
1178
1145
|
Object {
|
|
1179
1146
|
"cid": "cids(2)",
|
|
1180
1147
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1181
|
-
"neg": false,
|
|
1182
1148
|
"src": "user(0)",
|
|
1183
1149
|
"uri": "record(3)",
|
|
1184
1150
|
"val": "self-label-b",
|
|
@@ -1238,7 +1204,6 @@ Object {
|
|
|
1238
1204
|
Object {
|
|
1239
1205
|
"cid": "cids(2)",
|
|
1240
1206
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1241
|
-
"neg": false,
|
|
1242
1207
|
"src": "user(0)",
|
|
1243
1208
|
"uri": "record(3)",
|
|
1244
1209
|
"val": "self-label-a",
|
|
@@ -1246,7 +1211,6 @@ Object {
|
|
|
1246
1211
|
Object {
|
|
1247
1212
|
"cid": "cids(2)",
|
|
1248
1213
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1249
|
-
"neg": false,
|
|
1250
1214
|
"src": "user(0)",
|
|
1251
1215
|
"uri": "record(3)",
|
|
1252
1216
|
"val": "self-label-b",
|
|
@@ -1306,7 +1270,6 @@ Object {
|
|
|
1306
1270
|
Object {
|
|
1307
1271
|
"cid": "cids(3)",
|
|
1308
1272
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1309
|
-
"neg": false,
|
|
1310
1273
|
"src": "did:example:labeler",
|
|
1311
1274
|
"uri": "record(5)",
|
|
1312
1275
|
"val": "test-label",
|
|
@@ -1314,7 +1277,6 @@ Object {
|
|
|
1314
1277
|
Object {
|
|
1315
1278
|
"cid": "cids(3)",
|
|
1316
1279
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1317
|
-
"neg": false,
|
|
1318
1280
|
"src": "did:example:labeler",
|
|
1319
1281
|
"uri": "record(5)",
|
|
1320
1282
|
"val": "test-label-2",
|
|
@@ -41,6 +41,7 @@ Object {
|
|
|
41
41
|
Object {
|
|
42
42
|
"cid": "cids(1)",
|
|
43
43
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
44
|
+
"labels": Array [],
|
|
44
45
|
"name": "list a",
|
|
45
46
|
"purpose": "app.bsky.graph.defs#modlist",
|
|
46
47
|
"uri": "record(2)",
|
|
@@ -51,6 +52,7 @@ Object {
|
|
|
51
52
|
Object {
|
|
52
53
|
"cid": "cids(2)",
|
|
53
54
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
55
|
+
"labels": Array [],
|
|
54
56
|
"name": "list b",
|
|
55
57
|
"purpose": "app.bsky.graph.defs#modlist",
|
|
56
58
|
"uri": "record(3)",
|