@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
|
@@ -14,7 +14,6 @@ Object {
|
|
|
14
14
|
Object {
|
|
15
15
|
"cid": "cids(2)",
|
|
16
16
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
17
|
-
"neg": false,
|
|
18
17
|
"src": "user(0)",
|
|
19
18
|
"uri": "record(2)",
|
|
20
19
|
"val": "self-label-a",
|
|
@@ -22,7 +21,6 @@ Object {
|
|
|
22
21
|
Object {
|
|
23
22
|
"cid": "cids(2)",
|
|
24
23
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
25
|
-
"neg": false,
|
|
26
24
|
"src": "user(0)",
|
|
27
25
|
"uri": "record(2)",
|
|
28
26
|
"val": "self-label-b",
|
|
@@ -102,7 +100,6 @@ Object {
|
|
|
102
100
|
Object {
|
|
103
101
|
"cid": "cids(0)",
|
|
104
102
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
105
|
-
"neg": false,
|
|
106
103
|
"src": "did:example:labeler",
|
|
107
104
|
"uri": "record(0)",
|
|
108
105
|
"val": "test-label",
|
|
@@ -155,7 +152,6 @@ Object {
|
|
|
155
152
|
Object {
|
|
156
153
|
"cid": "cids(2)",
|
|
157
154
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
158
|
-
"neg": false,
|
|
159
155
|
"src": "user(0)",
|
|
160
156
|
"uri": "record(3)",
|
|
161
157
|
"val": "self-label-a",
|
|
@@ -163,7 +159,6 @@ Object {
|
|
|
163
159
|
Object {
|
|
164
160
|
"cid": "cids(2)",
|
|
165
161
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
166
|
-
"neg": false,
|
|
167
162
|
"src": "user(0)",
|
|
168
163
|
"uri": "record(3)",
|
|
169
164
|
"val": "self-label-b",
|
|
@@ -219,7 +214,6 @@ Object {
|
|
|
219
214
|
Object {
|
|
220
215
|
"cid": "cids(2)",
|
|
221
216
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
222
|
-
"neg": false,
|
|
223
217
|
"src": "user(0)",
|
|
224
218
|
"uri": "record(2)",
|
|
225
219
|
"val": "self-label-a",
|
|
@@ -227,7 +221,6 @@ Object {
|
|
|
227
221
|
Object {
|
|
228
222
|
"cid": "cids(2)",
|
|
229
223
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
230
|
-
"neg": false,
|
|
231
224
|
"src": "user(0)",
|
|
232
225
|
"uri": "record(2)",
|
|
233
226
|
"val": "self-label-b",
|
|
@@ -300,7 +293,6 @@ Object {
|
|
|
300
293
|
Object {
|
|
301
294
|
"cid": "cids(3)",
|
|
302
295
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
303
|
-
"neg": false,
|
|
304
296
|
"src": "did:example:labeler",
|
|
305
297
|
"uri": "record(7)",
|
|
306
298
|
"val": "test-label",
|
|
@@ -308,7 +300,6 @@ Object {
|
|
|
308
300
|
Object {
|
|
309
301
|
"cid": "cids(3)",
|
|
310
302
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
311
|
-
"neg": false,
|
|
312
303
|
"src": "did:example:labeler",
|
|
313
304
|
"uri": "record(7)",
|
|
314
305
|
"val": "test-label-2",
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
+
|
|
3
|
+
exports[`labeler service views fetches labelers 1`] = `
|
|
4
|
+
Object {
|
|
5
|
+
"views": Array [
|
|
6
|
+
Object {
|
|
7
|
+
"$type": "app.bsky.labeler.defs#labelerView",
|
|
8
|
+
"cid": "cids(0)",
|
|
9
|
+
"creator": Object {
|
|
10
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
|
|
11
|
+
"description": "its me!",
|
|
12
|
+
"did": "user(0)",
|
|
13
|
+
"displayName": "ali",
|
|
14
|
+
"handle": "alice.test",
|
|
15
|
+
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
16
|
+
"labels": Array [
|
|
17
|
+
Object {
|
|
18
|
+
"cid": "cids(2)",
|
|
19
|
+
"cts": "1970-01-01T00:00:00.000Z",
|
|
20
|
+
"src": "user(0)",
|
|
21
|
+
"uri": "record(3)",
|
|
22
|
+
"val": "self-label-a",
|
|
23
|
+
},
|
|
24
|
+
Object {
|
|
25
|
+
"cid": "cids(2)",
|
|
26
|
+
"cts": "1970-01-01T00:00:00.000Z",
|
|
27
|
+
"src": "user(0)",
|
|
28
|
+
"uri": "record(3)",
|
|
29
|
+
"val": "self-label-b",
|
|
30
|
+
},
|
|
31
|
+
],
|
|
32
|
+
"viewer": Object {
|
|
33
|
+
"blockedBy": false,
|
|
34
|
+
"followedBy": "record(2)",
|
|
35
|
+
"following": "record(1)",
|
|
36
|
+
"muted": false,
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
40
|
+
"labels": Array [],
|
|
41
|
+
"likeCount": 1,
|
|
42
|
+
"uri": "record(0)",
|
|
43
|
+
"viewer": Object {
|
|
44
|
+
"like": "record(4)",
|
|
45
|
+
},
|
|
46
|
+
},
|
|
47
|
+
Object {
|
|
48
|
+
"$type": "app.bsky.labeler.defs#labelerView",
|
|
49
|
+
"cid": "cids(3)",
|
|
50
|
+
"creator": Object {
|
|
51
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)@jpeg",
|
|
52
|
+
"description": "hi im bob label_me",
|
|
53
|
+
"did": "user(2)",
|
|
54
|
+
"displayName": "bobby",
|
|
55
|
+
"handle": "bob.test",
|
|
56
|
+
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
57
|
+
"labels": Array [],
|
|
58
|
+
"viewer": Object {
|
|
59
|
+
"blockedBy": false,
|
|
60
|
+
"muted": false,
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
64
|
+
"labels": Array [],
|
|
65
|
+
"likeCount": 0,
|
|
66
|
+
"uri": "record(5)",
|
|
67
|
+
"viewer": Object {},
|
|
68
|
+
},
|
|
69
|
+
],
|
|
70
|
+
}
|
|
71
|
+
`;
|
|
72
|
+
|
|
73
|
+
exports[`labeler service views fetches labelers detailed 1`] = `
|
|
74
|
+
Object {
|
|
75
|
+
"views": Array [
|
|
76
|
+
Object {
|
|
77
|
+
"$type": "app.bsky.labeler.defs#labelerViewDetailed",
|
|
78
|
+
"cid": "cids(0)",
|
|
79
|
+
"creator": Object {
|
|
80
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
|
|
81
|
+
"description": "its me!",
|
|
82
|
+
"did": "user(0)",
|
|
83
|
+
"displayName": "ali",
|
|
84
|
+
"handle": "alice.test",
|
|
85
|
+
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
86
|
+
"labels": Array [
|
|
87
|
+
Object {
|
|
88
|
+
"cid": "cids(2)",
|
|
89
|
+
"cts": "1970-01-01T00:00:00.000Z",
|
|
90
|
+
"src": "user(0)",
|
|
91
|
+
"uri": "record(3)",
|
|
92
|
+
"val": "self-label-a",
|
|
93
|
+
},
|
|
94
|
+
Object {
|
|
95
|
+
"cid": "cids(2)",
|
|
96
|
+
"cts": "1970-01-01T00:00:00.000Z",
|
|
97
|
+
"src": "user(0)",
|
|
98
|
+
"uri": "record(3)",
|
|
99
|
+
"val": "self-label-b",
|
|
100
|
+
},
|
|
101
|
+
],
|
|
102
|
+
"viewer": Object {
|
|
103
|
+
"blockedBy": false,
|
|
104
|
+
"followedBy": "record(2)",
|
|
105
|
+
"following": "record(1)",
|
|
106
|
+
"muted": false,
|
|
107
|
+
},
|
|
108
|
+
},
|
|
109
|
+
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
110
|
+
"labels": Array [],
|
|
111
|
+
"likeCount": 1,
|
|
112
|
+
"policies": Object {
|
|
113
|
+
"labelValues": Array [
|
|
114
|
+
"spam",
|
|
115
|
+
"!hide",
|
|
116
|
+
"scam",
|
|
117
|
+
"impersonation",
|
|
118
|
+
],
|
|
119
|
+
},
|
|
120
|
+
"uri": "record(0)",
|
|
121
|
+
"viewer": Object {
|
|
122
|
+
"like": "record(4)",
|
|
123
|
+
},
|
|
124
|
+
},
|
|
125
|
+
Object {
|
|
126
|
+
"$type": "app.bsky.labeler.defs#labelerViewDetailed",
|
|
127
|
+
"cid": "cids(3)",
|
|
128
|
+
"creator": Object {
|
|
129
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)@jpeg",
|
|
130
|
+
"description": "hi im bob label_me",
|
|
131
|
+
"did": "user(2)",
|
|
132
|
+
"displayName": "bobby",
|
|
133
|
+
"handle": "bob.test",
|
|
134
|
+
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
135
|
+
"labels": Array [],
|
|
136
|
+
"viewer": Object {
|
|
137
|
+
"blockedBy": false,
|
|
138
|
+
"muted": false,
|
|
139
|
+
},
|
|
140
|
+
},
|
|
141
|
+
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
142
|
+
"labels": Array [],
|
|
143
|
+
"likeCount": 0,
|
|
144
|
+
"policies": Object {
|
|
145
|
+
"labelValues": Array [
|
|
146
|
+
"nudity",
|
|
147
|
+
"sexual",
|
|
148
|
+
"porn",
|
|
149
|
+
],
|
|
150
|
+
},
|
|
151
|
+
"uri": "record(5)",
|
|
152
|
+
"viewer": Object {},
|
|
153
|
+
},
|
|
154
|
+
],
|
|
155
|
+
}
|
|
156
|
+
`;
|
|
@@ -13,7 +13,6 @@ Array [
|
|
|
13
13
|
Object {
|
|
14
14
|
"cid": "cids(2)",
|
|
15
15
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
16
|
-
"neg": false,
|
|
17
16
|
"src": "user(0)",
|
|
18
17
|
"uri": "record(3)",
|
|
19
18
|
"val": "self-label-a",
|
|
@@ -21,7 +20,6 @@ Array [
|
|
|
21
20
|
Object {
|
|
22
21
|
"cid": "cids(2)",
|
|
23
22
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
24
|
-
"neg": false,
|
|
25
23
|
"src": "user(0)",
|
|
26
24
|
"uri": "record(3)",
|
|
27
25
|
"val": "self-label-b",
|
|
@@ -89,7 +87,6 @@ Array [
|
|
|
89
87
|
Object {
|
|
90
88
|
"cid": "cids(4)",
|
|
91
89
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
92
|
-
"neg": false,
|
|
93
90
|
"src": "did:example:labeler",
|
|
94
91
|
"uri": "record(5)",
|
|
95
92
|
"val": "test-label",
|
|
@@ -97,7 +94,6 @@ Array [
|
|
|
97
94
|
Object {
|
|
98
95
|
"cid": "cids(4)",
|
|
99
96
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
100
|
-
"neg": false,
|
|
101
97
|
"src": "did:example:labeler",
|
|
102
98
|
"uri": "record(5)",
|
|
103
99
|
"val": "test-label-2",
|
|
@@ -151,7 +147,6 @@ Array [
|
|
|
151
147
|
Object {
|
|
152
148
|
"cid": "cids(2)",
|
|
153
149
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
154
|
-
"neg": false,
|
|
155
150
|
"src": "user(0)",
|
|
156
151
|
"uri": "record(3)",
|
|
157
152
|
"val": "self-label-a",
|
|
@@ -159,7 +154,6 @@ Array [
|
|
|
159
154
|
Object {
|
|
160
155
|
"cid": "cids(2)",
|
|
161
156
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
162
|
-
"neg": false,
|
|
163
157
|
"src": "user(0)",
|
|
164
158
|
"uri": "record(3)",
|
|
165
159
|
"val": "self-label-b",
|
|
@@ -220,7 +214,6 @@ Array [
|
|
|
220
214
|
Object {
|
|
221
215
|
"cid": "cids(4)",
|
|
222
216
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
223
|
-
"neg": false,
|
|
224
217
|
"src": "did:example:labeler",
|
|
225
218
|
"uri": "record(5)",
|
|
226
219
|
"val": "test-label",
|
|
@@ -228,7 +221,6 @@ Array [
|
|
|
228
221
|
Object {
|
|
229
222
|
"cid": "cids(4)",
|
|
230
223
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
231
|
-
"neg": false,
|
|
232
224
|
"src": "did:example:labeler",
|
|
233
225
|
"uri": "record(5)",
|
|
234
226
|
"val": "test-label-2",
|
|
@@ -283,7 +275,6 @@ Array [
|
|
|
283
275
|
Object {
|
|
284
276
|
"cid": "cids(2)",
|
|
285
277
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
286
|
-
"neg": false,
|
|
287
278
|
"src": "user(0)",
|
|
288
279
|
"uri": "record(3)",
|
|
289
280
|
"val": "self-label-a",
|
|
@@ -291,7 +282,6 @@ Array [
|
|
|
291
282
|
Object {
|
|
292
283
|
"cid": "cids(2)",
|
|
293
284
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
294
|
-
"neg": false,
|
|
295
285
|
"src": "user(0)",
|
|
296
286
|
"uri": "record(3)",
|
|
297
287
|
"val": "self-label-b",
|
|
@@ -331,7 +321,6 @@ Array [
|
|
|
331
321
|
Object {
|
|
332
322
|
"cid": "cids(2)",
|
|
333
323
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
334
|
-
"neg": false,
|
|
335
324
|
"src": "user(0)",
|
|
336
325
|
"uri": "record(3)",
|
|
337
326
|
"val": "self-label-a",
|
|
@@ -339,7 +328,6 @@ Array [
|
|
|
339
328
|
Object {
|
|
340
329
|
"cid": "cids(2)",
|
|
341
330
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
342
|
-
"neg": false,
|
|
343
331
|
"src": "user(0)",
|
|
344
332
|
"uri": "record(3)",
|
|
345
333
|
"val": "self-label-b",
|
|
@@ -381,7 +369,6 @@ Array [
|
|
|
381
369
|
Object {
|
|
382
370
|
"cid": "cids(2)",
|
|
383
371
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
384
|
-
"neg": false,
|
|
385
372
|
"src": "user(0)",
|
|
386
373
|
"uri": "record(3)",
|
|
387
374
|
"val": "self-label-a",
|
|
@@ -389,7 +376,6 @@ Array [
|
|
|
389
376
|
Object {
|
|
390
377
|
"cid": "cids(2)",
|
|
391
378
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
392
|
-
"neg": false,
|
|
393
379
|
"src": "user(0)",
|
|
394
380
|
"uri": "record(3)",
|
|
395
381
|
"val": "self-label-b",
|
|
@@ -515,7 +501,6 @@ Array [
|
|
|
515
501
|
Object {
|
|
516
502
|
"cid": "cids(6)",
|
|
517
503
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
518
|
-
"neg": false,
|
|
519
504
|
"src": "did:example:labeler",
|
|
520
505
|
"uri": "record(8)",
|
|
521
506
|
"val": "test-label",
|
|
@@ -582,7 +567,6 @@ Array [
|
|
|
582
567
|
Object {
|
|
583
568
|
"cid": "cids(2)",
|
|
584
569
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
585
|
-
"neg": false,
|
|
586
570
|
"src": "user(0)",
|
|
587
571
|
"uri": "record(3)",
|
|
588
572
|
"val": "self-label-a",
|
|
@@ -590,7 +574,6 @@ Array [
|
|
|
590
574
|
Object {
|
|
591
575
|
"cid": "cids(2)",
|
|
592
576
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
593
|
-
"neg": false,
|
|
594
577
|
"src": "user(0)",
|
|
595
578
|
"uri": "record(3)",
|
|
596
579
|
"val": "self-label-b",
|
|
@@ -664,7 +647,6 @@ Array [
|
|
|
664
647
|
Object {
|
|
665
648
|
"cid": "cids(2)",
|
|
666
649
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
667
|
-
"neg": false,
|
|
668
650
|
"src": "user(0)",
|
|
669
651
|
"uri": "record(3)",
|
|
670
652
|
"val": "self-label-a",
|
|
@@ -672,7 +654,6 @@ Array [
|
|
|
672
654
|
Object {
|
|
673
655
|
"cid": "cids(2)",
|
|
674
656
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
675
|
-
"neg": false,
|
|
676
657
|
"src": "user(0)",
|
|
677
658
|
"uri": "record(3)",
|
|
678
659
|
"val": "self-label-b",
|
|
@@ -691,7 +672,6 @@ Array [
|
|
|
691
672
|
Object {
|
|
692
673
|
"cid": "cids(12)",
|
|
693
674
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
694
|
-
"neg": false,
|
|
695
675
|
"src": "user(0)",
|
|
696
676
|
"uri": "record(14)",
|
|
697
677
|
"val": "self-label",
|
|
@@ -11,7 +11,6 @@ Object {
|
|
|
11
11
|
Object {
|
|
12
12
|
"cid": "cids(2)",
|
|
13
13
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
14
|
-
"neg": false,
|
|
15
14
|
"src": "user(0)",
|
|
16
15
|
"uri": "record(1)",
|
|
17
16
|
"val": "self-label-a",
|
|
@@ -19,7 +18,6 @@ Object {
|
|
|
19
18
|
Object {
|
|
20
19
|
"cid": "cids(2)",
|
|
21
20
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
22
|
-
"neg": false,
|
|
23
21
|
"src": "user(0)",
|
|
24
22
|
"uri": "record(1)",
|
|
25
23
|
"val": "self-label-b",
|
|
@@ -47,7 +45,6 @@ Object {
|
|
|
47
45
|
Object {
|
|
48
46
|
"cid": "cids(2)",
|
|
49
47
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
50
|
-
"neg": false,
|
|
51
48
|
"src": "user(0)",
|
|
52
49
|
"uri": "record(1)",
|
|
53
50
|
"val": "self-label-a",
|
|
@@ -55,7 +52,6 @@ Object {
|
|
|
55
52
|
Object {
|
|
56
53
|
"cid": "cids(2)",
|
|
57
54
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
58
|
-
"neg": false,
|
|
59
55
|
"src": "user(0)",
|
|
60
56
|
"uri": "record(1)",
|
|
61
57
|
"val": "self-label-b",
|
|
@@ -68,6 +64,7 @@ Object {
|
|
|
68
64
|
},
|
|
69
65
|
"description": "new descript",
|
|
70
66
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
67
|
+
"labels": Array [],
|
|
71
68
|
"name": "updated alice mutes",
|
|
72
69
|
"purpose": "app.bsky.graph.defs#modlist",
|
|
73
70
|
"uri": "record(2)",
|
|
@@ -111,7 +108,6 @@ Object {
|
|
|
111
108
|
Object {
|
|
112
109
|
"cid": "cids(2)",
|
|
113
110
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
114
|
-
"neg": false,
|
|
115
111
|
"src": "user(0)",
|
|
116
112
|
"uri": "record(2)",
|
|
117
113
|
"val": "self-label-a",
|
|
@@ -119,7 +115,6 @@ Object {
|
|
|
119
115
|
Object {
|
|
120
116
|
"cid": "cids(2)",
|
|
121
117
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
122
|
-
"neg": false,
|
|
123
118
|
"src": "user(0)",
|
|
124
119
|
"uri": "record(2)",
|
|
125
120
|
"val": "self-label-b",
|
|
@@ -165,6 +160,7 @@ Object {
|
|
|
165
160
|
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
|
|
166
161
|
"cid": "cids(4)",
|
|
167
162
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
163
|
+
"labels": Array [],
|
|
168
164
|
"name": "alice mutes",
|
|
169
165
|
"purpose": "app.bsky.graph.defs#modlist",
|
|
170
166
|
"uri": "record(6)",
|
|
@@ -216,6 +212,7 @@ Object {
|
|
|
216
212
|
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
|
|
217
213
|
"cid": "cids(4)",
|
|
218
214
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
215
|
+
"labels": Array [],
|
|
219
216
|
"name": "alice mutes",
|
|
220
217
|
"purpose": "app.bsky.graph.defs#modlist",
|
|
221
218
|
"uri": "record(6)",
|
|
@@ -241,7 +238,6 @@ Object {
|
|
|
241
238
|
Object {
|
|
242
239
|
"cid": "cids(5)",
|
|
243
240
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
244
|
-
"neg": false,
|
|
245
241
|
"src": "did:example:labeler",
|
|
246
242
|
"uri": "record(9)",
|
|
247
243
|
"val": "test-label",
|
|
@@ -249,7 +245,6 @@ Object {
|
|
|
249
245
|
Object {
|
|
250
246
|
"cid": "cids(5)",
|
|
251
247
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
252
|
-
"neg": false,
|
|
253
248
|
"src": "did:example:labeler",
|
|
254
249
|
"uri": "record(9)",
|
|
255
250
|
"val": "test-label-2",
|
|
@@ -314,7 +309,6 @@ Object {
|
|
|
314
309
|
Object {
|
|
315
310
|
"cid": "cids(2)",
|
|
316
311
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
317
|
-
"neg": false,
|
|
318
312
|
"src": "user(0)",
|
|
319
313
|
"uri": "record(2)",
|
|
320
314
|
"val": "self-label-a",
|
|
@@ -322,7 +316,6 @@ Object {
|
|
|
322
316
|
Object {
|
|
323
317
|
"cid": "cids(2)",
|
|
324
318
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
325
|
-
"neg": false,
|
|
326
319
|
"src": "user(0)",
|
|
327
320
|
"uri": "record(2)",
|
|
328
321
|
"val": "self-label-b",
|
|
@@ -336,6 +329,7 @@ Object {
|
|
|
336
329
|
},
|
|
337
330
|
"description": "blah blah",
|
|
338
331
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
332
|
+
"labels": Array [],
|
|
339
333
|
"name": "new list",
|
|
340
334
|
"purpose": "app.bsky.graph.defs#modlist",
|
|
341
335
|
"uri": "record(0)",
|
|
@@ -357,7 +351,6 @@ Object {
|
|
|
357
351
|
Object {
|
|
358
352
|
"cid": "cids(2)",
|
|
359
353
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
360
|
-
"neg": false,
|
|
361
354
|
"src": "user(0)",
|
|
362
355
|
"uri": "record(2)",
|
|
363
356
|
"val": "self-label-a",
|
|
@@ -365,7 +358,6 @@ Object {
|
|
|
365
358
|
Object {
|
|
366
359
|
"cid": "cids(2)",
|
|
367
360
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
368
|
-
"neg": false,
|
|
369
361
|
"src": "user(0)",
|
|
370
362
|
"uri": "record(2)",
|
|
371
363
|
"val": "self-label-b",
|
|
@@ -379,6 +371,7 @@ Object {
|
|
|
379
371
|
},
|
|
380
372
|
"description": "big list of mutes",
|
|
381
373
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
374
|
+
"labels": Array [],
|
|
382
375
|
"name": "alice mutes",
|
|
383
376
|
"purpose": "app.bsky.graph.defs#modlist",
|
|
384
377
|
"uri": "record(3)",
|
|
@@ -407,7 +400,6 @@ Object {
|
|
|
407
400
|
Object {
|
|
408
401
|
"cid": "cids(2)",
|
|
409
402
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
410
|
-
"neg": false,
|
|
411
403
|
"src": "user(0)",
|
|
412
404
|
"uri": "record(2)",
|
|
413
405
|
"val": "self-label-a",
|
|
@@ -415,7 +407,6 @@ Object {
|
|
|
415
407
|
Object {
|
|
416
408
|
"cid": "cids(2)",
|
|
417
409
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
418
|
-
"neg": false,
|
|
419
410
|
"src": "user(0)",
|
|
420
411
|
"uri": "record(2)",
|
|
421
412
|
"val": "self-label-b",
|
|
@@ -429,6 +420,7 @@ Object {
|
|
|
429
420
|
},
|
|
430
421
|
"description": "blah blah",
|
|
431
422
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
423
|
+
"labels": Array [],
|
|
432
424
|
"name": "new list",
|
|
433
425
|
"purpose": "app.bsky.graph.defs#modlist",
|
|
434
426
|
"uri": "record(0)",
|
|
@@ -450,7 +442,6 @@ Object {
|
|
|
450
442
|
Object {
|
|
451
443
|
"cid": "cids(2)",
|
|
452
444
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
453
|
-
"neg": false,
|
|
454
445
|
"src": "user(0)",
|
|
455
446
|
"uri": "record(2)",
|
|
456
447
|
"val": "self-label-a",
|
|
@@ -458,7 +449,6 @@ Object {
|
|
|
458
449
|
Object {
|
|
459
450
|
"cid": "cids(2)",
|
|
460
451
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
461
|
-
"neg": false,
|
|
462
452
|
"src": "user(0)",
|
|
463
453
|
"uri": "record(2)",
|
|
464
454
|
"val": "self-label-b",
|
|
@@ -472,6 +462,7 @@ Object {
|
|
|
472
462
|
},
|
|
473
463
|
"description": "big list of mutes",
|
|
474
464
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
465
|
+
"labels": Array [],
|
|
475
466
|
"name": "alice mutes",
|
|
476
467
|
"purpose": "app.bsky.graph.defs#modlist",
|
|
477
468
|
"uri": "record(3)",
|
|
@@ -512,6 +503,7 @@ Object {
|
|
|
512
503
|
"avatar": "https://bsky.public.url/img/avatar/plain/user(0)/cids(1)@jpeg",
|
|
513
504
|
"cid": "cids(0)",
|
|
514
505
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
506
|
+
"labels": Array [],
|
|
515
507
|
"name": "alice mutes",
|
|
516
508
|
"purpose": "app.bsky.graph.defs#modlist",
|
|
517
509
|
"uri": "record(0)",
|
|
@@ -540,6 +532,7 @@ Object {
|
|
|
540
532
|
"avatar": "https://bsky.public.url/img/avatar/plain/user(0)/cids(1)@jpeg",
|
|
541
533
|
"cid": "cids(0)",
|
|
542
534
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
535
|
+
"labels": Array [],
|
|
543
536
|
"name": "alice mutes",
|
|
544
537
|
"purpose": "app.bsky.graph.defs#modlist",
|
|
545
538
|
"uri": "record(0)",
|
|
@@ -566,7 +559,6 @@ Object {
|
|
|
566
559
|
Object {
|
|
567
560
|
"cid": "cids(2)",
|
|
568
561
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
569
|
-
"neg": false,
|
|
570
562
|
"src": "user(1)",
|
|
571
563
|
"uri": "record(2)",
|
|
572
564
|
"val": "self-label-a",
|
|
@@ -574,7 +566,6 @@ Object {
|
|
|
574
566
|
Object {
|
|
575
567
|
"cid": "cids(2)",
|
|
576
568
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
577
|
-
"neg": false,
|
|
578
569
|
"src": "user(1)",
|
|
579
570
|
"uri": "record(2)",
|
|
580
571
|
"val": "self-label-b",
|
|
@@ -588,6 +579,7 @@ Object {
|
|
|
588
579
|
},
|
|
589
580
|
"description": "big list of mutes",
|
|
590
581
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
582
|
+
"labels": Array [],
|
|
591
583
|
"name": "alice mutes",
|
|
592
584
|
"purpose": "app.bsky.graph.defs#modlist",
|
|
593
585
|
"uri": "record(0)",
|
|
@@ -111,7 +111,6 @@ Object {
|
|
|
111
111
|
Object {
|
|
112
112
|
"cid": "cids(2)",
|
|
113
113
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
114
|
-
"neg": false,
|
|
115
114
|
"src": "user(0)",
|
|
116
115
|
"uri": "record(1)",
|
|
117
116
|
"val": "self-label-a",
|
|
@@ -119,7 +118,6 @@ Object {
|
|
|
119
118
|
Object {
|
|
120
119
|
"cid": "cids(2)",
|
|
121
120
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
122
|
-
"neg": false,
|
|
123
121
|
"src": "user(0)",
|
|
124
122
|
"uri": "record(1)",
|
|
125
123
|
"val": "self-label-b",
|
|
@@ -216,7 +214,6 @@ Object {
|
|
|
216
214
|
Object {
|
|
217
215
|
"cid": "cids(4)",
|
|
218
216
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
219
|
-
"neg": false,
|
|
220
217
|
"src": "did:example:labeler",
|
|
221
218
|
"uri": "record(5)",
|
|
222
219
|
"val": "test-label",
|
|
@@ -224,7 +221,6 @@ Object {
|
|
|
224
221
|
Object {
|
|
225
222
|
"cid": "cids(4)",
|
|
226
223
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
227
|
-
"neg": false,
|
|
228
224
|
"src": "did:example:labeler",
|
|
229
225
|
"uri": "record(5)",
|
|
230
226
|
"val": "test-label-2",
|