@atproto/bsky 0.0.76 → 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.
Files changed (219) hide show
  1. package/CHANGELOG.md +11 -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/getPosts.js +4 -4
  7. package/dist/api/app/bsky/feed/getPosts.js.map +1 -1
  8. package/dist/api/app/bsky/feed/getQuotes.d.ts +4 -0
  9. package/dist/api/app/bsky/feed/getQuotes.d.ts.map +1 -0
  10. package/dist/api/app/bsky/feed/getQuotes.js +67 -0
  11. package/dist/api/app/bsky/feed/getQuotes.js.map +1 -0
  12. package/dist/api/app/bsky/feed/getRepostedBy.js +6 -6
  13. package/dist/api/app/bsky/feed/getRepostedBy.js.map +1 -1
  14. package/dist/api/app/bsky/feed/searchPosts.js +4 -4
  15. package/dist/api/app/bsky/feed/searchPosts.js.map +1 -1
  16. package/dist/api/app/bsky/graph/getFollowers.js +8 -8
  17. package/dist/api/app/bsky/graph/getFollowers.js.map +1 -1
  18. package/dist/api/app/bsky/graph/getList.js +3 -3
  19. package/dist/api/app/bsky/graph/getList.js.map +1 -1
  20. package/dist/api/app/bsky/notification/listNotifications.d.ts.map +1 -1
  21. package/dist/api/app/bsky/notification/listNotifications.js +29 -8
  22. package/dist/api/app/bsky/notification/listNotifications.js.map +1 -1
  23. package/dist/api/index.d.ts.map +1 -1
  24. package/dist/api/index.js +2 -0
  25. package/dist/api/index.js.map +1 -1
  26. package/dist/data-plane/server/db/database-schema.d.ts +4 -2
  27. package/dist/data-plane/server/db/database-schema.d.ts.map +1 -1
  28. package/dist/data-plane/server/db/migrations/20240723T220700077Z-quotes-post-aggs.d.ts +4 -0
  29. package/dist/data-plane/server/db/migrations/20240723T220700077Z-quotes-post-aggs.d.ts.map +1 -0
  30. package/dist/data-plane/server/db/migrations/20240723T220700077Z-quotes-post-aggs.js +15 -0
  31. package/dist/data-plane/server/db/migrations/20240723T220700077Z-quotes-post-aggs.js.map +1 -0
  32. package/dist/data-plane/server/db/migrations/20240723T220703655Z-quotes.d.ts +4 -0
  33. package/dist/data-plane/server/db/migrations/20240723T220703655Z-quotes.d.ts.map +1 -0
  34. package/dist/data-plane/server/db/migrations/20240723T220703655Z-quotes.js +30 -0
  35. package/dist/data-plane/server/db/migrations/20240723T220703655Z-quotes.js.map +1 -0
  36. package/dist/data-plane/server/db/migrations/20240801T193939827Z-post-gate.d.ts +4 -0
  37. package/dist/data-plane/server/db/migrations/20240801T193939827Z-post-gate.d.ts.map +1 -0
  38. package/dist/data-plane/server/db/migrations/20240801T193939827Z-post-gate.js +20 -0
  39. package/dist/data-plane/server/db/migrations/20240801T193939827Z-post-gate.js.map +1 -0
  40. package/dist/data-plane/server/db/migrations/20240808T224251220Z-post-gate-flags.d.ts +4 -0
  41. package/dist/data-plane/server/db/migrations/20240808T224251220Z-post-gate-flags.d.ts.map +1 -0
  42. package/dist/data-plane/server/db/migrations/20240808T224251220Z-post-gate-flags.js +28 -0
  43. package/dist/data-plane/server/db/migrations/20240808T224251220Z-post-gate-flags.js.map +1 -0
  44. package/dist/data-plane/server/db/migrations/index.d.ts +4 -0
  45. package/dist/data-plane/server/db/migrations/index.d.ts.map +1 -1
  46. package/dist/data-plane/server/db/migrations/index.js +5 -1
  47. package/dist/data-plane/server/db/migrations/index.js.map +1 -1
  48. package/dist/data-plane/server/db/tables/post-agg.d.ts +1 -0
  49. package/dist/data-plane/server/db/tables/post-agg.d.ts.map +1 -1
  50. package/dist/data-plane/server/db/tables/post-gate.d.ts +14 -0
  51. package/dist/data-plane/server/db/tables/post-gate.d.ts.map +1 -0
  52. package/dist/data-plane/server/db/tables/post-gate.js +4 -0
  53. package/dist/data-plane/server/db/tables/post-gate.js.map +1 -0
  54. package/dist/data-plane/server/db/tables/post.d.ts +3 -0
  55. package/dist/data-plane/server/db/tables/post.d.ts.map +1 -1
  56. package/dist/data-plane/server/db/tables/quote.d.ts +16 -0
  57. package/dist/data-plane/server/db/tables/quote.d.ts.map +1 -0
  58. package/dist/data-plane/server/db/tables/quote.js +4 -0
  59. package/dist/data-plane/server/db/tables/quote.js.map +1 -0
  60. package/dist/data-plane/server/indexing/index.d.ts +2 -0
  61. package/dist/data-plane/server/indexing/index.d.ts.map +1 -1
  62. package/dist/data-plane/server/indexing/index.js +6 -0
  63. package/dist/data-plane/server/indexing/index.js.map +1 -1
  64. package/dist/data-plane/server/indexing/plugins/post-gate.d.ts +10 -0
  65. package/dist/data-plane/server/indexing/plugins/post-gate.d.ts.map +1 -0
  66. package/dist/data-plane/server/indexing/plugins/post-gate.js +101 -0
  67. package/dist/data-plane/server/indexing/plugins/post-gate.js.map +1 -0
  68. package/dist/data-plane/server/indexing/plugins/post.d.ts +2 -0
  69. package/dist/data-plane/server/indexing/plugins/post.d.ts.map +1 -1
  70. package/dist/data-plane/server/indexing/plugins/post.js +122 -15
  71. package/dist/data-plane/server/indexing/plugins/post.js.map +1 -1
  72. package/dist/data-plane/server/indexing/plugins/thread-gate.d.ts.map +1 -1
  73. package/dist/data-plane/server/indexing/plugins/thread-gate.js +12 -0
  74. package/dist/data-plane/server/indexing/plugins/thread-gate.js.map +1 -1
  75. package/dist/data-plane/server/routes/index.d.ts.map +1 -1
  76. package/dist/data-plane/server/routes/index.js +2 -0
  77. package/dist/data-plane/server/routes/index.js.map +1 -1
  78. package/dist/data-plane/server/routes/interactions.d.ts.map +1 -1
  79. package/dist/data-plane/server/routes/interactions.js +2 -1
  80. package/dist/data-plane/server/routes/interactions.js.map +1 -1
  81. package/dist/data-plane/server/routes/quotes.d.ts +6 -0
  82. package/dist/data-plane/server/routes/quotes.d.ts.map +1 -0
  83. package/dist/data-plane/server/routes/quotes.js +27 -0
  84. package/dist/data-plane/server/routes/quotes.js.map +1 -0
  85. package/dist/data-plane/server/routes/records.d.ts.map +1 -1
  86. package/dist/data-plane/server/routes/records.js +11 -1
  87. package/dist/data-plane/server/routes/records.js.map +1 -1
  88. package/dist/data-plane/server/util.d.ts +6 -7
  89. package/dist/data-plane/server/util.d.ts.map +1 -1
  90. package/dist/data-plane/server/util.js +1 -9
  91. package/dist/data-plane/server/util.js.map +1 -1
  92. package/dist/hydration/feed.d.ts +10 -0
  93. package/dist/hydration/feed.d.ts.map +1 -1
  94. package/dist/hydration/feed.js +31 -7
  95. package/dist/hydration/feed.js.map +1 -1
  96. package/dist/hydration/hydrator.d.ts +4 -2
  97. package/dist/hydration/hydrator.d.ts.map +1 -1
  98. package/dist/hydration/hydrator.js +89 -34
  99. package/dist/hydration/hydrator.js.map +1 -1
  100. package/dist/hydration/util.d.ts +0 -1
  101. package/dist/hydration/util.d.ts.map +1 -1
  102. package/dist/hydration/util.js +1 -5
  103. package/dist/hydration/util.js.map +1 -1
  104. package/dist/lexicon/index.d.ts +2 -0
  105. package/dist/lexicon/index.d.ts.map +1 -1
  106. package/dist/lexicon/index.js +4 -0
  107. package/dist/lexicon/index.js.map +1 -1
  108. package/dist/lexicon/lexicons.d.ts +141 -0
  109. package/dist/lexicon/lexicons.d.ts.map +1 -1
  110. package/dist/lexicon/lexicons.js +142 -0
  111. package/dist/lexicon/lexicons.js.map +1 -1
  112. package/dist/lexicon/types/app/bsky/embed/record.d.ts +8 -1
  113. package/dist/lexicon/types/app/bsky/embed/record.d.ts.map +1 -1
  114. package/dist/lexicon/types/app/bsky/embed/record.js +11 -1
  115. package/dist/lexicon/types/app/bsky/embed/record.js.map +1 -1
  116. package/dist/lexicon/types/app/bsky/feed/defs.d.ts +2 -0
  117. package/dist/lexicon/types/app/bsky/feed/defs.d.ts.map +1 -1
  118. package/dist/lexicon/types/app/bsky/feed/defs.js.map +1 -1
  119. package/dist/lexicon/types/app/bsky/feed/getQuotes.d.ts +44 -0
  120. package/dist/lexicon/types/app/bsky/feed/getQuotes.d.ts.map +1 -0
  121. package/dist/lexicon/types/app/bsky/feed/getQuotes.js +3 -0
  122. package/dist/lexicon/types/app/bsky/feed/getQuotes.js.map +1 -0
  123. package/dist/lexicon/types/app/bsky/feed/postgate.d.ts +25 -0
  124. package/dist/lexicon/types/app/bsky/feed/postgate.d.ts.map +1 -0
  125. package/dist/lexicon/types/app/bsky/feed/postgate.js +27 -0
  126. package/dist/lexicon/types/app/bsky/feed/postgate.js.map +1 -0
  127. package/dist/lexicon/types/app/bsky/feed/threadgate.d.ts +2 -0
  128. package/dist/lexicon/types/app/bsky/feed/threadgate.d.ts.map +1 -1
  129. package/dist/lexicon/types/app/bsky/feed/threadgate.js.map +1 -1
  130. package/dist/proto/bsky_connect.d.ts +21 -1
  131. package/dist/proto/bsky_connect.d.ts.map +1 -1
  132. package/dist/proto/bsky_connect.js +20 -0
  133. package/dist/proto/bsky_connect.js.map +1 -1
  134. package/dist/proto/bsky_pb.d.ts +96 -0
  135. package/dist/proto/bsky_pb.d.ts.map +1 -1
  136. package/dist/proto/bsky_pb.js +306 -4
  137. package/dist/proto/bsky_pb.js.map +1 -1
  138. package/dist/util/uris.d.ts +12 -0
  139. package/dist/util/uris.d.ts.map +1 -0
  140. package/dist/util/uris.js +34 -0
  141. package/dist/util/uris.js.map +1 -0
  142. package/dist/views/index.d.ts +8 -2
  143. package/dist/views/index.d.ts.map +1 -1
  144. package/dist/views/index.js +83 -39
  145. package/dist/views/index.js.map +1 -1
  146. package/dist/views/types.d.ts +1 -1
  147. package/dist/views/types.d.ts.map +1 -1
  148. package/dist/views/types.js.map +1 -1
  149. package/dist/views/util.d.ts +11 -1
  150. package/dist/views/util.d.ts.map +1 -1
  151. package/dist/views/util.js +19 -8
  152. package/dist/views/util.js.map +1 -1
  153. package/package.json +4 -4
  154. package/proto/bsky.proto +33 -0
  155. package/src/api/app/bsky/feed/getActorLikes.ts +1 -1
  156. package/src/api/app/bsky/feed/getLikes.ts +1 -1
  157. package/src/api/app/bsky/feed/getPosts.ts +1 -1
  158. package/src/api/app/bsky/feed/getQuotes.ts +105 -0
  159. package/src/api/app/bsky/feed/getRepostedBy.ts +1 -1
  160. package/src/api/app/bsky/feed/searchPosts.ts +1 -1
  161. package/src/api/app/bsky/graph/getFollowers.ts +1 -1
  162. package/src/api/app/bsky/graph/getList.ts +1 -1
  163. package/src/api/app/bsky/notification/listNotifications.ts +32 -6
  164. package/src/api/index.ts +2 -0
  165. package/src/data-plane/server/db/database-schema.ts +7 -3
  166. package/src/data-plane/server/db/migrations/20240723T220700077Z-quotes-post-aggs.ts +12 -0
  167. package/src/data-plane/server/db/migrations/20240723T220703655Z-quotes.ts +28 -0
  168. package/src/data-plane/server/db/migrations/20240801T193939827Z-post-gate.ts +17 -0
  169. package/src/data-plane/server/db/migrations/20240808T224251220Z-post-gate-flags.ts +25 -0
  170. package/src/data-plane/server/db/migrations/index.ts +4 -0
  171. package/src/data-plane/server/db/tables/post-agg.ts +1 -0
  172. package/src/data-plane/server/db/tables/post-gate.ts +12 -0
  173. package/src/data-plane/server/db/tables/post.ts +3 -0
  174. package/src/data-plane/server/db/tables/quote.ts +15 -0
  175. package/src/data-plane/server/indexing/index.ts +7 -0
  176. package/src/data-plane/server/indexing/plugins/post-gate.ts +104 -0
  177. package/src/data-plane/server/indexing/plugins/post.ts +151 -16
  178. package/src/data-plane/server/indexing/plugins/thread-gate.ts +12 -0
  179. package/src/data-plane/server/routes/index.ts +2 -0
  180. package/src/data-plane/server/routes/interactions.ts +2 -1
  181. package/src/data-plane/server/routes/quotes.ts +32 -0
  182. package/src/data-plane/server/routes/records.ts +11 -1
  183. package/src/data-plane/server/util.ts +0 -8
  184. package/src/hydration/feed.ts +58 -12
  185. package/src/hydration/hydrator.ts +94 -22
  186. package/src/hydration/util.ts +0 -4
  187. package/src/lexicon/index.ts +12 -0
  188. package/src/lexicon/lexicons.ts +145 -0
  189. package/src/lexicon/types/app/bsky/embed/record.ts +19 -0
  190. package/src/lexicon/types/app/bsky/feed/defs.ts +2 -0
  191. package/src/lexicon/types/app/bsky/feed/getQuotes.ts +54 -0
  192. package/src/lexicon/types/app/bsky/feed/postgate.ts +47 -0
  193. package/src/lexicon/types/app/bsky/feed/threadgate.ts +2 -0
  194. package/src/proto/bsky_connect.ts +24 -0
  195. package/src/proto/bsky_pb.ts +289 -0
  196. package/src/util/uris.ts +31 -0
  197. package/src/views/index.ts +90 -35
  198. package/src/views/types.ts +1 -0
  199. package/src/views/util.ts +37 -7
  200. package/tests/__snapshots__/feed-generation.test.ts.snap +37 -0
  201. package/tests/data-plane/__snapshots__/indexing.test.ts.snap +18 -0
  202. package/tests/data-plane/indexing.test.ts +1 -0
  203. package/tests/postgates.test.ts +186 -0
  204. package/tests/seed/feed-hidden-replies.ts +62 -0
  205. package/tests/seed/postgates.ts +56 -0
  206. package/tests/views/__snapshots__/author-feed.test.ts.snap +56 -0
  207. package/tests/views/__snapshots__/block-lists.test.ts.snap +6 -0
  208. package/tests/views/__snapshots__/blocks.test.ts.snap +10 -0
  209. package/tests/views/__snapshots__/list-feed.test.ts.snap +22 -0
  210. package/tests/views/__snapshots__/mute-lists.test.ts.snap +8 -0
  211. package/tests/views/__snapshots__/mutes.test.ts.snap +6 -0
  212. package/tests/views/__snapshots__/posts.test.ts.snap +12 -0
  213. package/tests/views/__snapshots__/quotes.test.ts.snap +399 -0
  214. package/tests/views/__snapshots__/thread.test.ts.snap +50 -0
  215. package/tests/views/__snapshots__/timeline.test.ts.snap +170 -0
  216. package/tests/views/author-feed.test.ts +3 -9
  217. package/tests/views/feed-hidden-replies.test.ts +246 -0
  218. package/tests/views/feed-view-post.test.ts +501 -0
  219. package/tests/views/quotes.test.ts +105 -0
