@atproto/bsky 0.0.75 → 0.0.77
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 +18 -0
- package/dist/api/app/bsky/actor/getProfiles.d.ts.map +1 -1
- package/dist/api/app/bsky/actor/getProfiles.js +9 -1
- package/dist/api/app/bsky/actor/getProfiles.js.map +1 -1
- package/dist/api/app/bsky/actor/searchActorsTypeahead.js +10 -2
- package/dist/api/app/bsky/actor/searchActorsTypeahead.js.map +1 -1
- package/dist/api/app/bsky/feed/getActorLikes.js +2 -2
- package/dist/api/app/bsky/feed/getActorLikes.js.map +1 -1
- package/dist/api/app/bsky/feed/getFeed.d.ts.map +1 -1
- package/dist/api/app/bsky/feed/getFeed.js +8 -1
- package/dist/api/app/bsky/feed/getFeed.js.map +1 -1
- package/dist/api/app/bsky/feed/getLikes.js +6 -6
- package/dist/api/app/bsky/feed/getLikes.js.map +1 -1
- package/dist/api/app/bsky/feed/getPosts.d.ts.map +1 -1
- package/dist/api/app/bsky/feed/getPosts.js +12 -5
- package/dist/api/app/bsky/feed/getPosts.js.map +1 -1
- package/dist/api/app/bsky/feed/getQuotes.d.ts +4 -0
- package/dist/api/app/bsky/feed/getQuotes.d.ts.map +1 -0
- package/dist/api/app/bsky/feed/getQuotes.js +67 -0
- package/dist/api/app/bsky/feed/getQuotes.js.map +1 -0
- package/dist/api/app/bsky/feed/getRepostedBy.js +6 -6
- package/dist/api/app/bsky/feed/getRepostedBy.js.map +1 -1
- package/dist/api/app/bsky/feed/searchPosts.js +4 -4
- package/dist/api/app/bsky/feed/searchPosts.js.map +1 -1
- package/dist/api/app/bsky/graph/getFollowers.js +8 -8
- package/dist/api/app/bsky/graph/getFollowers.js.map +1 -1
- package/dist/api/app/bsky/graph/getList.d.ts.map +1 -1
- package/dist/api/app/bsky/graph/getList.js +32 -2
- package/dist/api/app/bsky/graph/getList.js.map +1 -1
- package/dist/api/app/bsky/notification/listNotifications.d.ts.map +1 -1
- package/dist/api/app/bsky/notification/listNotifications.js +29 -8
- package/dist/api/app/bsky/notification/listNotifications.js.map +1 -1
- package/dist/api/index.d.ts.map +1 -1
- package/dist/api/index.js +2 -0
- package/dist/api/index.js.map +1 -1
- package/dist/auth-verifier.d.ts +8 -3
- package/dist/auth-verifier.d.ts.map +1 -1
- package/dist/auth-verifier.js +43 -29
- package/dist/auth-verifier.js.map +1 -1
- package/dist/data-plane/server/db/database-schema.d.ts +4 -2
- package/dist/data-plane/server/db/database-schema.d.ts.map +1 -1
- package/dist/data-plane/server/db/migrations/20240723T220700077Z-quotes-post-aggs.d.ts +4 -0
- package/dist/data-plane/server/db/migrations/20240723T220700077Z-quotes-post-aggs.d.ts.map +1 -0
- package/dist/data-plane/server/db/migrations/20240723T220700077Z-quotes-post-aggs.js +15 -0
- package/dist/data-plane/server/db/migrations/20240723T220700077Z-quotes-post-aggs.js.map +1 -0
- package/dist/data-plane/server/db/migrations/20240723T220703655Z-quotes.d.ts +4 -0
- package/dist/data-plane/server/db/migrations/20240723T220703655Z-quotes.d.ts.map +1 -0
- package/dist/data-plane/server/db/migrations/20240723T220703655Z-quotes.js +30 -0
- package/dist/data-plane/server/db/migrations/20240723T220703655Z-quotes.js.map +1 -0
- package/dist/data-plane/server/db/migrations/20240801T193939827Z-post-gate.d.ts +4 -0
- package/dist/data-plane/server/db/migrations/20240801T193939827Z-post-gate.d.ts.map +1 -0
- package/dist/data-plane/server/db/migrations/20240801T193939827Z-post-gate.js +20 -0
- package/dist/data-plane/server/db/migrations/20240801T193939827Z-post-gate.js.map +1 -0
- package/dist/data-plane/server/db/migrations/20240808T224251220Z-post-gate-flags.d.ts +4 -0
- package/dist/data-plane/server/db/migrations/20240808T224251220Z-post-gate-flags.d.ts.map +1 -0
- package/dist/data-plane/server/db/migrations/20240808T224251220Z-post-gate-flags.js +28 -0
- package/dist/data-plane/server/db/migrations/20240808T224251220Z-post-gate-flags.js.map +1 -0
- package/dist/data-plane/server/db/migrations/index.d.ts +4 -0
- package/dist/data-plane/server/db/migrations/index.d.ts.map +1 -1
- package/dist/data-plane/server/db/migrations/index.js +5 -1
- package/dist/data-plane/server/db/migrations/index.js.map +1 -1
- package/dist/data-plane/server/db/tables/post-agg.d.ts +1 -0
- package/dist/data-plane/server/db/tables/post-agg.d.ts.map +1 -1
- package/dist/data-plane/server/db/tables/post-gate.d.ts +14 -0
- package/dist/data-plane/server/db/tables/post-gate.d.ts.map +1 -0
- package/dist/data-plane/server/db/tables/post-gate.js +4 -0
- package/dist/data-plane/server/db/tables/post-gate.js.map +1 -0
- package/dist/data-plane/server/db/tables/post.d.ts +3 -0
- package/dist/data-plane/server/db/tables/post.d.ts.map +1 -1
- package/dist/data-plane/server/db/tables/quote.d.ts +16 -0
- package/dist/data-plane/server/db/tables/quote.d.ts.map +1 -0
- package/dist/data-plane/server/db/tables/quote.js +4 -0
- package/dist/data-plane/server/db/tables/quote.js.map +1 -0
- package/dist/data-plane/server/indexing/index.d.ts +2 -0
- package/dist/data-plane/server/indexing/index.d.ts.map +1 -1
- package/dist/data-plane/server/indexing/index.js +6 -0
- package/dist/data-plane/server/indexing/index.js.map +1 -1
- package/dist/data-plane/server/indexing/plugins/post-gate.d.ts +10 -0
- package/dist/data-plane/server/indexing/plugins/post-gate.d.ts.map +1 -0
- package/dist/data-plane/server/indexing/plugins/post-gate.js +101 -0
- package/dist/data-plane/server/indexing/plugins/post-gate.js.map +1 -0
- package/dist/data-plane/server/indexing/plugins/post.d.ts +2 -0
- package/dist/data-plane/server/indexing/plugins/post.d.ts.map +1 -1
- package/dist/data-plane/server/indexing/plugins/post.js +122 -15
- package/dist/data-plane/server/indexing/plugins/post.js.map +1 -1
- package/dist/data-plane/server/indexing/plugins/thread-gate.d.ts.map +1 -1
- package/dist/data-plane/server/indexing/plugins/thread-gate.js +12 -0
- package/dist/data-plane/server/indexing/plugins/thread-gate.js.map +1 -1
- package/dist/data-plane/server/routes/index.d.ts.map +1 -1
- package/dist/data-plane/server/routes/index.js +2 -0
- package/dist/data-plane/server/routes/index.js.map +1 -1
- package/dist/data-plane/server/routes/interactions.d.ts.map +1 -1
- package/dist/data-plane/server/routes/interactions.js +2 -1
- package/dist/data-plane/server/routes/interactions.js.map +1 -1
- package/dist/data-plane/server/routes/quotes.d.ts +6 -0
- package/dist/data-plane/server/routes/quotes.d.ts.map +1 -0
- package/dist/data-plane/server/routes/quotes.js +27 -0
- package/dist/data-plane/server/routes/quotes.js.map +1 -0
- package/dist/data-plane/server/routes/records.d.ts.map +1 -1
- package/dist/data-plane/server/routes/records.js +11 -1
- package/dist/data-plane/server/routes/records.js.map +1 -1
- package/dist/data-plane/server/util.d.ts +6 -7
- package/dist/data-plane/server/util.d.ts.map +1 -1
- package/dist/data-plane/server/util.js +1 -9
- package/dist/data-plane/server/util.js.map +1 -1
- package/dist/hydration/feed.d.ts +10 -0
- package/dist/hydration/feed.d.ts.map +1 -1
- package/dist/hydration/feed.js +31 -7
- package/dist/hydration/feed.js.map +1 -1
- package/dist/hydration/hydrator.d.ts +5 -2
- package/dist/hydration/hydrator.d.ts.map +1 -1
- package/dist/hydration/hydrator.js +102 -38
- package/dist/hydration/hydrator.js.map +1 -1
- package/dist/hydration/util.d.ts +0 -1
- package/dist/hydration/util.d.ts.map +1 -1
- package/dist/hydration/util.js +1 -5
- package/dist/hydration/util.js.map +1 -1
- package/dist/lexicon/index.d.ts +2 -0
- package/dist/lexicon/index.d.ts.map +1 -1
- package/dist/lexicon/index.js +4 -0
- package/dist/lexicon/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +141 -0
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +142 -0
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/app/bsky/embed/record.d.ts +8 -1
- package/dist/lexicon/types/app/bsky/embed/record.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/embed/record.js +11 -1
- package/dist/lexicon/types/app/bsky/embed/record.js.map +1 -1
- package/dist/lexicon/types/app/bsky/feed/defs.d.ts +2 -0
- package/dist/lexicon/types/app/bsky/feed/defs.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/feed/defs.js.map +1 -1
- package/dist/lexicon/types/app/bsky/feed/getQuotes.d.ts +44 -0
- package/dist/lexicon/types/app/bsky/feed/getQuotes.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/feed/getQuotes.js +3 -0
- package/dist/lexicon/types/app/bsky/feed/getQuotes.js.map +1 -0
- package/dist/lexicon/types/app/bsky/feed/postgate.d.ts +25 -0
- package/dist/lexicon/types/app/bsky/feed/postgate.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/feed/postgate.js +27 -0
- package/dist/lexicon/types/app/bsky/feed/postgate.js.map +1 -0
- package/dist/lexicon/types/app/bsky/feed/threadgate.d.ts +2 -0
- package/dist/lexicon/types/app/bsky/feed/threadgate.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/feed/threadgate.js.map +1 -1
- package/dist/proto/bsky_connect.d.ts +21 -1
- package/dist/proto/bsky_connect.d.ts.map +1 -1
- package/dist/proto/bsky_connect.js +20 -0
- package/dist/proto/bsky_connect.js.map +1 -1
- package/dist/proto/bsky_pb.d.ts +96 -0
- package/dist/proto/bsky_pb.d.ts.map +1 -1
- package/dist/proto/bsky_pb.js +306 -4
- package/dist/proto/bsky_pb.js.map +1 -1
- package/dist/util/uris.d.ts +12 -0
- package/dist/util/uris.d.ts.map +1 -0
- package/dist/util/uris.js +34 -0
- package/dist/util/uris.js.map +1 -0
- package/dist/views/index.d.ts +8 -2
- package/dist/views/index.d.ts.map +1 -1
- package/dist/views/index.js +83 -39
- package/dist/views/index.js.map +1 -1
- package/dist/views/types.d.ts +1 -1
- package/dist/views/types.d.ts.map +1 -1
- package/dist/views/types.js.map +1 -1
- package/dist/views/util.d.ts +11 -1
- package/dist/views/util.d.ts.map +1 -1
- package/dist/views/util.js +19 -8
- package/dist/views/util.js.map +1 -1
- package/package.json +6 -6
- package/proto/bsky.proto +33 -0
- package/src/api/app/bsky/actor/getProfiles.ts +10 -1
- package/src/api/app/bsky/actor/searchActorsTypeahead.ts +9 -4
- package/src/api/app/bsky/feed/getActorLikes.ts +1 -1
- package/src/api/app/bsky/feed/getFeed.ts +12 -1
- package/src/api/app/bsky/feed/getLikes.ts +1 -1
- package/src/api/app/bsky/feed/getPosts.ts +10 -2
- package/src/api/app/bsky/feed/getQuotes.ts +105 -0
- package/src/api/app/bsky/feed/getRepostedBy.ts +1 -1
- package/src/api/app/bsky/feed/searchPosts.ts +1 -1
- package/src/api/app/bsky/graph/getFollowers.ts +1 -1
- package/src/api/app/bsky/graph/getList.ts +47 -4
- package/src/api/app/bsky/notification/listNotifications.ts +32 -6
- package/src/api/index.ts +2 -0
- package/src/auth-verifier.ts +78 -51
- package/src/data-plane/server/db/database-schema.ts +7 -3
- package/src/data-plane/server/db/migrations/20240723T220700077Z-quotes-post-aggs.ts +12 -0
- package/src/data-plane/server/db/migrations/20240723T220703655Z-quotes.ts +28 -0
- package/src/data-plane/server/db/migrations/20240801T193939827Z-post-gate.ts +17 -0
- package/src/data-plane/server/db/migrations/20240808T224251220Z-post-gate-flags.ts +25 -0
- package/src/data-plane/server/db/migrations/index.ts +4 -0
- package/src/data-plane/server/db/tables/post-agg.ts +1 -0
- package/src/data-plane/server/db/tables/post-gate.ts +12 -0
- package/src/data-plane/server/db/tables/post.ts +3 -0
- package/src/data-plane/server/db/tables/quote.ts +15 -0
- package/src/data-plane/server/indexing/index.ts +7 -0
- package/src/data-plane/server/indexing/plugins/post-gate.ts +104 -0
- package/src/data-plane/server/indexing/plugins/post.ts +151 -16
- package/src/data-plane/server/indexing/plugins/thread-gate.ts +12 -0
- package/src/data-plane/server/routes/index.ts +2 -0
- package/src/data-plane/server/routes/interactions.ts +2 -1
- package/src/data-plane/server/routes/quotes.ts +32 -0
- package/src/data-plane/server/routes/records.ts +11 -1
- package/src/data-plane/server/util.ts +0 -8
- package/src/hydration/feed.ts +58 -12
- package/src/hydration/hydrator.ts +112 -24
- package/src/hydration/util.ts +0 -4
- package/src/lexicon/index.ts +12 -0
- package/src/lexicon/lexicons.ts +145 -0
- package/src/lexicon/types/app/bsky/embed/record.ts +19 -0
- package/src/lexicon/types/app/bsky/feed/defs.ts +2 -0
- package/src/lexicon/types/app/bsky/feed/getQuotes.ts +54 -0
- package/src/lexicon/types/app/bsky/feed/postgate.ts +47 -0
- package/src/lexicon/types/app/bsky/feed/threadgate.ts +2 -0
- package/src/proto/bsky_connect.ts +24 -0
- package/src/proto/bsky_pb.ts +289 -0
- package/src/util/uris.ts +31 -0
- package/src/views/index.ts +90 -35
- package/src/views/types.ts +1 -0
- package/src/views/util.ts +37 -7
- package/tests/__snapshots__/feed-generation.test.ts.snap +37 -0
- package/tests/admin/admin-auth.test.ts +15 -8
- package/tests/auth.test.ts +2 -1
- package/tests/data-plane/__snapshots__/indexing.test.ts.snap +18 -0
- package/tests/data-plane/handle-invalidation.test.ts +31 -5
- package/tests/data-plane/indexing.test.ts +139 -23
- package/tests/data-plane/thread-mutes.test.ts +41 -9
- package/tests/feed-generation.test.ts +150 -32
- package/tests/postgates.test.ts +186 -0
- package/tests/seed/feed-hidden-replies.ts +62 -0
- package/tests/seed/postgates.ts +56 -0
- package/tests/server.test.ts +1 -1
- package/tests/views/__snapshots__/author-feed.test.ts.snap +56 -0
- package/tests/views/__snapshots__/block-lists.test.ts.snap +6 -0
- package/tests/views/__snapshots__/blocks.test.ts.snap +10 -0
- package/tests/views/__snapshots__/list-feed.test.ts.snap +22 -0
- package/tests/views/__snapshots__/lists.test.ts.snap +145 -26
- package/tests/views/__snapshots__/mute-lists.test.ts.snap +8 -0
- package/tests/views/__snapshots__/mutes.test.ts.snap +6 -0
- package/tests/views/__snapshots__/posts.test.ts.snap +12 -0
- package/tests/views/__snapshots__/quotes.test.ts.snap +399 -0
- package/tests/views/__snapshots__/starter-packs.test.ts.snap +245 -4
- package/tests/views/__snapshots__/thread.test.ts.snap +50 -0
- package/tests/views/__snapshots__/timeline.test.ts.snap +170 -0
- package/tests/views/account-deactivation.test.ts +8 -2
- package/tests/views/actor-likes.test.ts +27 -6
- package/tests/views/actor-search.test.ts +5 -1
- package/tests/views/author-feed.test.ts +76 -21
- package/tests/views/block-lists.test.ts +201 -40
- package/tests/views/blocks.test.ts +245 -46
- package/tests/views/feed-hidden-replies.test.ts +246 -0
- package/tests/views/feed-view-post.test.ts +501 -0
- package/tests/views/follows.test.ts +133 -22
- package/tests/views/known-followers.test.ts +43 -7
- package/tests/views/labeler-service.test.ts +36 -6
- package/tests/views/likes.test.ts +8 -5
- package/tests/views/list-feed.test.ts +25 -4
- package/tests/views/lists.test.ts +73 -31
- package/tests/views/mute-lists.test.ts +101 -29
- package/tests/views/mutes.test.ts +77 -17
- package/tests/views/notifications.test.ts +141 -25
- package/tests/views/posts.test.ts +13 -2
- package/tests/views/profile.test.ts +37 -11
- package/tests/views/quotes.test.ts +105 -0
- package/tests/views/reposts.test.ts +31 -5
- package/tests/views/starter-packs.test.ts +83 -3
- package/tests/views/suggested-follows.test.ts +31 -5
- package/tests/views/suggestions.test.ts +37 -6
- package/tests/views/thread.test.ts +121 -20
- package/tests/views/threadgating.test.ts +128 -22
- package/tests/views/timeline.test.ts +67 -14
|
@@ -41,6 +41,7 @@ Object {
|
|
|
41
41
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
42
42
|
"labels": Array [],
|
|
43
43
|
"likeCount": 3,
|
|
44
|
+
"quoteCount": 0,
|
|
44
45
|
"record": Object {
|
|
45
46
|
"$type": "app.bsky.feed.post",
|
|
46
47
|
"createdAt": "1970-01-01T00:00:00.000000Z",
|
|
@@ -50,6 +51,7 @@ Object {
|
|
|
50
51
|
"repostCount": 1,
|
|
51
52
|
"uri": "record(4)",
|
|
52
53
|
"viewer": Object {
|
|
54
|
+
"embeddingDisabled": false,
|
|
53
55
|
"like": "record(7)",
|
|
54
56
|
"threadMuted": false,
|
|
55
57
|
},
|
|
@@ -97,6 +99,7 @@ Object {
|
|
|
97
99
|
},
|
|
98
100
|
],
|
|
99
101
|
"likeCount": 0,
|
|
102
|
+
"quoteCount": 0,
|
|
100
103
|
"record": Object {
|
|
101
104
|
"$type": "app.bsky.feed.post",
|
|
102
105
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -132,6 +135,7 @@ Object {
|
|
|
132
135
|
"repostCount": 0,
|
|
133
136
|
"uri": "record(5)",
|
|
134
137
|
"viewer": Object {
|
|
138
|
+
"embeddingDisabled": false,
|
|
135
139
|
"threadMuted": false,
|
|
136
140
|
},
|
|
137
141
|
},
|
|
@@ -170,6 +174,7 @@ Object {
|
|
|
170
174
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
171
175
|
"labels": Array [],
|
|
172
176
|
"likeCount": 0,
|
|
177
|
+
"quoteCount": 0,
|
|
173
178
|
"record": Object {
|
|
174
179
|
"$type": "app.bsky.feed.post",
|
|
175
180
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -189,6 +194,7 @@ Object {
|
|
|
189
194
|
"repostCount": 2,
|
|
190
195
|
"uri": "record(0)",
|
|
191
196
|
"viewer": Object {
|
|
197
|
+
"embeddingDisabled": false,
|
|
192
198
|
"repost": "record(6)",
|
|
193
199
|
"threadMuted": false,
|
|
194
200
|
},
|
|
@@ -234,6 +240,7 @@ Object {
|
|
|
234
240
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
235
241
|
"labels": Array [],
|
|
236
242
|
"likeCount": 3,
|
|
243
|
+
"quoteCount": 0,
|
|
237
244
|
"record": Object {
|
|
238
245
|
"$type": "app.bsky.feed.post",
|
|
239
246
|
"createdAt": "1970-01-01T00:00:00.000000Z",
|
|
@@ -243,6 +250,7 @@ Object {
|
|
|
243
250
|
"repostCount": 1,
|
|
244
251
|
"uri": "record(0)",
|
|
245
252
|
"viewer": Object {
|
|
253
|
+
"embeddingDisabled": false,
|
|
246
254
|
"like": "record(4)",
|
|
247
255
|
"threadMuted": false,
|
|
248
256
|
},
|
|
@@ -265,6 +273,7 @@ Object {
|
|
|
265
273
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
266
274
|
"labels": Array [],
|
|
267
275
|
"likeCount": 0,
|
|
276
|
+
"quoteCount": 0,
|
|
268
277
|
"record": Object {
|
|
269
278
|
"$type": "app.bsky.feed.post",
|
|
270
279
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -284,6 +293,7 @@ Object {
|
|
|
284
293
|
"repostCount": 0,
|
|
285
294
|
"uri": "record(5)",
|
|
286
295
|
"viewer": Object {
|
|
296
|
+
"embeddingDisabled": false,
|
|
287
297
|
"threadMuted": false,
|
|
288
298
|
},
|
|
289
299
|
},
|
|
@@ -333,6 +343,7 @@ Object {
|
|
|
333
343
|
},
|
|
334
344
|
],
|
|
335
345
|
"likeCount": 0,
|
|
346
|
+
"quoteCount": 0,
|
|
336
347
|
"record": Object {
|
|
337
348
|
"$type": "app.bsky.feed.post",
|
|
338
349
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -368,6 +379,7 @@ Object {
|
|
|
368
379
|
"repostCount": 0,
|
|
369
380
|
"uri": "record(7)",
|
|
370
381
|
"viewer": Object {
|
|
382
|
+
"embeddingDisabled": false,
|
|
371
383
|
"threadMuted": false,
|
|
372
384
|
},
|
|
373
385
|
},
|
|
@@ -408,6 +420,7 @@ Object {
|
|
|
408
420
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
409
421
|
"labels": Array [],
|
|
410
422
|
"likeCount": 0,
|
|
423
|
+
"quoteCount": 0,
|
|
411
424
|
"record": Object {
|
|
412
425
|
"$type": "app.bsky.feed.post",
|
|
413
426
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -427,6 +440,7 @@ Object {
|
|
|
427
440
|
"repostCount": 2,
|
|
428
441
|
"uri": "record(8)",
|
|
429
442
|
"viewer": Object {
|
|
443
|
+
"embeddingDisabled": false,
|
|
430
444
|
"repost": "record(9)",
|
|
431
445
|
"threadMuted": false,
|
|
432
446
|
},
|
|
@@ -476,6 +490,7 @@ Object {
|
|
|
476
490
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
477
491
|
"labels": Array [],
|
|
478
492
|
"likeCount": 3,
|
|
493
|
+
"quoteCount": 0,
|
|
479
494
|
"record": Object {
|
|
480
495
|
"$type": "app.bsky.feed.post",
|
|
481
496
|
"createdAt": "1970-01-01T00:00:00.000000Z",
|
|
@@ -485,6 +500,7 @@ Object {
|
|
|
485
500
|
"repostCount": 1,
|
|
486
501
|
"uri": "record(0)",
|
|
487
502
|
"viewer": Object {
|
|
503
|
+
"embeddingDisabled": false,
|
|
488
504
|
"like": "record(4)",
|
|
489
505
|
"threadMuted": false,
|
|
490
506
|
},
|
|
@@ -507,6 +523,7 @@ Object {
|
|
|
507
523
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
508
524
|
"labels": Array [],
|
|
509
525
|
"likeCount": 0,
|
|
526
|
+
"quoteCount": 0,
|
|
510
527
|
"record": Object {
|
|
511
528
|
"$type": "app.bsky.feed.post",
|
|
512
529
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -526,6 +543,7 @@ Object {
|
|
|
526
543
|
"repostCount": 0,
|
|
527
544
|
"uri": "record(5)",
|
|
528
545
|
"viewer": Object {
|
|
546
|
+
"embeddingDisabled": false,
|
|
529
547
|
"threadMuted": false,
|
|
530
548
|
},
|
|
531
549
|
},
|
|
@@ -574,6 +592,7 @@ Object {
|
|
|
574
592
|
},
|
|
575
593
|
],
|
|
576
594
|
"likeCount": 0,
|
|
595
|
+
"quoteCount": 0,
|
|
577
596
|
"record": Object {
|
|
578
597
|
"$type": "app.bsky.feed.post",
|
|
579
598
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -609,6 +628,7 @@ Object {
|
|
|
609
628
|
"repostCount": 0,
|
|
610
629
|
"uri": "record(7)",
|
|
611
630
|
"viewer": Object {
|
|
631
|
+
"embeddingDisabled": false,
|
|
612
632
|
"threadMuted": false,
|
|
613
633
|
},
|
|
614
634
|
},
|
|
@@ -654,6 +674,7 @@ Object {
|
|
|
654
674
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
655
675
|
"labels": Array [],
|
|
656
676
|
"likeCount": 3,
|
|
677
|
+
"quoteCount": 0,
|
|
657
678
|
"record": Object {
|
|
658
679
|
"$type": "app.bsky.feed.post",
|
|
659
680
|
"createdAt": "1970-01-01T00:00:00.000000Z",
|
|
@@ -663,6 +684,7 @@ Object {
|
|
|
663
684
|
"repostCount": 1,
|
|
664
685
|
"uri": "record(0)",
|
|
665
686
|
"viewer": Object {
|
|
687
|
+
"embeddingDisabled": false,
|
|
666
688
|
"like": "record(4)",
|
|
667
689
|
"threadMuted": false,
|
|
668
690
|
},
|
|
@@ -685,6 +707,7 @@ Object {
|
|
|
685
707
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
686
708
|
"labels": Array [],
|
|
687
709
|
"likeCount": 0,
|
|
710
|
+
"quoteCount": 0,
|
|
688
711
|
"record": Object {
|
|
689
712
|
"$type": "app.bsky.feed.post",
|
|
690
713
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -704,6 +727,7 @@ Object {
|
|
|
704
727
|
"repostCount": 0,
|
|
705
728
|
"uri": "record(5)",
|
|
706
729
|
"viewer": Object {
|
|
730
|
+
"embeddingDisabled": false,
|
|
707
731
|
"threadMuted": false,
|
|
708
732
|
},
|
|
709
733
|
},
|
|
@@ -752,6 +776,7 @@ Object {
|
|
|
752
776
|
},
|
|
753
777
|
],
|
|
754
778
|
"likeCount": 0,
|
|
779
|
+
"quoteCount": 0,
|
|
755
780
|
"record": Object {
|
|
756
781
|
"$type": "app.bsky.feed.post",
|
|
757
782
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -787,6 +812,7 @@ Object {
|
|
|
787
812
|
"repostCount": 0,
|
|
788
813
|
"uri": "record(7)",
|
|
789
814
|
"viewer": Object {
|
|
815
|
+
"embeddingDisabled": false,
|
|
790
816
|
"threadMuted": false,
|
|
791
817
|
},
|
|
792
818
|
},
|
|
@@ -832,6 +858,7 @@ Object {
|
|
|
832
858
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
833
859
|
"labels": Array [],
|
|
834
860
|
"likeCount": 0,
|
|
861
|
+
"quoteCount": 0,
|
|
835
862
|
"record": Object {
|
|
836
863
|
"$type": "app.bsky.feed.post",
|
|
837
864
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -841,6 +868,7 @@ Object {
|
|
|
841
868
|
"repostCount": 0,
|
|
842
869
|
"uri": "record(0)",
|
|
843
870
|
"viewer": Object {
|
|
871
|
+
"embeddingDisabled": false,
|
|
844
872
|
"threadMuted": false,
|
|
845
873
|
},
|
|
846
874
|
},
|
|
@@ -864,6 +892,7 @@ Object {
|
|
|
864
892
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
865
893
|
"labels": Array [],
|
|
866
894
|
"likeCount": 0,
|
|
895
|
+
"quoteCount": 0,
|
|
867
896
|
"record": Object {
|
|
868
897
|
"$type": "app.bsky.feed.post",
|
|
869
898
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -883,6 +912,7 @@ Object {
|
|
|
883
912
|
"repostCount": 0,
|
|
884
913
|
"uri": "record(4)",
|
|
885
914
|
"viewer": Object {
|
|
915
|
+
"embeddingDisabled": false,
|
|
886
916
|
"threadMuted": false,
|
|
887
917
|
},
|
|
888
918
|
},
|
|
@@ -923,6 +953,7 @@ Object {
|
|
|
923
953
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
924
954
|
"labels": Array [],
|
|
925
955
|
"likeCount": 0,
|
|
956
|
+
"quoteCount": 0,
|
|
926
957
|
"record": Object {
|
|
927
958
|
"$type": "app.bsky.feed.post",
|
|
928
959
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -942,6 +973,7 @@ Object {
|
|
|
942
973
|
"repostCount": 0,
|
|
943
974
|
"uri": "record(5)",
|
|
944
975
|
"viewer": Object {
|
|
976
|
+
"embeddingDisabled": false,
|
|
945
977
|
"threadMuted": false,
|
|
946
978
|
},
|
|
947
979
|
},
|
|
@@ -990,6 +1022,7 @@ Object {
|
|
|
990
1022
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
991
1023
|
"labels": Array [],
|
|
992
1024
|
"likeCount": 0,
|
|
1025
|
+
"quoteCount": 0,
|
|
993
1026
|
"record": Object {
|
|
994
1027
|
"$type": "app.bsky.feed.post",
|
|
995
1028
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -999,6 +1032,7 @@ Object {
|
|
|
999
1032
|
"repostCount": 0,
|
|
1000
1033
|
"uri": "record(0)",
|
|
1001
1034
|
"viewer": Object {
|
|
1035
|
+
"embeddingDisabled": false,
|
|
1002
1036
|
"threadMuted": false,
|
|
1003
1037
|
},
|
|
1004
1038
|
},
|
|
@@ -1048,6 +1082,7 @@ Object {
|
|
|
1048
1082
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
1049
1083
|
"labels": Array [],
|
|
1050
1084
|
"likeCount": 0,
|
|
1085
|
+
"quoteCount": 0,
|
|
1051
1086
|
"record": Object {
|
|
1052
1087
|
"$type": "app.bsky.feed.post",
|
|
1053
1088
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -1067,6 +1102,7 @@ Object {
|
|
|
1067
1102
|
"repostCount": 0,
|
|
1068
1103
|
"uri": "record(0)",
|
|
1069
1104
|
"viewer": Object {
|
|
1105
|
+
"embeddingDisabled": false,
|
|
1070
1106
|
"threadMuted": false,
|
|
1071
1107
|
},
|
|
1072
1108
|
},
|
|
@@ -1116,6 +1152,7 @@ Object {
|
|
|
1116
1152
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
1117
1153
|
"labels": Array [],
|
|
1118
1154
|
"likeCount": 0,
|
|
1155
|
+
"quoteCount": 0,
|
|
1119
1156
|
"record": Object {
|
|
1120
1157
|
"$type": "app.bsky.feed.post",
|
|
1121
1158
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -1135,6 +1172,7 @@ Object {
|
|
|
1135
1172
|
"repostCount": 2,
|
|
1136
1173
|
"uri": "record(0)",
|
|
1137
1174
|
"viewer": Object {
|
|
1175
|
+
"embeddingDisabled": false,
|
|
1138
1176
|
"repost": "record(6)",
|
|
1139
1177
|
"threadMuted": false,
|
|
1140
1178
|
},
|
|
@@ -1185,6 +1223,7 @@ Object {
|
|
|
1185
1223
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
1186
1224
|
"labels": Array [],
|
|
1187
1225
|
"likeCount": 0,
|
|
1226
|
+
"quoteCount": 0,
|
|
1188
1227
|
"record": Object {
|
|
1189
1228
|
"$type": "app.bsky.feed.post",
|
|
1190
1229
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -1204,6 +1243,7 @@ Object {
|
|
|
1204
1243
|
"repostCount": 2,
|
|
1205
1244
|
"uri": "record(0)",
|
|
1206
1245
|
"viewer": Object {
|
|
1246
|
+
"embeddingDisabled": false,
|
|
1207
1247
|
"repost": "record(6)",
|
|
1208
1248
|
"threadMuted": false,
|
|
1209
1249
|
},
|
|
@@ -1249,6 +1289,7 @@ Object {
|
|
|
1249
1289
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
1250
1290
|
"labels": Array [],
|
|
1251
1291
|
"likeCount": 3,
|
|
1292
|
+
"quoteCount": 0,
|
|
1252
1293
|
"record": Object {
|
|
1253
1294
|
"$type": "app.bsky.feed.post",
|
|
1254
1295
|
"createdAt": "1970-01-01T00:00:00.000000Z",
|
|
@@ -1258,6 +1299,7 @@ Object {
|
|
|
1258
1299
|
"repostCount": 1,
|
|
1259
1300
|
"uri": "record(0)",
|
|
1260
1301
|
"viewer": Object {
|
|
1302
|
+
"embeddingDisabled": false,
|
|
1261
1303
|
"like": "record(4)",
|
|
1262
1304
|
"threadMuted": false,
|
|
1263
1305
|
},
|
|
@@ -1307,6 +1349,7 @@ Object {
|
|
|
1307
1349
|
},
|
|
1308
1350
|
],
|
|
1309
1351
|
"likeCount": 0,
|
|
1352
|
+
"quoteCount": 0,
|
|
1310
1353
|
"record": Object {
|
|
1311
1354
|
"$type": "app.bsky.feed.post",
|
|
1312
1355
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -1342,6 +1385,7 @@ Object {
|
|
|
1342
1385
|
"repostCount": 0,
|
|
1343
1386
|
"uri": "record(5)",
|
|
1344
1387
|
"viewer": Object {
|
|
1388
|
+
"embeddingDisabled": false,
|
|
1345
1389
|
"threadMuted": false,
|
|
1346
1390
|
},
|
|
1347
1391
|
},
|
|
@@ -1382,6 +1426,7 @@ Object {
|
|
|
1382
1426
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
1383
1427
|
"labels": Array [],
|
|
1384
1428
|
"likeCount": 0,
|
|
1429
|
+
"quoteCount": 0,
|
|
1385
1430
|
"record": Object {
|
|
1386
1431
|
"$type": "app.bsky.feed.post",
|
|
1387
1432
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -1401,6 +1446,7 @@ Object {
|
|
|
1401
1446
|
"repostCount": 2,
|
|
1402
1447
|
"uri": "record(6)",
|
|
1403
1448
|
"viewer": Object {
|
|
1449
|
+
"embeddingDisabled": false,
|
|
1404
1450
|
"repost": "record(7)",
|
|
1405
1451
|
"threadMuted": false,
|
|
1406
1452
|
},
|
|
@@ -1450,6 +1496,7 @@ Object {
|
|
|
1450
1496
|
"indexedAt": "1970-01-01T00:00:00.000Z",
|
|
1451
1497
|
"labels": Array [],
|
|
1452
1498
|
"likeCount": 3,
|
|
1499
|
+
"quoteCount": 0,
|
|
1453
1500
|
"record": Object {
|
|
1454
1501
|
"$type": "app.bsky.feed.post",
|
|
1455
1502
|
"createdAt": "1970-01-01T00:00:00.000000Z",
|
|
@@ -1459,6 +1506,7 @@ Object {
|
|
|
1459
1506
|
"repostCount": 1,
|
|
1460
1507
|
"uri": "record(0)",
|
|
1461
1508
|
"viewer": Object {
|
|
1509
|
+
"embeddingDisabled": false,
|
|
1462
1510
|
"like": "record(4)",
|
|
1463
1511
|
"threadMuted": false,
|
|
1464
1512
|
},
|
|
@@ -1508,6 +1556,7 @@ Object {
|
|
|
1508
1556
|
},
|
|
1509
1557
|
],
|
|
1510
1558
|
"likeCount": 0,
|
|
1559
|
+
"quoteCount": 0,
|
|
1511
1560
|
"record": Object {
|
|
1512
1561
|
"$type": "app.bsky.feed.post",
|
|
1513
1562
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
@@ -1543,6 +1592,7 @@ Object {
|
|
|
1543
1592
|
"repostCount": 0,
|
|
1544
1593
|
"uri": "record(5)",
|
|
1545
1594
|
"viewer": Object {
|
|
1595
|
+
"embeddingDisabled": false,
|
|
1546
1596
|
"threadMuted": false,
|
|
1547
1597
|
},
|
|
1548
1598
|
},
|