@atproto/bsky 0.0.76 → 0.0.78

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (226) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/api/app/bsky/feed/getActorLikes.js +2 -2
  3. package/dist/api/app/bsky/feed/getActorLikes.js.map +1 -1
  4. package/dist/api/app/bsky/feed/getLikes.js +6 -6
  5. package/dist/api/app/bsky/feed/getLikes.js.map +1 -1
  6. package/dist/api/app/bsky/feed/getListFeed.d.ts.map +1 -1
  7. package/dist/api/app/bsky/feed/getListFeed.js +19 -3
  8. package/dist/api/app/bsky/feed/getListFeed.js.map +1 -1
  9. package/dist/api/app/bsky/feed/getPosts.js +4 -4
  10. package/dist/api/app/bsky/feed/getPosts.js.map +1 -1
  11. package/dist/api/app/bsky/feed/getQuotes.d.ts +4 -0
  12. package/dist/api/app/bsky/feed/getQuotes.d.ts.map +1 -0
  13. package/dist/api/app/bsky/feed/getQuotes.js +67 -0
  14. package/dist/api/app/bsky/feed/getQuotes.js.map +1 -0
  15. package/dist/api/app/bsky/feed/getRepostedBy.js +6 -6
  16. package/dist/api/app/bsky/feed/getRepostedBy.js.map +1 -1
  17. package/dist/api/app/bsky/feed/searchPosts.js +4 -4
  18. package/dist/api/app/bsky/feed/searchPosts.js.map +1 -1
  19. package/dist/api/app/bsky/graph/getFollowers.js +8 -8
  20. package/dist/api/app/bsky/graph/getFollowers.js.map +1 -1
  21. package/dist/api/app/bsky/graph/getList.js +7 -7
  22. package/dist/api/app/bsky/graph/getList.js.map +1 -1
  23. package/dist/api/app/bsky/notification/listNotifications.d.ts.map +1 -1
  24. package/dist/api/app/bsky/notification/listNotifications.js +29 -8
  25. package/dist/api/app/bsky/notification/listNotifications.js.map +1 -1
  26. package/dist/api/index.d.ts.map +1 -1
  27. package/dist/api/index.js +2 -0
  28. package/dist/api/index.js.map +1 -1
  29. package/dist/data-plane/server/db/database-schema.d.ts +4 -2
  30. package/dist/data-plane/server/db/database-schema.d.ts.map +1 -1
  31. package/dist/data-plane/server/db/migrations/20240723T220700077Z-quotes-post-aggs.d.ts +4 -0
  32. package/dist/data-plane/server/db/migrations/20240723T220700077Z-quotes-post-aggs.d.ts.map +1 -0
  33. package/dist/data-plane/server/db/migrations/20240723T220700077Z-quotes-post-aggs.js +15 -0
  34. package/dist/data-plane/server/db/migrations/20240723T220700077Z-quotes-post-aggs.js.map +1 -0
  35. package/dist/data-plane/server/db/migrations/20240723T220703655Z-quotes.d.ts +4 -0
  36. package/dist/data-plane/server/db/migrations/20240723T220703655Z-quotes.d.ts.map +1 -0
  37. package/dist/data-plane/server/db/migrations/20240723T220703655Z-quotes.js +30 -0
  38. package/dist/data-plane/server/db/migrations/20240723T220703655Z-quotes.js.map +1 -0
  39. package/dist/data-plane/server/db/migrations/20240801T193939827Z-post-gate.d.ts +4 -0
  40. package/dist/data-plane/server/db/migrations/20240801T193939827Z-post-gate.d.ts.map +1 -0
  41. package/dist/data-plane/server/db/migrations/20240801T193939827Z-post-gate.js +20 -0
  42. package/dist/data-plane/server/db/migrations/20240801T193939827Z-post-gate.js.map +1 -0
  43. package/dist/data-plane/server/db/migrations/20240808T224251220Z-post-gate-flags.d.ts +4 -0
  44. package/dist/data-plane/server/db/migrations/20240808T224251220Z-post-gate-flags.d.ts.map +1 -0
  45. package/dist/data-plane/server/db/migrations/20240808T224251220Z-post-gate-flags.js +28 -0
  46. package/dist/data-plane/server/db/migrations/20240808T224251220Z-post-gate-flags.js.map +1 -0
  47. package/dist/data-plane/server/db/migrations/index.d.ts +4 -0
  48. package/dist/data-plane/server/db/migrations/index.d.ts.map +1 -1
  49. package/dist/data-plane/server/db/migrations/index.js +5 -1
  50. package/dist/data-plane/server/db/migrations/index.js.map +1 -1
  51. package/dist/data-plane/server/db/tables/post-agg.d.ts +1 -0
  52. package/dist/data-plane/server/db/tables/post-agg.d.ts.map +1 -1
  53. package/dist/data-plane/server/db/tables/post-gate.d.ts +14 -0
  54. package/dist/data-plane/server/db/tables/post-gate.d.ts.map +1 -0
  55. package/dist/data-plane/server/db/tables/post-gate.js +4 -0
  56. package/dist/data-plane/server/db/tables/post-gate.js.map +1 -0
  57. package/dist/data-plane/server/db/tables/post.d.ts +3 -0
  58. package/dist/data-plane/server/db/tables/post.d.ts.map +1 -1
  59. package/dist/data-plane/server/db/tables/quote.d.ts +16 -0
  60. package/dist/data-plane/server/db/tables/quote.d.ts.map +1 -0
  61. package/dist/data-plane/server/db/tables/quote.js +4 -0
  62. package/dist/data-plane/server/db/tables/quote.js.map +1 -0
  63. package/dist/data-plane/server/indexing/index.d.ts +2 -0
  64. package/dist/data-plane/server/indexing/index.d.ts.map +1 -1
  65. package/dist/data-plane/server/indexing/index.js +6 -0
  66. package/dist/data-plane/server/indexing/index.js.map +1 -1
  67. package/dist/data-plane/server/indexing/plugins/post-gate.d.ts +10 -0
  68. package/dist/data-plane/server/indexing/plugins/post-gate.d.ts.map +1 -0
  69. package/dist/data-plane/server/indexing/plugins/post-gate.js +101 -0
  70. package/dist/data-plane/server/indexing/plugins/post-gate.js.map +1 -0
  71. package/dist/data-plane/server/indexing/plugins/post.d.ts +2 -0
  72. package/dist/data-plane/server/indexing/plugins/post.d.ts.map +1 -1
  73. package/dist/data-plane/server/indexing/plugins/post.js +122 -15
  74. package/dist/data-plane/server/indexing/plugins/post.js.map +1 -1
  75. package/dist/data-plane/server/indexing/plugins/thread-gate.d.ts.map +1 -1
  76. package/dist/data-plane/server/indexing/plugins/thread-gate.js +12 -0
  77. package/dist/data-plane/server/indexing/plugins/thread-gate.js.map +1 -1
  78. package/dist/data-plane/server/routes/index.d.ts.map +1 -1
  79. package/dist/data-plane/server/routes/index.js +2 -0
  80. package/dist/data-plane/server/routes/index.js.map +1 -1
  81. package/dist/data-plane/server/routes/interactions.d.ts.map +1 -1
  82. package/dist/data-plane/server/routes/interactions.js +2 -1
  83. package/dist/data-plane/server/routes/interactions.js.map +1 -1
  84. package/dist/data-plane/server/routes/quotes.d.ts +6 -0
  85. package/dist/data-plane/server/routes/quotes.d.ts.map +1 -0
  86. package/dist/data-plane/server/routes/quotes.js +27 -0
  87. package/dist/data-plane/server/routes/quotes.js.map +1 -0
  88. package/dist/data-plane/server/routes/records.d.ts.map +1 -1
  89. package/dist/data-plane/server/routes/records.js +11 -1
  90. package/dist/data-plane/server/routes/records.js.map +1 -1
  91. package/dist/data-plane/server/util.d.ts +6 -7
  92. package/dist/data-plane/server/util.d.ts.map +1 -1
  93. package/dist/data-plane/server/util.js +1 -9
  94. package/dist/data-plane/server/util.js.map +1 -1
  95. package/dist/hydration/feed.d.ts +10 -0
  96. package/dist/hydration/feed.d.ts.map +1 -1
  97. package/dist/hydration/feed.js +31 -7
  98. package/dist/hydration/feed.js.map +1 -1
  99. package/dist/hydration/hydrator.d.ts +4 -2
  100. package/dist/hydration/hydrator.d.ts.map +1 -1
  101. package/dist/hydration/hydrator.js +89 -34
  102. package/dist/hydration/hydrator.js.map +1 -1
  103. package/dist/hydration/util.d.ts +0 -1
  104. package/dist/hydration/util.d.ts.map +1 -1
  105. package/dist/hydration/util.js +1 -5
  106. package/dist/hydration/util.js.map +1 -1
  107. package/dist/lexicon/index.d.ts +2 -0
  108. package/dist/lexicon/index.d.ts.map +1 -1
  109. package/dist/lexicon/index.js +4 -0
  110. package/dist/lexicon/index.js.map +1 -1
  111. package/dist/lexicon/lexicons.d.ts +144 -0
  112. package/dist/lexicon/lexicons.d.ts.map +1 -1
  113. package/dist/lexicon/lexicons.js +146 -1
  114. package/dist/lexicon/lexicons.js.map +1 -1
  115. package/dist/lexicon/types/app/bsky/embed/record.d.ts +9 -1
  116. package/dist/lexicon/types/app/bsky/embed/record.d.ts.map +1 -1
  117. package/dist/lexicon/types/app/bsky/embed/record.js +11 -1
  118. package/dist/lexicon/types/app/bsky/embed/record.js.map +1 -1
  119. package/dist/lexicon/types/app/bsky/feed/defs.d.ts +2 -0
  120. package/dist/lexicon/types/app/bsky/feed/defs.d.ts.map +1 -1
  121. package/dist/lexicon/types/app/bsky/feed/defs.js.map +1 -1
  122. package/dist/lexicon/types/app/bsky/feed/getQuotes.d.ts +44 -0
  123. package/dist/lexicon/types/app/bsky/feed/getQuotes.d.ts.map +1 -0
  124. package/dist/lexicon/types/app/bsky/feed/getQuotes.js +3 -0
  125. package/dist/lexicon/types/app/bsky/feed/getQuotes.js.map +1 -0
  126. package/dist/lexicon/types/app/bsky/feed/postgate.d.ts +25 -0
  127. package/dist/lexicon/types/app/bsky/feed/postgate.d.ts.map +1 -0
  128. package/dist/lexicon/types/app/bsky/feed/postgate.js +27 -0
  129. package/dist/lexicon/types/app/bsky/feed/postgate.js.map +1 -0
  130. package/dist/lexicon/types/app/bsky/feed/threadgate.d.ts +2 -0
  131. package/dist/lexicon/types/app/bsky/feed/threadgate.d.ts.map +1 -1
  132. package/dist/lexicon/types/app/bsky/feed/threadgate.js.map +1 -1
  133. package/dist/proto/bsky_connect.d.ts +30 -1
  134. package/dist/proto/bsky_connect.d.ts.map +1 -1
  135. package/dist/proto/bsky_connect.js +29 -0
  136. package/dist/proto/bsky_connect.js.map +1 -1
  137. package/dist/proto/bsky_pb.d.ts +135 -1
  138. package/dist/proto/bsky_pb.d.ts.map +1 -1
  139. package/dist/proto/bsky_pb.js +425 -5
  140. package/dist/proto/bsky_pb.js.map +1 -1
  141. package/dist/util/uris.d.ts +12 -0
  142. package/dist/util/uris.d.ts.map +1 -0
  143. package/dist/util/uris.js +34 -0
  144. package/dist/util/uris.js.map +1 -0
  145. package/dist/views/index.d.ts +8 -2
  146. package/dist/views/index.d.ts.map +1 -1
  147. package/dist/views/index.js +84 -39
  148. package/dist/views/index.js.map +1 -1
  149. package/dist/views/types.d.ts +1 -1
  150. package/dist/views/types.d.ts.map +1 -1
  151. package/dist/views/types.js.map +1 -1
  152. package/dist/views/util.d.ts +11 -1
  153. package/dist/views/util.d.ts.map +1 -1
  154. package/dist/views/util.js +19 -8
  155. package/dist/views/util.js.map +1 -1
  156. package/package.json +4 -4
  157. package/proto/bsky.proto +42 -2
  158. package/src/api/app/bsky/feed/getActorLikes.ts +1 -1
  159. package/src/api/app/bsky/feed/getLikes.ts +1 -1
  160. package/src/api/app/bsky/feed/getListFeed.ts +30 -3
  161. package/src/api/app/bsky/feed/getPosts.ts +1 -1
  162. package/src/api/app/bsky/feed/getQuotes.ts +108 -0
  163. package/src/api/app/bsky/feed/getRepostedBy.ts +1 -1
  164. package/src/api/app/bsky/feed/searchPosts.ts +1 -1
  165. package/src/api/app/bsky/graph/getFollowers.ts +1 -1
  166. package/src/api/app/bsky/graph/getList.ts +5 -5
  167. package/src/api/app/bsky/notification/listNotifications.ts +32 -6
  168. package/src/api/index.ts +2 -0
  169. package/src/data-plane/server/db/database-schema.ts +7 -3
  170. package/src/data-plane/server/db/migrations/20240723T220700077Z-quotes-post-aggs.ts +12 -0
  171. package/src/data-plane/server/db/migrations/20240723T220703655Z-quotes.ts +28 -0
  172. package/src/data-plane/server/db/migrations/20240801T193939827Z-post-gate.ts +17 -0
  173. package/src/data-plane/server/db/migrations/20240808T224251220Z-post-gate-flags.ts +25 -0
  174. package/src/data-plane/server/db/migrations/index.ts +4 -0
  175. package/src/data-plane/server/db/tables/post-agg.ts +1 -0
  176. package/src/data-plane/server/db/tables/post-gate.ts +12 -0
  177. package/src/data-plane/server/db/tables/post.ts +3 -0
  178. package/src/data-plane/server/db/tables/quote.ts +15 -0
  179. package/src/data-plane/server/indexing/index.ts +7 -0
  180. package/src/data-plane/server/indexing/plugins/post-gate.ts +104 -0
  181. package/src/data-plane/server/indexing/plugins/post.ts +151 -16
  182. package/src/data-plane/server/indexing/plugins/thread-gate.ts +12 -0
  183. package/src/data-plane/server/routes/index.ts +2 -0
  184. package/src/data-plane/server/routes/interactions.ts +2 -1
  185. package/src/data-plane/server/routes/quotes.ts +32 -0
  186. package/src/data-plane/server/routes/records.ts +11 -1
  187. package/src/data-plane/server/util.ts +0 -8
  188. package/src/hydration/feed.ts +58 -12
  189. package/src/hydration/hydrator.ts +94 -22
  190. package/src/hydration/util.ts +0 -4
  191. package/src/lexicon/index.ts +12 -0
  192. package/src/lexicon/lexicons.ts +149 -1
  193. package/src/lexicon/types/app/bsky/embed/record.ts +20 -0
  194. package/src/lexicon/types/app/bsky/feed/defs.ts +2 -0
  195. package/src/lexicon/types/app/bsky/feed/getQuotes.ts +54 -0
  196. package/src/lexicon/types/app/bsky/feed/postgate.ts +47 -0
  197. package/src/lexicon/types/app/bsky/feed/threadgate.ts +2 -0
  198. package/src/proto/bsky_connect.ts +35 -0
  199. package/src/proto/bsky_pb.ts +424 -1
  200. package/src/util/uris.ts +31 -0
  201. package/src/views/index.ts +91 -35
  202. package/src/views/types.ts +1 -0
  203. package/src/views/util.ts +37 -7
  204. package/tests/__snapshots__/feed-generation.test.ts.snap +42 -0
  205. package/tests/data-plane/__snapshots__/indexing.test.ts.snap +20 -0
  206. package/tests/data-plane/indexing.test.ts +1 -0
  207. package/tests/postgates.test.ts +186 -0
  208. package/tests/seed/feed-hidden-replies.ts +62 -0
  209. package/tests/seed/postgates.ts +56 -0
  210. package/tests/views/__snapshots__/author-feed.test.ts.snap +65 -0
  211. package/tests/views/__snapshots__/block-lists.test.ts.snap +7 -0
  212. package/tests/views/__snapshots__/blocks.test.ts.snap +11 -0
  213. package/tests/views/__snapshots__/list-feed.test.ts.snap +24 -0
  214. package/tests/views/__snapshots__/lists.test.ts.snap +185 -1
  215. package/tests/views/__snapshots__/mute-lists.test.ts.snap +8 -0
  216. package/tests/views/__snapshots__/mutes.test.ts.snap +6 -0
  217. package/tests/views/__snapshots__/posts.test.ts.snap +15 -0
  218. package/tests/views/__snapshots__/quotes.test.ts.snap +402 -0
  219. package/tests/views/__snapshots__/thread.test.ts.snap +50 -0
  220. package/tests/views/__snapshots__/timeline.test.ts.snap +191 -0
  221. package/tests/views/author-feed.test.ts +3 -9
  222. package/tests/views/feed-hidden-replies.test.ts +246 -0
  223. package/tests/views/feed-view-post.test.ts +501 -0
  224. package/tests/views/list-feed.test.ts +12 -0
  225. package/tests/views/lists.test.ts +83 -18
  226. package/tests/views/quotes.test.ts +105 -0