@@ -0,0 +1,62 @@
1
+ import { TestNetwork, SeedClient, TestNetworkNoAppView } from '@atproto/dev-env'
2
+
3
+ export type User = {
4
+ id: string
5
+ did: string
6
+ email: string
7
+ handle: string
8
+ password: string
9
+ displayName: string
10
+ description: string
11
+ selfLabels: undefined
12
+ }
13
+
14
+ function createUser(name: string): User {
15
+ return {
16
+ id: name,
17
+ // @ts-ignore overwritten below
18
+ did: undefined,
19
+ email: `${name}@test.com`,
20
+ handle: `${name}.test`,
21
+ password: `${name}-pass`,
22
+ displayName: name,
23
+ description: `hi im ${name} label_me`,
24
+ selfLabels: undefined,
25
+ }
26
+ }
27
+
28
+ const users = {
29
+ viewer: createUser('viewer'),
30
+
31
+ poster: createUser('poster'),
32
+ replier: createUser('replier'),
33
+ reposter: createUser('reposter'),
34
+ }
35
+
36
+ export type Users = typeof users
37
+
38
+ export async function feedHiddenRepliesSeed(
39
+ sc: SeedClient<TestNetwork | TestNetworkNoAppView>,
40
+ ) {
41
+ const u = structuredClone(users)
42
+
43
+ await sc.createAccount('poster', u.poster)
44
+ await sc.createAccount('replier', u.replier)
45
+ await sc.createAccount('viewer', u.viewer)
46
+ await sc.createAccount('reposter', u.reposter)
47
+
48
+ Object.values(u).forEach((user) => {
49
+ u[user.id].did = sc.dids[user.id]
50
+ })
51
+
52
+ await sc.follow(u.viewer.did, u.poster.did)
53
+ await sc.follow(u.viewer.did, u.replier.did)
54
+ await sc.follow(u.viewer.did, u.reposter.did)
55
+
56
+ await sc.network.processAll()
57
+
58
+ return {
59
+ users: u,
60
+ seedClient: sc,
61
+ }
62
+ }
@@ -0,0 +1,56 @@
1
+ import { TestNetwork, SeedClient, TestNetworkNoAppView } from '@atproto/dev-env'
2
+
3
+ export type User = {
4
+ id: string
5
+ did: string
6
+ email: string
7
+ handle: string
8
+ password: string
9
+ displayName: string
10
+ description: string
11
+ selfLabels: undefined
12
+ }
13
+
14
+ function createUser(name: string): User {
15
+ return {
16
+ id: name,
17
+ // @ts-ignore overwritten below
18
+ did: undefined,
19
+ email: `${name}@test.com`,
20
+ handle: `${name}.test`,
21
+ password: `${name}-pass`,
22
+ displayName: name,
23
+ description: `hi im ${name} label_me`,
24
+ selfLabels: undefined,
25
+ }
26
+ }
27
+
28
+ const users = {
29
+ viewer: createUser('viewer'),
30
+
31
+ quotee: createUser('quotee'),
32
+ quoter: createUser('quoter'),
33
+ }
34
+
35
+ export type Users = typeof users
36
+
37
+ export async function postgatesSeed(
38
+ sc: SeedClient<TestNetwork | TestNetworkNoAppView>,
39
+ ) {
40
+ const u = structuredClone(users)
41
+
42
+ await sc.createAccount('quotee', u.quotee)
43
+ await sc.createAccount('quoter', u.quoter)
44
+ await sc.createAccount('viewer', u.viewer)
45
+
46
+ Object.values(u).forEach((user) => {
47
+ u[user.id].did = sc.dids[user.id]
48
+ })
49
+
50
+ await sc.network.processAll()
51
+
52
+ return {
53
+ users: u,
54
+ seedClient: sc,
55
+ }
56
+ }
@@ -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
  },
@@ -130,6 +132,7 @@ Array [
130
132
  },
131
133
  ],
132
134
  "likeCount": 0,
135
+ "quoteCount": 0,
133
136
  "record": Object {
134
137
  "$type": "app.bsky.feed.post",
135
138
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -165,6 +168,7 @@ Array [
165
168
  "repostCount": 0,
166
169
  "uri": "record(3)",
167
170
  "viewer": Object {
171
+ "embeddingDisabled": false,
168
172
  "threadMuted": false,
169
173
  },
170
174
  },
@@ -201,6 +205,7 @@ Array [
201
205
  "indexedAt": "1970-01-01T00:00:00.000Z",
202
206
  "labels": Array [],
203
207
  "likeCount": 3,
208
+ "quoteCount": 0,
204
209
  "record": Object {
205
210
  "$type": "app.bsky.feed.post",
206
211
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -210,6 +215,7 @@ Array [
210
215
  "repostCount": 1,
211
216
  "uri": "record(2)",
212
217
  "viewer": Object {
218
+ "embeddingDisabled": false,
213
219
  "threadMuted": false,
214
220
  },
215
221
  },
@@ -377,6 +383,7 @@ Array [
377
383
  },
378
384
  ],
379
385
  "likeCount": 2,
386
+ "quoteCount": 0,
380
387
  "record": Object {
381
388
  "$type": "app.bsky.feed.post",
382
389
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -393,6 +400,7 @@ Array [
393
400
  "repostCount": 0,
394
401
  "uri": "record(6)",
395
402
  "viewer": Object {
403
+ "embeddingDisabled": false,
396
404
  "threadMuted": false,
397
405
  },
398
406
  },
@@ -430,6 +438,7 @@ Array [
430
438
  "indexedAt": "1970-01-01T00:00:00.000Z",
431
439
  "labels": Array [],
432
440
  "likeCount": 3,
441
+ "quoteCount": 0,
433
442
  "record": Object {
434
443
  "$type": "app.bsky.feed.post",
435
444
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -439,6 +448,7 @@ Array [
439
448
  "repostCount": 1,
440
449
  "uri": "record(2)",
441
450
  "viewer": Object {
451
+ "embeddingDisabled": false,
442
452
  "threadMuted": false,
443
453
  },
444
454
  },
@@ -484,6 +494,7 @@ Array [
484
494
  },
485
495
  ],
486
496
  "likeCount": 0,
497
+ "quoteCount": 0,
487
498
  "record": Object {
488
499
  "$type": "app.bsky.feed.post",
489
500
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -501,6 +512,7 @@ Array [
501
512
  "repostCount": 0,
502
513
  "uri": "record(13)",
503
514
  "viewer": Object {
515
+ "embeddingDisabled": false,
504
516
  "threadMuted": false,
505
517
  },
506
518
  },
@@ -553,6 +565,7 @@ Array [
553
565
  },
554
566
  ],
555
567
  "likeCount": 0,
568
+ "quoteCount": 0,
556
569
  "record": Object {
557
570
  "$type": "app.bsky.feed.post",
558
571
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -588,6 +601,7 @@ Array [
588
601
  "repostCount": 0,
589
602
  "uri": "record(0)",
590
603
  "viewer": Object {
604
+ "embeddingDisabled": false,
591
605
  "threadMuted": false,
592
606
  },
593
607
  },
@@ -627,6 +641,7 @@ Array [
627
641
  "indexedAt": "1970-01-01T00:00:00.000Z",
628
642
  "labels": Array [],
629
643
  "likeCount": 3,
644
+ "quoteCount": 0,
630
645
  "record": Object {
631
646
  "$type": "app.bsky.feed.post",
632
647
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -636,6 +651,7 @@ Array [
636
651
  "repostCount": 1,
637
652
  "uri": "record(1)",
638
653
  "viewer": Object {
654
+ "embeddingDisabled": false,
639
655
  "like": "record(5)",
640
656
  "threadMuted": false,
641
657
  },
@@ -675,6 +691,7 @@ Array [
675
691
  "indexedAt": "1970-01-01T00:00:00.000Z",
676
692
  "labels": Array [],
677
693
  "likeCount": 3,
694
+ "quoteCount": 0,
678
695
  "record": Object {
679
696
  "$type": "app.bsky.feed.post",
680
697
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -684,6 +701,7 @@ Array [
684
701
  "repostCount": 1,
685
702
  "uri": "record(1)",
686
703
  "viewer": Object {
704
+ "embeddingDisabled": false,
687
705
  "like": "record(5)",
688
706
  "threadMuted": false,
689
707
  },
@@ -708,6 +726,7 @@ Array [
708
726
  "indexedAt": "1970-01-01T00:00:00.000Z",
709
727
  "labels": Array [],
710
728
  "likeCount": 0,
729
+ "quoteCount": 0,
711
730
  "record": Object {
712
731
  "$type": "app.bsky.feed.post",
713
732
  "createdAt": "1970-01-01T00:00:00.000+00:00",
@@ -717,6 +736,7 @@ Array [
717
736
  "repostCount": 0,
718
737
  "uri": "record(6)",
719
738
  "viewer": Object {
739
+ "embeddingDisabled": false,
720
740
  "threadMuted": false,
721
741
  },
722
742
  },
@@ -739,6 +759,7 @@ Array [
739
759
  "indexedAt": "1970-01-01T00:00:00.000Z",
740
760
  "labels": Array [],
741
761
  "likeCount": 0,
762
+ "quoteCount": 1,
742
763
  "record": Object {
743
764
  "$type": "app.bsky.feed.post",
744
765
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -752,6 +773,7 @@ Array [
752
773
  "repostCount": 0,
753
774
  "uri": "record(7)",
754
775
  "viewer": Object {
776
+ "embeddingDisabled": false,
755
777
  "threadMuted": false,
756
778
  },
757
779
  },
@@ -898,6 +920,7 @@ Array [
898
920
  "indexedAt": "1970-01-01T00:00:00.000Z",
899
921
  "labels": Array [],
900
922
  "likeCount": 0,
923
+ "quoteCount": 1,
901
924
  "record": Object {
902
925
  "$type": "app.bsky.feed.post",
903
926
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -928,6 +951,7 @@ Array [
928
951
  "repostCount": 1,
929
952
  "uri": "record(0)",
930
953
  "viewer": Object {
954
+ "embeddingDisabled": false,
931
955
  "repost": "record(4)",
932
956
  "threadMuted": false,
933
957
  },
@@ -961,6 +985,7 @@ Array [
961
985
  "indexedAt": "1970-01-01T00:00:00.000Z",
962
986
  "labels": Array [],
963
987
  "likeCount": 0,
988
+ "quoteCount": 0,
964
989
  "record": Object {
965
990
  "$type": "app.bsky.feed.post",
966
991
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -980,6 +1005,7 @@ Array [
980
1005
  "repostCount": 0,
981
1006
  "uri": "record(5)",
982
1007
  "viewer": Object {
1008
+ "embeddingDisabled": false,
983
1009
  "threadMuted": false,
984
1010
  },
985
1011
  },
@@ -1019,6 +1045,7 @@ Array [
1019
1045
  "indexedAt": "1970-01-01T00:00:00.000Z",
1020
1046
  "labels": Array [],
1021
1047
  "likeCount": 3,
1048
+ "quoteCount": 0,
1022
1049
  "record": Object {
1023
1050
  "$type": "app.bsky.feed.post",
1024
1051
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -1028,6 +1055,7 @@ Array [
1028
1055
  "repostCount": 1,
1029
1056
  "uri": "record(6)",
1030
1057
  "viewer": Object {
1058
+ "embeddingDisabled": false,
1031
1059
  "like": "record(10)",
1032
1060
  "threadMuted": false,
1033
1061
  },
@@ -1067,6 +1095,7 @@ Array [
1067
1095
  "indexedAt": "1970-01-01T00:00:00.000Z",
1068
1096
  "labels": Array [],
1069
1097
  "likeCount": 3,
1098
+ "quoteCount": 0,
1070
1099
  "record": Object {
1071
1100
  "$type": "app.bsky.feed.post",
1072
1101
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -1076,6 +1105,7 @@ Array [
1076
1105
  "repostCount": 1,
1077
1106
  "uri": "record(6)",
1078
1107
  "viewer": Object {
1108
+ "embeddingDisabled": false,
1079
1109
  "like": "record(10)",
1080
1110
  "threadMuted": false,
1081
1111
  },
@@ -1150,6 +1180,7 @@ Array [
1150
1180
  "indexedAt": "1970-01-01T00:00:00.000Z",
1151
1181
  "labels": Array [],
1152
1182
  "likeCount": 2,
1183
+ "quoteCount": 1,
1153
1184
  "record": Object {
1154
1185
  "$type": "app.bsky.feed.post",
1155
1186
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -1195,6 +1226,7 @@ Array [
1195
1226
  "repostCount": 0,
1196
1227
  "uri": "record(1)",
1197
1228
  "viewer": Object {
1229
+ "embeddingDisabled": false,
1198
1230
  "threadMuted": false,
1199
1231
  },
1200
1232
  },
@@ -1238,6 +1270,7 @@ Array [
1238
1270
  "indexedAt": "1970-01-01T00:00:00.000Z",
1239
1271
  "labels": Array [],
1240
1272
  "likeCount": 0,
1273
+ "quoteCount": 0,
1241
1274
  "record": Object {
1242
1275
  "$type": "app.bsky.feed.post",
1243
1276
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -1257,6 +1290,7 @@ Array [
1257
1290
  "repostCount": 1,
1258
1291
  "uri": "record(0)",
1259
1292
  "viewer": Object {
1293
+ "embeddingDisabled": false,
1260
1294
  "repost": "record(5)",
1261
1295
  "threadMuted": false,
1262
1296
  },
@@ -1352,6 +1386,7 @@ Array [
1352
1386
  },
1353
1387
  ],
1354
1388
  "likeCount": 0,
1389
+ "quoteCount": 0,
1355
1390
  "record": Object {
1356
1391
  "$type": "app.bsky.feed.post",
1357
1392
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -1387,6 +1422,7 @@ Array [
1387
1422
  "repostCount": 0,
1388
1423
  "uri": "record(4)",
1389
1424
  "viewer": Object {
1425
+ "embeddingDisabled": false,
1390
1426
  "threadMuted": false,
1391
1427
  },
1392
1428
  },
@@ -1424,6 +1460,7 @@ Array [
1424
1460
  "indexedAt": "1970-01-01T00:00:00.000Z",
1425
1461
  "labels": Array [],
1426
1462
  "likeCount": 3,
1463
+ "quoteCount": 0,
1427
1464
  "record": Object {
1428
1465
  "$type": "app.bsky.feed.post",
1429
1466
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -1433,6 +1470,7 @@ Array [
1433
1470
  "repostCount": 1,
1434
1471
  "uri": "record(3)",
1435
1472
  "viewer": Object {
1473
+ "embeddingDisabled": false,
1436
1474
  "like": "record(7)",
1437
1475
  "repost": "record(6)",
1438
1476
  "threadMuted": false,
@@ -1474,6 +1512,7 @@ Array [
1474
1512
  "indexedAt": "1970-01-01T00:00:00.000Z",
1475
1513
  "labels": Array [],
1476
1514
  "likeCount": 3,
1515
+ "quoteCount": 0,
1477
1516
  "record": Object {
1478
1517
  "$type": "app.bsky.feed.post",
1479
1518
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -1483,6 +1522,7 @@ Array [
1483
1522
  "repostCount": 1,
1484
1523
  "uri": "record(3)",
1485
1524
  "viewer": Object {
1525
+ "embeddingDisabled": false,
1486
1526
  "like": "record(7)",
1487
1527
  "repost": "record(6)",
1488
1528
  "threadMuted": false,
@@ -1644,6 +1684,7 @@ Array [
1644
1684
  "indexedAt": "1970-01-01T00:00:00.000Z",
1645
1685
  "labels": Array [],
1646
1686
  "likeCount": 0,
1687
+ "quoteCount": 1,
1647
1688
  "record": Object {
1648
1689
  "$type": "app.bsky.feed.post",
1649
1690
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -1674,6 +1715,7 @@ Array [
1674
1715
  "repostCount": 1,
1675
1716
  "uri": "record(9)",
1676
1717
  "viewer": Object {
1718
+ "embeddingDisabled": false,
1677
1719
  "threadMuted": false,
1678
1720
  },
1679
1721
  },
@@ -1698,6 +1740,7 @@ Array [
1698
1740
  "indexedAt": "1970-01-01T00:00:00.000Z",
1699
1741
  "labels": Array [],
1700
1742
  "likeCount": 0,
1743
+ "quoteCount": 0,
1701
1744
  "record": Object {
1702
1745
  "$type": "app.bsky.feed.post",
1703
1746
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -1707,6 +1750,7 @@ Array [
1707
1750
  "repostCount": 0,
1708
1751
  "uri": "record(12)",
1709
1752
  "viewer": Object {
1753
+ "embeddingDisabled": false,
1710
1754
  "threadMuted": false,
1711
1755
  },
1712
1756
  },
@@ -1751,6 +1795,7 @@ Array [
1751
1795
  "indexedAt": "1970-01-01T00:00:00.000Z",
1752
1796
  "labels": Array [],
1753
1797
  "likeCount": 0,
1798
+ "quoteCount": 0,
1754
1799
  "record": Object {
1755
1800
  "$type": "app.bsky.feed.post",
1756
1801
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -1770,6 +1815,7 @@ Array [
1770
1815
  "repostCount": 1,
1771
1816
  "uri": "record(0)",
1772
1817
  "viewer": Object {
1818
+ "embeddingDisabled": false,
1773
1819
  "threadMuted": false,
1774
1820
  },
1775
1821
  },
@@ -1847,6 +1893,7 @@ Array [
1847
1893
  },
1848
1894
  ],
1849
1895
  "likeCount": 0,
1896
+ "quoteCount": 0,
1850
1897
  "record": Object {
1851
1898
  "$type": "app.bsky.feed.post",
1852
1899
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -1882,6 +1929,7 @@ Array [
1882
1929
  "repostCount": 0,
1883
1930
  "uri": "record(5)",
1884
1931
  "viewer": Object {
1932
+ "embeddingDisabled": false,
1885
1933
  "threadMuted": false,
1886
1934
  },
1887
1935
  },
@@ -1920,6 +1968,7 @@ Array [
1920
1968
  "indexedAt": "1970-01-01T00:00:00.000Z",
1921
1969
  "labels": Array [],
1922
1970
  "likeCount": 3,
1971
+ "quoteCount": 0,
1923
1972
  "record": Object {
1924
1973
  "$type": "app.bsky.feed.post",
1925
1974
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -1929,6 +1978,7 @@ Array [
1929
1978
  "repostCount": 1,
1930
1979
  "uri": "record(4)",
1931
1980
  "viewer": Object {
1981
+ "embeddingDisabled": false,
1932
1982
  "like": "record(6)",
1933
1983
  "threadMuted": false,
1934
1984
  },
@@ -2096,6 +2146,7 @@ Array [
2096
2146
  },
2097
2147
  ],
2098
2148
  "likeCount": 2,
2149
+ "quoteCount": 0,
2099
2150
  "record": Object {
2100
2151
  "$type": "app.bsky.feed.post",
2101
2152
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -2112,6 +2163,7 @@ Array [
2112
2163
  "repostCount": 0,
2113
2164
  "uri": "record(8)",
2114
2165
  "viewer": Object {
2166
+ "embeddingDisabled": false,
2115
2167
  "like": "record(12)",
2116
2168
  "threadMuted": false,
2117
2169
  },
@@ -2152,6 +2204,7 @@ Array [
2152
2204
  "indexedAt": "1970-01-01T00:00:00.000Z",
2153
2205
  "labels": Array [],
2154
2206
  "likeCount": 3,
2207
+ "quoteCount": 0,
2155
2208
  "record": Object {
2156
2209
  "$type": "app.bsky.feed.post",
2157
2210
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -2161,6 +2214,7 @@ Array [
2161
2214
  "repostCount": 1,
2162
2215
  "uri": "record(4)",
2163
2216
  "viewer": Object {
2217
+ "embeddingDisabled": false,
2164
2218
  "like": "record(6)",
2165
2219
  "threadMuted": false,
2166
2220
  },
@@ -2209,6 +2263,7 @@ Array [
2209
2263
  },
2210
2264
  ],
2211
2265
  "likeCount": 0,
2266
+ "quoteCount": 0,
2212
2267
  "record": Object {
2213
2268
  "$type": "app.bsky.feed.post",
2214
2269
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -2226,6 +2281,7 @@ Array [
2226
2281
  "repostCount": 0,
2227
2282
  "uri": "record(13)",
2228
2283
  "viewer": Object {
2284
+ "embeddingDisabled": false,
2229
2285
  "threadMuted": false,
2230
2286
  },
2231
2287
  },
@@ -115,6 +115,7 @@ Object {
115
115
  },
116
116
  ],
117
117
  "likeCount": 2,
118
+ "quoteCount": 0,
118
119
  "record": Object {
119
120
  "$type": "app.bsky.feed.post",
120
121
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -131,6 +132,7 @@ Object {
131
132
  "repostCount": 0,
132
133
  "uri": "record(0)",
133
134
  "viewer": Object {
135
+ "embeddingDisabled": false,
134
136
  "threadMuted": false,
135
137
  },
136
138
  },
@@ -187,6 +189,7 @@ Object {
187
189
  "indexedAt": "1970-01-01T00:00:00.000Z",
188
190
  "labels": Array [],
189
191
  "likeCount": 0,
192
+ "quoteCount": 0,
190
193
  "record": Object {
191
194
  "$type": "app.bsky.feed.post",
192
195
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -206,6 +209,7 @@ Object {
206
209
  "repostCount": 0,
207
210
  "uri": "record(0)",
208
211
  "viewer": Object {
212
+ "embeddingDisabled": false,
209
213
  "threadMuted": false,
210
214
  },
211
215
  },
@@ -251,6 +255,7 @@ Object {
251
255
  "indexedAt": "1970-01-01T00:00:00.000Z",
252
256
  "labels": Array [],
253
257
  "likeCount": 3,
258
+ "quoteCount": 0,
254
259
  "record": Object {
255
260
  "$type": "app.bsky.feed.post",
256
261
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -260,6 +265,7 @@ Object {
260
265
  "repostCount": 1,
261
266
  "uri": "record(0)",
262
267
  "viewer": Object {
268
+ "embeddingDisabled": false,
263
269
  "like": "record(4)",
264
270
  "repost": "record(3)",
265
271
  "threadMuted": false,
@@ -115,6 +115,7 @@ Object {
115
115
  },
116
116
  ],
117
117
  "likeCount": 2,
118
+ "quoteCount": 0,
118
119
  "record": Object {
119
120
  "$type": "app.bsky.feed.post",
120
121
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -131,6 +132,7 @@ Object {
131
132
  "repostCount": 0,
132
133
  "uri": "record(0)",
133
134
  "viewer": Object {
135
+ "embeddingDisabled": false,
134
136
  "threadMuted": false,
135
137
  },
136
138
  },
@@ -187,6 +189,7 @@ Object {
187
189
  "indexedAt": "1970-01-01T00:00:00.000Z",
188
190
  "labels": Array [],
189
191
  "likeCount": 0,
192
+ "quoteCount": 0,
190
193
  "record": Object {
191
194
  "$type": "app.bsky.feed.post",
192
195
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -206,6 +209,7 @@ Object {
206
209
  "repostCount": 0,
207
210
  "uri": "record(0)",
208
211
  "viewer": Object {
212
+ "embeddingDisabled": false,
209
213
  "threadMuted": false,
210
214
  },
211
215
  },
@@ -226,6 +230,7 @@ Object {
226
230
  "indexedAt": "1970-01-01T00:00:00.000Z",
227
231
  "labels": Array [],
228
232
  "likeCount": 0,
233
+ "quoteCount": 0,
229
234
  "record": Object {
230
235
  "$type": "app.bsky.feed.post",
231
236
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -245,6 +250,7 @@ Object {
245
250
  "repostCount": 0,
246
251
  "uri": "record(5)",
247
252
  "viewer": Object {
253
+ "embeddingDisabled": false,
248
254
  "threadMuted": false,
249
255
  },
250
256
  },
@@ -291,6 +297,7 @@ Object {
291
297
  "indexedAt": "1970-01-01T00:00:00.000Z",
292
298
  "labels": Array [],
293
299
  "likeCount": 3,
300
+ "quoteCount": 0,
294
301
  "record": Object {
295
302
  "$type": "app.bsky.feed.post",
296
303
  "createdAt": "1970-01-01T00:00:00.000000Z",
@@ -300,6 +307,7 @@ Object {
300
307
  "repostCount": 1,
301
308
  "uri": "record(0)",
302
309
  "viewer": Object {
310
+ "embeddingDisabled": false,
303
311
  "like": "record(4)",
304
312
  "repost": "record(3)",
305
313
  "threadMuted": false,
@@ -363,6 +371,7 @@ Object {
363
371
  },
364
372
  ],
365
373
  "likeCount": 0,
374
+ "quoteCount": 0,
366
375
  "record": Object {
367
376
  "$type": "app.bsky.feed.post",
368
377
  "createdAt": "1970-01-01T00:00:00.000Z",
@@ -398,6 +407,7 @@ Object {
398
407
  "repostCount": 0,
399
408
  "uri": "record(7)",
400
409
  "viewer": Object {
410
+ "embeddingDisabled": false,
401
411
  "threadMuted": false,
402
412
  },
403
413
  },