@@ -35,6 +35,7 @@ Array [
35
35
  "indexedAt": "1970-01-01T00:00:00.000Z",
36
36
  "labels": Array [],
37
37
  "likeCount": 0,
38
+ "quoteCount": 0,
38
39
  "record": Object {
39
40
  "$type": "app.bsky.feed.post",
40
41
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -54,6 +55,7 @@ Array [
54
55
  "repostCount": 1,
55
56
  "uri": "record(0)",
56
57
  "viewer": Object {
58
+ "embeddingDisabled": false,
57
59
  "threadMuted": false,
58
60
  },
59
61
  },
@@ -115,6 +117,7 @@ Array [
115
117
  "indexedAt": "1970-01-01T00:00:00.000Z",
116
118
  "labels": Array [],
117
119
  "likeCount": 3,
120
+ "quoteCount": 0,
118
121
  "record": Object {
119
122
  "$type": "app.bsky.feed.post",
120
123
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -124,6 +127,7 @@ Array [
124
127
  "repostCount": 1,
125
128
  "uri": "record(2)",
126
129
  "viewer": Object {
130
+ "embeddingDisabled": false,
127
131
  "threadMuted": false,
128
132
  },
129
133
  },
@@ -162,6 +166,7 @@ Array [
162
166
  "indexedAt": "1970-01-01T00:00:00.000Z",
163
167
  "labels": Array [],
164
168
  "likeCount": 3,
169
+ "quoteCount": 0,
165
170
  "record": Object {
166
171
  "$type": "app.bsky.feed.post",
167
172
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -171,6 +176,7 @@ Array [
171
176
  "repostCount": 1,
172
177
  "uri": "record(2)",
173
178
  "viewer": Object {
179
+ "embeddingDisabled": false,
174
180
  "threadMuted": false,
175
181
  },
176
182
  },
@@ -227,6 +233,7 @@ Array [
227
233
  "indexedAt": "1970-01-01T00:00:00.000Z",
228
234
  "labels": Array [],
229
235
  "likeCount": 0,
236
+ "quoteCount": 0,
230
237
  "record": Object {
231
238
  "$type": "app.bsky.feed.post",
232
239
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -246,6 +253,7 @@ Array [
246
253
  "repostCount": 1,
247
254
  "uri": "record(0)",
248
255
  "viewer": Object {
256
+ "embeddingDisabled": false,
249
257
  "threadMuted": false,
250
258
  },
251
259
  },
@@ -288,6 +296,7 @@ Array [
288
296
  "indexedAt": "1970-01-01T00:00:00.000Z",
289
297
  "labels": Array [],
290
298
  "likeCount": 3,
299
+ "quoteCount": 0,
291
300
  "record": Object {
292
301
  "$type": "app.bsky.feed.post",
293
302
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -297,6 +306,7 @@ Array [
297
306
  "repostCount": 1,
298
307
  "uri": "record(2)",
299
308
  "viewer": Object {
309
+ "embeddingDisabled": false,
300
310
  "threadMuted": false,
301
311
  },
302
312
  },
@@ -365,6 +375,7 @@ Array [
365
375
  "indexedAt": "1970-01-01T00:00:00.000Z",
366
376
  "labels": Array [],
367
377
  "likeCount": 0,
378
+ "quoteCount": 1,
368
379
  "replyCount": 0,
369
380
  "repostCount": 1,
370
381
  "uri": "record(6)",
@@ -407,6 +418,7 @@ Array [
407
418
  },
408
419
  ],
409
420
  "likeCount": 2,
421
+ "quoteCount": 0,
410
422
  "record": Object {
411
423
  "$type": "app.bsky.feed.post",
412
424
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -423,6 +435,7 @@ Array [
423
435
  "repostCount": 0,
424
436
  "uri": "record(5)",
425
437
  "viewer": Object {
438
+ "embeddingDisabled": false,
426
439
  "threadMuted": false,
427
440
  },
428
441
  },
@@ -460,6 +473,7 @@ Array [
460
473
  "indexedAt": "1970-01-01T00:00:00.000Z",
461
474
  "labels": Array [],
462
475
  "likeCount": 3,
476
+ "quoteCount": 0,
463
477
  "record": Object {
464
478
  "$type": "app.bsky.feed.post",
465
479
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -469,6 +483,7 @@ Array [
469
483
  "repostCount": 1,
470
484
  "uri": "record(2)",
471
485
  "viewer": Object {
486
+ "embeddingDisabled": false,
472
487
  "threadMuted": false,
473
488
  },
474
489
  },
@@ -502,6 +517,7 @@ Array [
502
517
  "indexedAt": "1970-01-01T00:00:00.000Z",
503
518
  "labels": Array [],
504
519
  "likeCount": 0,
520
+ "quoteCount": 1,
505
521
  "record": Object {
506
522
  "$type": "app.bsky.feed.post",
507
523
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -532,6 +548,7 @@ Array [
532
548
  "repostCount": 1,
533
549
  "uri": "record(6)",
534
550
  "viewer": Object {
551
+ "embeddingDisabled": false,
535
552
  "threadMuted": false,
536
553
  },
537
554
  },
@@ -557,6 +574,7 @@ Array [
557
574
  "indexedAt": "1970-01-01T00:00:00.000Z",
558
575
  "labels": Array [],
559
576
  "likeCount": 0,
577
+ "quoteCount": 0,
560
578
  "record": Object {
561
579
  "$type": "app.bsky.feed.post",
562
580
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -566,6 +584,7 @@ Array [
566
584
  "repostCount": 0,
567
585
  "uri": "record(8)",
568
586
  "viewer": Object {
587
+ "embeddingDisabled": false,
569
588
  "threadMuted": false,
570
589
  },
571
590
  },
@@ -611,6 +630,7 @@ Array [
611
630
  },
612
631
  ],
613
632
  "likeCount": 0,
633
+ "quoteCount": 0,
614
634
  "record": Object {
615
635
  "$type": "app.bsky.feed.post",
616
636
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -628,6 +648,7 @@ Array [
628
648
  "repostCount": 0,
629
649
  "uri": "record(9)",
630
650
  "viewer": Object {
651
+ "embeddingDisabled": false,
631
652
  "threadMuted": false,
632
653
  },
633
654
  },
@@ -670,6 +691,7 @@ Array [
670
691
  "indexedAt": "1970-01-01T00:00:00.000Z",
671
692
  "labels": Array [],
672
693
  "likeCount": 0,
694
+ "quoteCount": 0,
673
695
  "record": Object {
674
696
  "$type": "app.bsky.feed.post",
675
697
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -689,6 +711,7 @@ Array [
689
711
  "repostCount": 1,
690
712
  "uri": "record(0)",
691
713
  "viewer": Object {
714
+ "embeddingDisabled": false,
692
715
  "threadMuted": false,
693
716
  },
694
717
  },
@@ -750,6 +773,7 @@ Array [
750
773
  "indexedAt": "1970-01-01T00:00:00.000Z",
751
774
  "labels": Array [],
752
775
  "likeCount": 3,
776
+ "quoteCount": 0,
753
777
  "record": Object {
754
778
  "$type": "app.bsky.feed.post",
755
779
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -759,6 +783,7 @@ Array [
759
783
  "repostCount": 1,
760
784
  "uri": "record(2)",
761
785
  "viewer": Object {
786
+ "embeddingDisabled": false,
762
787
  "threadMuted": false,
763
788
  },
764
789
  },
@@ -797,6 +822,7 @@ Array [
797
822
  "indexedAt": "1970-01-01T00:00:00.000Z",
798
823
  "labels": Array [],
799
824
  "likeCount": 3,
825
+ "quoteCount": 0,
800
826
  "record": Object {
801
827
  "$type": "app.bsky.feed.post",
802
828
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -806,6 +832,7 @@ Array [
806
832
  "repostCount": 1,
807
833
  "uri": "record(2)",
808
834
  "viewer": Object {
835
+ "embeddingDisabled": false,
809
836
  "threadMuted": false,
810
837
  },
811
838
  },
@@ -862,6 +889,7 @@ Array [
862
889
  "indexedAt": "1970-01-01T00:00:00.000Z",
863
890
  "labels": Array [],
864
891
  "likeCount": 0,
892
+ "quoteCount": 0,
865
893
  "record": Object {
866
894
  "$type": "app.bsky.feed.post",
867
895
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -881,6 +909,7 @@ Array [
881
909
  "repostCount": 1,
882
910
  "uri": "record(0)",
883
911
  "viewer": Object {
912
+ "embeddingDisabled": false,
884
913
  "threadMuted": false,
885
914
  },
886
915
  },
@@ -923,6 +952,7 @@ Array [
923
952
  "indexedAt": "1970-01-01T00:00:00.000Z",
924
953
  "labels": Array [],
925
954
  "likeCount": 3,
955
+ "quoteCount": 0,
926
956
  "record": Object {
927
957
  "$type": "app.bsky.feed.post",
928
958
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -932,6 +962,7 @@ Array [
932
962
  "repostCount": 1,
933
963
  "uri": "record(2)",
934
964
  "viewer": Object {
965
+ "embeddingDisabled": false,
935
966
  "threadMuted": false,
936
967
  },
937
968
  },
@@ -954,6 +985,7 @@ Array [
954
985
  "indexedAt": "1970-01-01T00:00:00.000Z",
955
986
  "labels": Array [],
956
987
  "likeCount": 0,
988
+ "quoteCount": 0,
957
989
  "record": Object {
958
990
  "$type": "app.bsky.feed.post",
959
991
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -973,6 +1005,7 @@ Array [
973
1005
  "repostCount": 0,
974
1006
  "uri": "record(5)",
975
1007
  "viewer": Object {
1008
+ "embeddingDisabled": false,
976
1009
  "threadMuted": false,
977
1010
  },
978
1011
  },
@@ -1010,6 +1043,7 @@ Array [
1010
1043
  "indexedAt": "1970-01-01T00:00:00.000Z",
1011
1044
  "labels": Array [],
1012
1045
  "likeCount": 3,
1046
+ "quoteCount": 0,
1013
1047
  "record": Object {
1014
1048
  "$type": "app.bsky.feed.post",
1015
1049
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -1019,6 +1053,7 @@ Array [
1019
1053
  "repostCount": 1,
1020
1054
  "uri": "record(2)",
1021
1055
  "viewer": Object {
1056
+ "embeddingDisabled": false,
1022
1057
  "threadMuted": false,
1023
1058
  },
1024
1059
  },
@@ -1055,6 +1090,7 @@ Array [
1055
1090
  "indexedAt": "1970-01-01T00:00:00.000Z",
1056
1091
  "labels": Array [],
1057
1092
  "likeCount": 3,
1093
+ "quoteCount": 0,
1058
1094
  "record": Object {
1059
1095
  "$type": "app.bsky.feed.post",
1060
1096
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -1064,6 +1100,7 @@ Array [
1064
1100
  "repostCount": 1,
1065
1101
  "uri": "record(2)",
1066
1102
  "viewer": Object {
1103
+ "embeddingDisabled": false,
1067
1104
  "threadMuted": false,
1068
1105
  },
1069
1106
  },
@@ -1118,6 +1155,7 @@ Array [
1118
1155
  },
1119
1156
  ],
1120
1157
  "likeCount": 2,
1158
+ "quoteCount": 0,
1121
1159
  "record": Object {
1122
1160
  "$type": "app.bsky.feed.post",
1123
1161
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -1134,6 +1172,7 @@ Array [
1134
1172
  "repostCount": 0,
1135
1173
  "uri": "record(8)",
1136
1174
  "viewer": Object {
1175
+ "embeddingDisabled": false,
1137
1176
  "threadMuted": false,
1138
1177
  },
1139
1178
  },
@@ -1158,6 +1197,7 @@ Array [
1158
1197
  "indexedAt": "1970-01-01T00:00:00.000Z",
1159
1198
  "labels": Array [],
1160
1199
  "likeCount": 0,
1200
+ "quoteCount": 0,
1161
1201
  "record": Object {
1162
1202
  "$type": "app.bsky.feed.post",
1163
1203
  "createdAt": "1970-01-01T00:00:00.000+00:00",
@@ -1167,6 +1207,7 @@ Array [
1167
1207
  "repostCount": 0,
1168
1208
  "uri": "record(10)",
1169
1209
  "viewer": Object {
1210
+ "embeddingDisabled": false,
1170
1211
  "threadMuted": false,
1171
1212
  },
1172
1213
  },
@@ -1204,6 +1245,7 @@ Array [
1204
1245
  "indexedAt": "1970-01-01T00:00:00.000Z",
1205
1246
  "labels": Array [],
1206
1247
  "likeCount": 3,
1248
+ "quoteCount": 0,
1207
1249
  "record": Object {
1208
1250
  "$type": "app.bsky.feed.post",
1209
1251
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -1213,6 +1255,7 @@ Array [
1213
1255
  "repostCount": 1,
1214
1256
  "uri": "record(2)",
1215
1257
  "viewer": Object {
1258
+ "embeddingDisabled": false,
1216
1259
  "threadMuted": false,
1217
1260
  },
1218
1261
  },
@@ -1238,6 +1281,7 @@ Array [
1238
1281
  "indexedAt": "1970-01-01T00:00:00.000Z",
1239
1282
  "labels": Array [],
1240
1283
  "likeCount": 0,
1284
+ "quoteCount": 0,
1241
1285
  "record": Object {
1242
1286
  "$type": "app.bsky.feed.post",
1243
1287
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -1247,6 +1291,7 @@ Array [
1247
1291
  "repostCount": 0,
1248
1292
  "uri": "record(13)",
1249
1293
  "viewer": Object {
1294
+ "embeddingDisabled": false,
1250
1295
  "threadMuted": false,
1251
1296
  },
1252
1297
  },
@@ -1312,6 +1357,7 @@ Array [
1312
1357
  },
1313
1358
  ],
1314
1359
  "likeCount": 0,
1360
+ "quoteCount": 1,
1315
1361
  "replyCount": 0,
1316
1362
  "repostCount": 0,
1317
1363
  "uri": "record(15)",
@@ -1338,6 +1384,7 @@ Array [
1338
1384
  },
1339
1385
  ],
1340
1386
  "likeCount": 2,
1387
+ "quoteCount": 1,
1341
1388
  "record": Object {
1342
1389
  "$type": "app.bsky.feed.post",
1343
1390
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -1383,6 +1430,7 @@ Array [
1383
1430
  "repostCount": 0,
1384
1431
  "uri": "record(14)",
1385
1432
  "viewer": Object {
1433
+ "embeddingDisabled": false,
1386
1434
  "like": "record(16)",
1387
1435
  "threadMuted": false,
1388
1436
  },
@@ -1416,6 +1464,7 @@ Array [
1416
1464
  },
1417
1465
  ],
1418
1466
  "likeCount": 0,
1467
+ "quoteCount": 1,
1419
1468
  "record": Object {
1420
1469
  "$type": "app.bsky.feed.post",
1421
1470
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -1429,6 +1478,7 @@ Array [
1429
1478
  "repostCount": 0,
1430
1479
  "uri": "record(15)",
1431
1480
  "viewer": Object {
1481
+ "embeddingDisabled": false,
1432
1482
  "threadMuted": false,
1433
1483
  },
1434
1484
  },
@@ -1474,6 +1524,7 @@ Array [
1474
1524
  },
1475
1525
  ],
1476
1526
  "likeCount": 0,
1527
+ "quoteCount": 0,
1477
1528
  "record": Object {
1478
1529
  "$type": "app.bsky.feed.post",
1479
1530
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -1491,6 +1542,7 @@ Array [
1491
1542
  "repostCount": 0,
1492
1543
  "uri": "record(17)",
1493
1544
  "viewer": Object {
1545
+ "embeddingDisabled": false,
1494
1546
  "threadMuted": false,
1495
1547
  },
1496
1548
  },
@@ -1533,6 +1585,7 @@ Array [
1533
1585
  "indexedAt": "1970-01-01T00:00:00.000Z",
1534
1586
  "labels": Array [],
1535
1587
  "likeCount": 0,
1588
+ "quoteCount": 0,
1536
1589
  "record": Object {
1537
1590
  "$type": "app.bsky.feed.post",
1538
1591
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -1552,6 +1605,7 @@ Array [
1552
1605
  "repostCount": 1,
1553
1606
  "uri": "record(0)",
1554
1607
  "viewer": Object {
1608
+ "embeddingDisabled": false,
1555
1609
  "threadMuted": false,
1556
1610
  },
1557
1611
  },
@@ -1647,6 +1701,7 @@ Array [
1647
1701
  },
1648
1702
  ],
1649
1703
  "likeCount": 0,
1704
+ "quoteCount": 0,
1650
1705
  "record": Object {
1651
1706
  "$type": "app.bsky.feed.post",
1652
1707
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -1682,6 +1737,7 @@ Array [
1682
1737
  "repostCount": 0,
1683
1738
  "uri": "record(3)",
1684
1739
  "viewer": Object {
1740
+ "embeddingDisabled": false,
1685
1741
  "threadMuted": false,
1686
1742
  },
1687
1743
  },
@@ -1718,6 +1774,7 @@ Array [
1718
1774
  "indexedAt": "1970-01-01T00:00:00.000Z",
1719
1775
  "labels": Array [],
1720
1776
  "likeCount": 3,
1777
+ "quoteCount": 0,
1721
1778
  "record": Object {
1722
1779
  "$type": "app.bsky.feed.post",
1723
1780
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -1727,6 +1784,7 @@ Array [
1727
1784
  "repostCount": 1,
1728
1785
  "uri": "record(2)",
1729
1786
  "viewer": Object {
1787
+ "embeddingDisabled": false,
1730
1788
  "threadMuted": false,
1731
1789
  },
1732
1790
  },
@@ -1765,6 +1823,7 @@ Array [
1765
1823
  "indexedAt": "1970-01-01T00:00:00.000Z",
1766
1824
  "labels": Array [],
1767
1825
  "likeCount": 3,
1826
+ "quoteCount": 0,
1768
1827
  "record": Object {
1769
1828
  "$type": "app.bsky.feed.post",
1770
1829
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -1774,6 +1833,7 @@ Array [
1774
1833
  "repostCount": 1,
1775
1834
  "uri": "record(2)",
1776
1835
  "viewer": Object {
1836
+ "embeddingDisabled": false,
1777
1837
  "threadMuted": false,
1778
1838
  },
1779
1839
  },
@@ -1878,6 +1938,7 @@ Array [
1878
1938
  },
1879
1939
  ],
1880
1940
  "likeCount": 0,
1941
+ "quoteCount": 1,
1881
1942
  "replyCount": 0,
1882
1943
  "repostCount": 0,
1883
1944
  "uri": "record(11)",
@@ -1905,6 +1966,7 @@ Array [
1905
1966
  },
1906
1967
  ],
1907
1968
  "likeCount": 2,
1969
+ "quoteCount": 1,
1908
1970
  "replyCount": 0,
1909
1971
  "repostCount": 0,
1910
1972
  "uri": "record(8)",
@@ -1954,6 +2016,7 @@ Array [
1954
2016
  "indexedAt": "1970-01-01T00:00:00.000Z",
1955
2017
  "labels": Array [],
1956
2018
  "likeCount": 0,
2019
+ "quoteCount": 1,
1957
2020
  "record": Object {
1958
2021
  "$type": "app.bsky.feed.post",
1959
2022
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -1984,6 +2047,7 @@ Array [
1984
2047
  "repostCount": 1,
1985
2048
  "uri": "record(7)",
1986
2049
  "viewer": Object {
2050
+ "embeddingDisabled": false,
1987
2051
  "threadMuted": false,
1988
2052
  },
1989
2053
  },
@@ -2036,6 +2100,7 @@ Array [
2036
2100
  "indexedAt": "1970-01-01T00:00:00.000Z",
2037
2101
  "labels": Array [],
2038
2102
  "likeCount": 0,
2103
+ "quoteCount": 0,
2039
2104
  "record": Object {
2040
2105
  "$type": "app.bsky.feed.post",
2041
2106
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -2055,6 +2120,7 @@ Array [
2055
2120
  "repostCount": 1,
2056
2121
  "uri": "record(0)",
2057
2122
  "viewer": Object {
2123
+ "embeddingDisabled": false,
2058
2124
  "threadMuted": false,
2059
2125
  },
2060
2126
  },
@@ -2131,6 +2197,7 @@ Array [
2131
2197
  },
2132
2198
  ],
2133
2199
  "likeCount": 0,
2200
+ "quoteCount": 0,
2134
2201
  "record": Object {
2135
2202
  "$type": "app.bsky.feed.post",
2136
2203
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -2166,6 +2233,7 @@ Array [
2166
2233
  "repostCount": 0,
2167
2234
  "uri": "record(3)",
2168
2235
  "viewer": Object {
2236
+ "embeddingDisabled": false,
2169
2237
  "threadMuted": false,
2170
2238
  },
2171
2239
  },
@@ -2202,6 +2270,7 @@ Array [
2202
2270
  "indexedAt": "1970-01-01T00:00:00.000Z",
2203
2271
  "labels": Array [],
2204
2272
  "likeCount": 3,
2273
+ "quoteCount": 0,
2205
2274
  "record": Object {
2206
2275
  "$type": "app.bsky.feed.post",
2207
2276
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -2211,6 +2280,7 @@ Array [
2211
2280
  "repostCount": 1,
2212
2281
  "uri": "record(2)",
2213
2282
  "viewer": Object {
2283
+ "embeddingDisabled": false,
2214
2284
  "threadMuted": false,
2215
2285
  },
2216
2286
  },
@@ -2233,6 +2303,7 @@ Array [
2233
2303
  "indexedAt": "1970-01-01T00:00:00.000Z",
2234
2304
  "labels": Array [],
2235
2305
  "likeCount": 0,
2306
+ "quoteCount": 0,
2236
2307
  "record": Object {
2237
2308
  "$type": "app.bsky.feed.post",
2238
2309
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -2252,6 +2323,7 @@ Array [
2252
2323
  "repostCount": 0,
2253
2324
  "uri": "record(12)",
2254
2325
  "viewer": Object {
2326
+ "embeddingDisabled": false,
2255
2327
  "threadMuted": false,
2256
2328
  },
2257
2329
  },
@@ -2289,6 +2361,7 @@ Array [
2289
2361
  "indexedAt": "1970-01-01T00:00:00.000Z",
2290
2362
  "labels": Array [],
2291
2363
  "likeCount": 3,
2364
+ "quoteCount": 0,
2292
2365
  "record": Object {
2293
2366
  "$type": "app.bsky.feed.post",
2294
2367
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -2298,6 +2371,7 @@ Array [
2298
2371
  "repostCount": 1,
2299
2372
  "uri": "record(2)",
2300
2373
  "viewer": Object {
2374
+ "embeddingDisabled": false,
2301
2375
  "threadMuted": false,
2302
2376
  },
2303
2377
  },
@@ -2334,6 +2408,7 @@ Array [
2334
2408
  "indexedAt": "1970-01-01T00:00:00.000Z",
2335
2409
  "labels": Array [],
2336
2410
  "likeCount": 3,
2411
+ "quoteCount": 0,
2337
2412
  "record": Object {
2338
2413
  "$type": "app.bsky.feed.post",
2339
2414
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -2343,6 +2418,7 @@ Array [
2343
2418
  "repostCount": 1,
2344
2419
  "uri": "record(2)",
2345
2420
  "viewer": Object {
2421
+ "embeddingDisabled": false,
2346
2422
  "threadMuted": false,
2347
2423
  },
2348
2424
  },
@@ -2393,6 +2469,7 @@ Array [
2393
2469
  },
2394
2470
  ],
2395
2471
  "likeCount": 0,
2472
+ "quoteCount": 0,
2396
2473
  "record": Object {
2397
2474
  "$type": "app.bsky.feed.post",
2398
2475
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -2428,6 +2505,7 @@ Array [
2428
2505
  "repostCount": 0,
2429
2506
  "uri": "record(3)",
2430
2507
  "viewer": Object {
2508
+ "embeddingDisabled": false,
2431
2509
  "threadMuted": false,
2432
2510
  },
2433
2511
  },
@@ -2465,6 +2543,7 @@ Array [
2465
2543
  "indexedAt": "1970-01-01T00:00:00.000Z",
2466
2544
  "labels": Array [],
2467
2545
  "likeCount": 3,
2546
+ "quoteCount": 0,
2468
2547
  "record": Object {
2469
2548
  "$type": "app.bsky.feed.post",
2470
2549
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -2474,6 +2553,7 @@ Array [
2474
2553
  "repostCount": 1,
2475
2554
  "uri": "record(2)",
2476
2555
  "viewer": Object {
2556
+ "embeddingDisabled": false,
2477
2557
  "threadMuted": false,
2478
2558
  },
2479
2559
  },
@@ -2510,6 +2590,7 @@ Array [
2510
2590
  "indexedAt": "1970-01-01T00:00:00.000Z",
2511
2591
  "labels": Array [],
2512
2592
  "likeCount": 3,
2593
+ "quoteCount": 0,
2513
2594
  "record": Object {
2514
2595
  "$type": "app.bsky.feed.post",
2515
2596
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -2519,6 +2600,7 @@ Array [
2519
2600
  "repostCount": 1,
2520
2601
  "uri": "record(2)",
2521
2602
  "viewer": Object {
2603
+ "embeddingDisabled": false,
2522
2604
  "threadMuted": false,
2523
2605
  },
2524
2606
  },
@@ -2602,6 +2684,7 @@ Array [
2602
2684
  },
2603
2685
  ],
2604
2686
  "likeCount": 2,
2687
+ "quoteCount": 1,
2605
2688
  "replyCount": 0,
2606
2689
  "repostCount": 0,
2607
2690
  "uri": "record(8)",
@@ -2652,6 +2735,7 @@ Array [
2652
2735
  "indexedAt": "1970-01-01T00:00:00.000Z",
2653
2736
  "labels": Array [],
2654
2737
  "likeCount": 0,
2738
+ "quoteCount": 1,
2655
2739
  "replyCount": 0,
2656
2740
  "repostCount": 1,
2657
2741
  "uri": "record(7)",
@@ -2694,6 +2778,7 @@ Array [
2694
2778
  },
2695
2779
  ],
2696
2780
  "likeCount": 2,
2781
+ "quoteCount": 0,
2697
2782
  "record": Object {
2698
2783
  "$type": "app.bsky.feed.post",
2699
2784
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -2710,6 +2795,7 @@ Array [
2710
2795
  "repostCount": 0,
2711
2796
  "uri": "record(13)",
2712
2797
  "viewer": Object {
2798
+ "embeddingDisabled": false,
2713
2799
  "threadMuted": false,
2714
2800
  },
2715
2801
  },
@@ -2734,6 +2820,7 @@ Array [
2734
2820
  "indexedAt": "1970-01-01T00:00:00.000Z",
2735
2821
  "labels": Array [],
2736
2822
  "likeCount": 0,
2823
+ "quoteCount": 0,
2737
2824
  "record": Object {
2738
2825
  "$type": "app.bsky.feed.post",
2739
2826
  "createdAt": "1970-01-01T00:00:00.000+00:00",
@@ -2743,6 +2830,7 @@ Array [
2743
2830
  "repostCount": 0,
2744
2831
  "uri": "record(14)",
2745
2832
  "viewer": Object {
2833
+ "embeddingDisabled": false,
2746
2834
  "threadMuted": false,
2747
2835
  },
2748
2836
  },
@@ -2780,6 +2868,7 @@ Array [
2780
2868
  "indexedAt": "1970-01-01T00:00:00.000Z",
2781
2869
  "labels": Array [],
2782
2870
  "likeCount": 3,
2871
+ "quoteCount": 0,
2783
2872
  "record": Object {
2784
2873
  "$type": "app.bsky.feed.post",
2785
2874
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -2789,6 +2878,7 @@ Array [
2789
2878
  "repostCount": 1,
2790
2879
  "uri": "record(2)",
2791
2880
  "viewer": Object {
2881
+ "embeddingDisabled": false,
2792
2882
  "threadMuted": false,
2793
2883
  },
2794
2884
  },
@@ -2874,6 +2964,7 @@ Array [
2874
2964
  },
2875
2965
  ],
2876
2966
  "likeCount": 0,
2967
+ "quoteCount": 1,
2877
2968
  "replyCount": 0,
2878
2969
  "repostCount": 0,
2879
2970
  "uri": "record(11)",
@@ -2901,6 +2992,7 @@ Array [
2901
2992
  },
2902
2993
  ],
2903
2994
  "likeCount": 2,
2995
+ "quoteCount": 1,
2904
2996
  "replyCount": 0,
2905
2997
  "repostCount": 0,
2906
2998
  "uri": "record(8)",
@@ -2950,6 +3042,7 @@ Array [
2950
3042
  "indexedAt": "1970-01-01T00:00:00.000Z",
2951
3043
  "labels": Array [],
2952
3044
  "likeCount": 0,
3045
+ "quoteCount": 1,
2953
3046
  "record": Object {
2954
3047
  "$type": "app.bsky.feed.post",
2955
3048
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -2980,6 +3073,7 @@ Array [
2980
3073
  "repostCount": 1,
2981
3074
  "uri": "record(7)",
2982
3075
  "viewer": Object {
3076
+ "embeddingDisabled": false,
2983
3077
  "threadMuted": false,
2984
3078
  },
2985
3079
  },
@@ -3005,6 +3099,7 @@ Array [
3005
3099
  "indexedAt": "1970-01-01T00:00:00.000Z",
3006
3100
  "labels": Array [],
3007
3101
  "likeCount": 0,
3102
+ "quoteCount": 0,
3008
3103
  "record": Object {
3009
3104
  "$type": "app.bsky.feed.post",
3010
3105
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -3014,6 +3109,7 @@ Array [
3014
3109
  "repostCount": 0,
3015
3110
  "uri": "record(15)",
3016
3111
  "viewer": Object {
3112
+ "embeddingDisabled": false,
3017
3113
  "threadMuted": false,
3018
3114
  },
3019
3115
  },
@@ -3079,6 +3175,7 @@ Array [
3079
3175
  },
3080
3176
  ],
3081
3177
  "likeCount": 0,
3178
+ "quoteCount": 1,
3082
3179
  "replyCount": 0,
3083
3180
  "repostCount": 0,
3084
3181
  "uri": "record(11)",
@@ -3105,6 +3202,7 @@ Array [
3105
3202
  },
3106
3203
  ],
3107
3204
  "likeCount": 2,
3205
+ "quoteCount": 1,
3108
3206
  "record": Object {
3109
3207
  "$type": "app.bsky.feed.post",
3110
3208
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -3150,6 +3248,7 @@ Array [
3150
3248
  "repostCount": 0,
3151
3249
  "uri": "record(8)",
3152
3250
  "viewer": Object {
3251
+ "embeddingDisabled": false,
3153
3252
  "like": "record(16)",
3154
3253
  "threadMuted": false,
3155
3254
  },
@@ -3183,6 +3282,7 @@ Array [
3183
3282
  },
3184
3283
  ],
3185
3284
  "likeCount": 0,
3285
+ "quoteCount": 1,
3186
3286
  "record": Object {
3187
3287
  "$type": "app.bsky.feed.post",
3188
3288
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -3196,6 +3296,7 @@ Array [
3196
3296
  "repostCount": 0,
3197
3297
  "uri": "record(11)",
3198
3298
  "viewer": Object {
3299
+ "embeddingDisabled": false,
3199
3300
  "threadMuted": false,
3200
3301
  },
3201
3302
  },
@@ -3241,6 +3342,7 @@ Array [
3241
3342
  },
3242
3343
  ],
3243
3344
  "likeCount": 0,
3345
+ "quoteCount": 0,
3244
3346
  "record": Object {
3245
3347
  "$type": "app.bsky.feed.post",
3246
3348
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -3258,6 +3360,7 @@ Array [
3258
3360
  "repostCount": 0,
3259
3361
  "uri": "record(17)",
3260
3362
  "viewer": Object {
3363
+ "embeddingDisabled": false,
3261
3364
  "threadMuted": false,
3262
3365
  },
3263
3366
  },
@@ -3345,6 +3448,7 @@ Array [
3345
3448
  },
3346
3449
  ],
3347
3450
  "likeCount": 0,
3451
+ "quoteCount": 1,
3348
3452
  "replyCount": 0,
3349
3453
  "repostCount": 0,
3350
3454
  "uri": "record(4)",
@@ -3372,6 +3476,7 @@ Array [
3372
3476
  },
3373
3477
  ],
3374
3478
  "likeCount": 2,
3479
+ "quoteCount": 1,
3375
3480
  "replyCount": 0,
3376
3481
  "repostCount": 0,
3377
3482
  "uri": "record(2)",
@@ -3421,6 +3526,7 @@ Array [
3421
3526
  "indexedAt": "1970-01-01T00:00:00.000Z",
3422
3527
  "labels": Array [],
3423
3528
  "likeCount": 0,
3529
+ "quoteCount": 1,
3424
3530
  "record": Object {
3425
3531
  "$type": "app.bsky.feed.post",
3426
3532
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -3451,6 +3557,7 @@ Array [
3451
3557
  "repostCount": 1,
3452
3558
  "uri": "record(0)",
3453
3559
  "viewer": Object {
3560
+ "embeddingDisabled": false,
3454
3561
  "threadMuted": false,
3455
3562
  },
3456
3563
  },
@@ -3504,6 +3611,7 @@ Array [
3504
3611
  "indexedAt": "1970-01-01T00:00:00.000Z",
3505
3612
  "labels": Array [],
3506
3613
  "likeCount": 0,
3614
+ "quoteCount": 0,
3507
3615
  "record": Object {
3508
3616
  "$type": "app.bsky.feed.post",
3509
3617
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -3523,6 +3631,7 @@ Array [
3523
3631
  "repostCount": 1,
3524
3632
  "uri": "record(5)",
3525
3633
  "viewer": Object {
3634
+ "embeddingDisabled": false,
3526
3635
  "threadMuted": false,
3527
3636
  },
3528
3637
  },
@@ -3599,6 +3708,7 @@ Array [
3599
3708
  },
3600
3709
  ],
3601
3710
  "likeCount": 0,
3711
+ "quoteCount": 0,
3602
3712
  "record": Object {
3603
3713
  "$type": "app.bsky.feed.post",
3604
3714
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -3634,6 +3744,7 @@ Array [
3634
3744
  "repostCount": 0,
3635
3745
  "uri": "record(10)",
3636
3746
  "viewer": Object {
3747
+ "embeddingDisabled": false,
3637
3748
  "threadMuted": false,
3638
3749
  },
3639
3750
  },
@@ -3672,6 +3783,7 @@ Array [
3672
3783
  "indexedAt": "1970-01-01T00:00:00.000Z",
3673
3784
  "labels": Array [],
3674
3785
  "likeCount": 3,
3786
+ "quoteCount": 0,
3675
3787
  "record": Object {
3676
3788
  "$type": "app.bsky.feed.post",
3677
3789
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -3681,6 +3793,7 @@ Array [
3681
3793
  "repostCount": 1,
3682
3794
  "uri": "record(9)",
3683
3795
  "viewer": Object {
3796
+ "embeddingDisabled": false,
3684
3797
  "like": "record(11)",
3685
3798
  "threadMuted": false,
3686
3799
  },
@@ -3703,6 +3816,7 @@ Array [
3703
3816
  "indexedAt": "1970-01-01T00:00:00.000Z",
3704
3817
  "labels": Array [],
3705
3818
  "likeCount": 0,
3819
+ "quoteCount": 0,
3706
3820
  "record": Object {
3707
3821
  "$type": "app.bsky.feed.post",
3708
3822
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -3722,6 +3836,7 @@ Array [
3722
3836
  "repostCount": 0,
3723
3837
  "uri": "record(12)",
3724
3838
  "viewer": Object {
3839
+ "embeddingDisabled": false,
3725
3840
  "threadMuted": false,
3726
3841
  },
3727
3842
  },
@@ -3761,6 +3876,7 @@ Array [
3761
3876
  "indexedAt": "1970-01-01T00:00:00.000Z",
3762
3877
  "labels": Array [],
3763
3878
  "likeCount": 3,
3879
+ "quoteCount": 0,
3764
3880
  "record": Object {
3765
3881
  "$type": "app.bsky.feed.post",
3766
3882
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -3770,6 +3886,7 @@ Array [
3770
3886
  "repostCount": 1,
3771
3887
  "uri": "record(9)",
3772
3888
  "viewer": Object {
3889
+ "embeddingDisabled": false,
3773
3890
  "like": "record(11)",
3774
3891
  "threadMuted": false,
3775
3892
  },
@@ -3809,6 +3926,7 @@ Array [
3809
3926
  "indexedAt": "1970-01-01T00:00:00.000Z",
3810
3927
  "labels": Array [],
3811
3928
  "likeCount": 3,
3929
+ "quoteCount": 0,
3812
3930
  "record": Object {
3813
3931
  "$type": "app.bsky.feed.post",
3814
3932
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -3818,6 +3936,7 @@ Array [
3818
3936
  "repostCount": 1,
3819
3937
  "uri": "record(9)",
3820
3938
  "viewer": Object {
3939
+ "embeddingDisabled": false,
3821
3940
  "like": "record(11)",
3822
3941
  "threadMuted": false,
3823
3942
  },
@@ -3867,6 +3986,7 @@ Array [
3867
3986
  },
3868
3987
  ],
3869
3988
  "likeCount": 0,
3989
+ "quoteCount": 0,
3870
3990
  "record": Object {
3871
3991
  "$type": "app.bsky.feed.post",
3872
3992
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -3902,6 +4022,7 @@ Array [
3902
4022
  "repostCount": 0,
3903
4023
  "uri": "record(10)",
3904
4024
  "viewer": Object {
4025
+ "embeddingDisabled": false,
3905
4026
  "threadMuted": false,
3906
4027
  },
3907
4028
  },
@@ -3941,6 +4062,7 @@ Array [
3941
4062
  "indexedAt": "1970-01-01T00:00:00.000Z",
3942
4063
  "labels": Array [],
3943
4064
  "likeCount": 3,
4065
+ "quoteCount": 0,
3944
4066
  "record": Object {
3945
4067
  "$type": "app.bsky.feed.post",
3946
4068
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -3950,6 +4072,7 @@ Array [
3950
4072
  "repostCount": 1,
3951
4073
  "uri": "record(9)",
3952
4074
  "viewer": Object {
4075
+ "embeddingDisabled": false,
3953
4076
  "like": "record(11)",
3954
4077
  "threadMuted": false,
3955
4078
  },
@@ -3989,6 +4112,7 @@ Array [
3989
4112
  "indexedAt": "1970-01-01T00:00:00.000Z",
3990
4113
  "labels": Array [],
3991
4114
  "likeCount": 3,
4115
+ "quoteCount": 0,
3992
4116
  "record": Object {
3993
4117
  "$type": "app.bsky.feed.post",
3994
4118
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -3998,6 +4122,7 @@ Array [
3998
4122
  "repostCount": 1,
3999
4123
  "uri": "record(9)",
4000
4124
  "viewer": Object {
4125
+ "embeddingDisabled": false,
4001
4126
  "like": "record(11)",
4002
4127
  "threadMuted": false,
4003
4128
  },
@@ -4083,6 +4208,7 @@ Array [
4083
4208
  },
4084
4209
  ],
4085
4210
  "likeCount": 2,
4211
+ "quoteCount": 1,
4086
4212
  "replyCount": 0,
4087
4213
  "repostCount": 0,
4088
4214
  "uri": "record(2)",
@@ -4133,6 +4259,7 @@ Array [
4133
4259
  "indexedAt": "1970-01-01T00:00:00.000Z",
4134
4260
  "labels": Array [],
4135
4261
  "likeCount": 0,
4262
+ "quoteCount": 1,
4136
4263
  "replyCount": 0,
4137
4264
  "repostCount": 1,
4138
4265
  "uri": "record(0)",
@@ -4175,6 +4302,7 @@ Array [
4175
4302
  },
4176
4303
  ],
4177
4304
  "likeCount": 2,
4305
+ "quoteCount": 0,
4178
4306
  "record": Object {
4179
4307
  "$type": "app.bsky.feed.post",
4180
4308
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -4191,6 +4319,7 @@ Array [
4191
4319
  "repostCount": 0,
4192
4320
  "uri": "record(13)",
4193
4321
  "viewer": Object {
4322
+ "embeddingDisabled": false,
4194
4323
  "like": "record(14)",
4195
4324
  "threadMuted": false,
4196
4325
  },
@@ -4214,6 +4343,7 @@ Array [
4214
4343
  "indexedAt": "1970-01-01T00:00:00.000Z",
4215
4344
  "labels": Array [],
4216
4345
  "likeCount": 0,
4346
+ "quoteCount": 0,
4217
4347
  "record": Object {
4218
4348
  "$type": "app.bsky.feed.post",
4219
4349
  "createdAt": "1970-01-01T00:00:00.000+00:00",
@@ -4223,6 +4353,7 @@ Array [
4223
4353
  "repostCount": 0,
4224
4354
  "uri": "record(15)",
4225
4355
  "viewer": Object {
4356
+ "embeddingDisabled": false,
4226
4357
  "threadMuted": false,
4227
4358
  },
4228
4359
  },
@@ -4262,6 +4393,7 @@ Array [
4262
4393
  "indexedAt": "1970-01-01T00:00:00.000Z",
4263
4394
  "labels": Array [],
4264
4395
  "likeCount": 3,
4396
+ "quoteCount": 0,
4265
4397
  "record": Object {
4266
4398
  "$type": "app.bsky.feed.post",
4267
4399
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -4271,6 +4403,7 @@ Array [
4271
4403
  "repostCount": 1,
4272
4404
  "uri": "record(9)",
4273
4405
  "viewer": Object {
4406
+ "embeddingDisabled": false,
4274
4407
  "like": "record(11)",
4275
4408
  "threadMuted": false,
4276
4409
  },
@@ -4334,6 +4467,7 @@ Array [
4334
4467
  },
4335
4468
  ],
4336
4469
  "likeCount": 0,
4470
+ "quoteCount": 1,
4337
4471
  "replyCount": 0,
4338
4472
  "repostCount": 0,
4339
4473
  "uri": "record(4)",
@@ -4360,6 +4494,7 @@ Array [
4360
4494
  },
4361
4495
  ],
4362
4496
  "likeCount": 2,
4497
+ "quoteCount": 1,
4363
4498
  "record": Object {
4364
4499
  "$type": "app.bsky.feed.post",
4365
4500
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -4405,6 +4540,7 @@ Array [
4405
4540
  "repostCount": 0,
4406
4541
  "uri": "record(2)",
4407
4542
  "viewer": Object {
4543
+ "embeddingDisabled": false,
4408
4544
  "like": "record(16)",
4409
4545
  "threadMuted": false,
4410
4546
  },
@@ -4436,6 +4572,7 @@ Array [
4436
4572
  },
4437
4573
  ],
4438
4574
  "likeCount": 0,
4575
+ "quoteCount": 1,
4439
4576
  "record": Object {
4440
4577
  "$type": "app.bsky.feed.post",
4441
4578
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -4449,6 +4586,7 @@ Array [
4449
4586
  "repostCount": 0,
4450
4587
  "uri": "record(4)",
4451
4588
  "viewer": Object {
4589
+ "embeddingDisabled": false,
4452
4590
  "threadMuted": false,
4453
4591
  },
4454
4592
  },
@@ -4496,6 +4634,7 @@ Array [
4496
4634
  },
4497
4635
  ],
4498
4636
  "likeCount": 0,
4637
+ "quoteCount": 0,
4499
4638
  "record": Object {
4500
4639
  "$type": "app.bsky.feed.post",
4501
4640
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -4513,6 +4652,7 @@ Array [
4513
4652
  "repostCount": 0,
4514
4653
  "uri": "record(17)",
4515
4654
  "viewer": Object {
4655
+ "embeddingDisabled": false,
4516
4656
  "threadMuted": false,
4517
4657
  },
4518
4658
  },
@@ -4599,6 +4739,7 @@ Array [
4599
4739
  },
4600
4740
  ],
4601
4741
  "likeCount": 0,
4742
+ "quoteCount": 1,
4602
4743
  "replyCount": 0,
4603
4744
  "repostCount": 0,
4604
4745
  "uri": "record(2)",
@@ -4626,6 +4767,7 @@ Array [
4626
4767
  },
4627
4768
  ],
4628
4769
  "likeCount": 2,
4770
+ "quoteCount": 1,
4629
4771
  "replyCount": 0,
4630
4772
  "repostCount": 0,
4631
4773
  "uri": "record(1)",
@@ -4675,6 +4817,7 @@ Array [
4675
4817
  "indexedAt": "1970-01-01T00:00:00.000Z",
4676
4818
  "labels": Array [],
4677
4819
  "likeCount": 0,
4820
+ "quoteCount": 1,
4678
4821
  "record": Object {
4679
4822
  "$type": "app.bsky.feed.post",
4680
4823
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -4705,6 +4848,7 @@ Array [
4705
4848
  "repostCount": 1,
4706
4849
  "uri": "record(0)",
4707
4850
  "viewer": Object {
4851
+ "embeddingDisabled": false,
4708
4852
  "repost": "record(4)",
4709
4853
  "threadMuted": false,
4710
4854
  },
@@ -4758,6 +4902,7 @@ Array [
4758
4902
  "indexedAt": "1970-01-01T00:00:00.000Z",
4759
4903
  "labels": Array [],
4760
4904
  "likeCount": 0,
4905
+ "quoteCount": 0,
4761
4906
  "record": Object {
4762
4907
  "$type": "app.bsky.feed.post",
4763
4908
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -4777,6 +4922,7 @@ Array [
4777
4922
  "repostCount": 1,
4778
4923
  "uri": "record(5)",
4779
4924
  "viewer": Object {
4925
+ "embeddingDisabled": false,
4780
4926
  "threadMuted": false,
4781
4927
  },
4782
4928
  },
@@ -4854,6 +5000,7 @@ Array [
4854
5000
  },
4855
5001
  ],
4856
5002
  "likeCount": 0,
5003
+ "quoteCount": 0,
4857
5004
  "record": Object {
4858
5005
  "$type": "app.bsky.feed.post",
4859
5006
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -4889,6 +5036,7 @@ Array [
4889
5036
  "repostCount": 0,
4890
5037
  "uri": "record(10)",
4891
5038
  "viewer": Object {
5039
+ "embeddingDisabled": false,
4892
5040
  "threadMuted": false,
4893
5041
  },
4894
5042
  },
@@ -4927,6 +5075,7 @@ Array [
4927
5075
  "indexedAt": "1970-01-01T00:00:00.000Z",
4928
5076
  "labels": Array [],
4929
5077
  "likeCount": 3,
5078
+ "quoteCount": 0,
4930
5079
  "record": Object {
4931
5080
  "$type": "app.bsky.feed.post",
4932
5081
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -4936,6 +5085,7 @@ Array [
4936
5085
  "repostCount": 1,
4937
5086
  "uri": "record(9)",
4938
5087
  "viewer": Object {
5088
+ "embeddingDisabled": false,
4939
5089
  "like": "record(11)",
4940
5090
  "threadMuted": false,
4941
5091
  },
@@ -4957,6 +5107,7 @@ Array [
4957
5107
  "indexedAt": "1970-01-01T00:00:00.000Z",
4958
5108
  "labels": Array [],
4959
5109
  "likeCount": 0,
5110
+ "quoteCount": 0,
4960
5111
  "record": Object {
4961
5112
  "$type": "app.bsky.feed.post",
4962
5113
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -4976,6 +5127,7 @@ Array [
4976
5127
  "repostCount": 0,
4977
5128
  "uri": "record(12)",
4978
5129
  "viewer": Object {
5130
+ "embeddingDisabled": false,
4979
5131
  "threadMuted": false,
4980
5132
  },
4981
5133
  },
@@ -5015,6 +5167,7 @@ Array [
5015
5167
  "indexedAt": "1970-01-01T00:00:00.000Z",
5016
5168
  "labels": Array [],
5017
5169
  "likeCount": 3,
5170
+ "quoteCount": 0,
5018
5171
  "record": Object {
5019
5172
  "$type": "app.bsky.feed.post",
5020
5173
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -5024,6 +5177,7 @@ Array [
5024
5177
  "repostCount": 1,
5025
5178
  "uri": "record(9)",
5026
5179
  "viewer": Object {
5180
+ "embeddingDisabled": false,
5027
5181
  "like": "record(11)",
5028
5182
  "threadMuted": false,
5029
5183
  },
@@ -5063,6 +5217,7 @@ Array [
5063
5217
  "indexedAt": "1970-01-01T00:00:00.000Z",
5064
5218
  "labels": Array [],
5065
5219
  "likeCount": 3,
5220
+ "quoteCount": 0,
5066
5221
  "record": Object {
5067
5222
  "$type": "app.bsky.feed.post",
5068
5223
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -5072,6 +5227,7 @@ Array [
5072
5227
  "repostCount": 1,
5073
5228
  "uri": "record(9)",
5074
5229
  "viewer": Object {
5230
+ "embeddingDisabled": false,
5075
5231
  "like": "record(11)",
5076
5232
  "threadMuted": false,
5077
5233
  },
@@ -5155,6 +5311,7 @@ Array [
5155
5311
  },
5156
5312
  ],
5157
5313
  "likeCount": 2,
5314
+ "quoteCount": 1,
5158
5315
  "replyCount": 0,
5159
5316
  "repostCount": 0,
5160
5317
  "uri": "record(1)",
@@ -5205,6 +5362,7 @@ Array [
5205
5362
  "indexedAt": "1970-01-01T00:00:00.000Z",
5206
5363
  "labels": Array [],
5207
5364
  "likeCount": 0,
5365
+ "quoteCount": 1,
5208
5366
  "replyCount": 0,
5209
5367
  "repostCount": 1,
5210
5368
  "uri": "record(0)",
@@ -5247,6 +5405,7 @@ Array [
5247
5405
  },
5248
5406
  ],
5249
5407
  "likeCount": 2,
5408
+ "quoteCount": 0,
5250
5409
  "record": Object {
5251
5410
  "$type": "app.bsky.feed.post",
5252
5411
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -5263,6 +5422,7 @@ Array [
5263
5422
  "repostCount": 0,
5264
5423
  "uri": "record(13)",
5265
5424
  "viewer": Object {
5425
+ "embeddingDisabled": false,
5266
5426
  "like": "record(14)",
5267
5427
  "threadMuted": false,
5268
5428
  },
@@ -5303,6 +5463,7 @@ Array [
5303
5463
  "indexedAt": "1970-01-01T00:00:00.000Z",
5304
5464
  "labels": Array [],
5305
5465
  "likeCount": 3,
5466
+ "quoteCount": 0,
5306
5467
  "record": Object {
5307
5468
  "$type": "app.bsky.feed.post",
5308
5469
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -5312,6 +5473,7 @@ Array [
5312
5473
  "repostCount": 1,
5313
5474
  "uri": "record(9)",
5314
5475
  "viewer": Object {
5476
+ "embeddingDisabled": false,
5315
5477
  "like": "record(11)",
5316
5478
  "threadMuted": false,
5317
5479
  },
@@ -5375,6 +5537,7 @@ Array [
5375
5537
  },
5376
5538
  ],
5377
5539
  "likeCount": 0,
5540
+ "quoteCount": 1,
5378
5541
  "replyCount": 0,
5379
5542
  "repostCount": 0,
5380
5543
  "uri": "record(2)",
@@ -5401,6 +5564,7 @@ Array [
5401
5564
  },
5402
5565
  ],
5403
5566
  "likeCount": 2,
5567
+ "quoteCount": 1,
5404
5568
  "record": Object {
5405
5569
  "$type": "app.bsky.feed.post",
5406
5570
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -5446,6 +5610,7 @@ Array [
5446
5610
  "repostCount": 0,
5447
5611
  "uri": "record(1)",
5448
5612
  "viewer": Object {
5613
+ "embeddingDisabled": false,
5449
5614
  "threadMuted": false,
5450
5615
  },
5451
5616
  },
@@ -5493,6 +5658,7 @@ Array [
5493
5658
  },
5494
5659
  ],
5495
5660
  "likeCount": 0,
5661
+ "quoteCount": 0,
5496
5662
  "record": Object {
5497
5663
  "$type": "app.bsky.feed.post",
5498
5664
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -5510,6 +5676,7 @@ Array [
5510
5676
  "repostCount": 0,
5511
5677
  "uri": "record(15)",
5512
5678
  "viewer": Object {
5679
+ "embeddingDisabled": false,
5513
5680
  "threadMuted": false,
5514
5681
  },
5515
5682
  },
@@ -5553,6 +5720,7 @@ Array [
5553
5720
  "indexedAt": "1970-01-01T00:00:00.000Z",
5554
5721
  "labels": Array [],
5555
5722
  "likeCount": 0,
5723
+ "quoteCount": 0,
5556
5724
  "record": Object {
5557
5725
  "$type": "app.bsky.feed.post",
5558
5726
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -5572,6 +5740,7 @@ Array [
5572
5740
  "repostCount": 1,
5573
5741
  "uri": "record(0)",
5574
5742
  "viewer": Object {
5743
+ "embeddingDisabled": false,
5575
5744
  "repost": "record(5)",
5576
5745
  "threadMuted": false,
5577
5746
  },
@@ -5667,6 +5836,7 @@ Array [
5667
5836
  },
5668
5837
  ],
5669
5838
  "likeCount": 0,
5839
+ "quoteCount": 0,
5670
5840
  "record": Object {
5671
5841
  "$type": "app.bsky.feed.post",
5672
5842
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -5702,6 +5872,7 @@ Array [
5702
5872
  "repostCount": 0,
5703
5873
  "uri": "record(4)",
5704
5874
  "viewer": Object {
5875
+ "embeddingDisabled": false,
5705
5876
  "threadMuted": false,
5706
5877
  },
5707
5878
  },
@@ -5739,6 +5910,7 @@ Array [
5739
5910
  "indexedAt": "1970-01-01T00:00:00.000Z",
5740
5911
  "labels": Array [],
5741
5912
  "likeCount": 3,
5913
+ "quoteCount": 0,
5742
5914
  "record": Object {
5743
5915
  "$type": "app.bsky.feed.post",
5744
5916
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -5748,6 +5920,7 @@ Array [
5748
5920
  "repostCount": 1,
5749
5921
  "uri": "record(3)",
5750
5922
  "viewer": Object {
5923
+ "embeddingDisabled": false,
5751
5924
  "like": "record(7)",
5752
5925
  "repost": "record(6)",
5753
5926
  "threadMuted": false,
@@ -5789,6 +5962,7 @@ Array [
5789
5962
  "indexedAt": "1970-01-01T00:00:00.000Z",
5790
5963
  "labels": Array [],
5791
5964
  "likeCount": 3,
5965
+ "quoteCount": 0,
5792
5966
  "record": Object {
5793
5967
  "$type": "app.bsky.feed.post",
5794
5968
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -5798,6 +5972,7 @@ Array [
5798
5972
  "repostCount": 1,
5799
5973
  "uri": "record(3)",
5800
5974
  "viewer": Object {
5975
+ "embeddingDisabled": false,
5801
5976
  "like": "record(7)",
5802
5977
  "repost": "record(6)",
5803
5978
  "threadMuted": false,
@@ -5866,6 +6041,7 @@ Array [
5866
6041
  },
5867
6042
  ],
5868
6043
  "likeCount": 0,
6044
+ "quoteCount": 0,
5869
6045
  "record": Object {
5870
6046
  "$type": "app.bsky.feed.post",
5871
6047
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -5901,6 +6077,7 @@ Array [
5901
6077
  "repostCount": 0,
5902
6078
  "uri": "record(4)",
5903
6079
  "viewer": Object {
6080
+ "embeddingDisabled": false,
5904
6081
  "threadMuted": false,
5905
6082
  },
5906
6083
  },
@@ -5939,6 +6116,7 @@ Array [
5939
6116
  "indexedAt": "1970-01-01T00:00:00.000Z",
5940
6117
  "labels": Array [],
5941
6118
  "likeCount": 3,
6119
+ "quoteCount": 0,
5942
6120
  "record": Object {
5943
6121
  "$type": "app.bsky.feed.post",
5944
6122
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -5948,6 +6126,7 @@ Array [
5948
6126
  "repostCount": 1,
5949
6127
  "uri": "record(3)",
5950
6128
  "viewer": Object {
6129
+ "embeddingDisabled": false,
5951
6130
  "like": "record(7)",
5952
6131
  "repost": "record(6)",
5953
6132
  "threadMuted": false,
@@ -5987,6 +6166,7 @@ Array [
5987
6166
  "indexedAt": "1970-01-01T00:00:00.000Z",
5988
6167
  "labels": Array [],
5989
6168
  "likeCount": 3,
6169
+ "quoteCount": 0,
5990
6170
  "record": Object {
5991
6171
  "$type": "app.bsky.feed.post",
5992
6172
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -5996,6 +6176,7 @@ Array [
5996
6176
  "repostCount": 1,
5997
6177
  "uri": "record(3)",
5998
6178
  "viewer": Object {
6179
+ "embeddingDisabled": false,
5999
6180
  "like": "record(7)",
6000
6181
  "repost": "record(6)",
6001
6182
  "threadMuted": false,
@@ -6022,6 +6203,7 @@ Array [
6022
6203
  "indexedAt": "1970-01-01T00:00:00.000Z",
6023
6204
  "labels": Array [],
6024
6205
  "likeCount": 0,
6206
+ "quoteCount": 0,
6025
6207
  "record": Object {
6026
6208
  "$type": "app.bsky.feed.post",
6027
6209
  "createdAt": "1970-01-01T00:00:00.000+00:00",
@@ -6031,6 +6213,7 @@ Array [
6031
6213
  "repostCount": 0,
6032
6214
  "uri": "record(9)",
6033
6215
  "viewer": Object {
6216
+ "embeddingDisabled": false,
6034
6217
  "threadMuted": false,
6035
6218
  },
6036
6219
  },
@@ -6112,6 +6295,7 @@ Array [
6112
6295
  },
6113
6296
  ],
6114
6297
  "likeCount": 0,
6298
+ "quoteCount": 1,
6115
6299
  "replyCount": 0,
6116
6300
  "repostCount": 0,
6117
6301
  "uri": "record(12)",
@@ -6139,6 +6323,7 @@ Array [
6139
6323
  },
6140
6324
  ],
6141
6325
  "likeCount": 2,
6326
+ "quoteCount": 1,
6142
6327
  "replyCount": 0,
6143
6328
  "repostCount": 0,
6144
6329
  "uri": "record(11)",
@@ -6188,6 +6373,7 @@ Array [
6188
6373
  "indexedAt": "1970-01-01T00:00:00.000Z",
6189
6374
  "labels": Array [],
6190
6375
  "likeCount": 0,
6376
+ "quoteCount": 1,
6191
6377
  "record": Object {
6192
6378
  "$type": "app.bsky.feed.post",
6193
6379
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -6218,6 +6404,7 @@ Array [
6218
6404
  "repostCount": 1,
6219
6405
  "uri": "record(10)",
6220
6406
  "viewer": Object {
6407
+ "embeddingDisabled": false,
6221
6408
  "threadMuted": false,
6222
6409
  },
6223
6410
  },
@@ -6242,6 +6429,7 @@ Array [
6242
6429
  "indexedAt": "1970-01-01T00:00:00.000Z",
6243
6430
  "labels": Array [],
6244
6431
  "likeCount": 0,
6432
+ "quoteCount": 0,
6245
6433
  "record": Object {
6246
6434
  "$type": "app.bsky.feed.post",
6247
6435
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -6251,6 +6439,7 @@ Array [
6251
6439
  "repostCount": 0,
6252
6440
  "uri": "record(13)",
6253
6441
  "viewer": Object {
6442
+ "embeddingDisabled": false,
6254
6443
  "threadMuted": false,
6255
6444
  },
6256
6445
  },
@@ -6282,6 +6471,7 @@ Array [
6282
6471
  },
6283
6472
  ],
6284
6473
  "likeCount": 0,
6474
+ "quoteCount": 1,
6285
6475
  "record": Object {
6286
6476
  "$type": "app.bsky.feed.post",
6287
6477
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -6295,6 +6485,7 @@ Array [
6295
6485
  "repostCount": 0,
6296
6486
  "uri": "record(12)",
6297
6487
  "viewer": Object {
6488
+ "embeddingDisabled": false,
6298
6489
  "threadMuted": false,
6299
6490
  },
6300
6491
  },