@atproto/bsky 0.0.165 → 0.0.167

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 (152) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist/api/app/bsky/notification/listActivitySubscriptions.d.ts +4 -0
  3. package/dist/api/app/bsky/notification/listActivitySubscriptions.d.ts.map +1 -0
  4. package/dist/api/app/bsky/notification/listActivitySubscriptions.js +63 -0
  5. package/dist/api/app/bsky/notification/listActivitySubscriptions.js.map +1 -0
  6. package/dist/api/app/bsky/notification/putActivitySubscription.d.ts +4 -0
  7. package/dist/api/app/bsky/notification/putActivitySubscription.d.ts.map +1 -0
  8. package/dist/api/app/bsky/notification/putActivitySubscription.js +63 -0
  9. package/dist/api/app/bsky/notification/putActivitySubscription.js.map +1 -0
  10. package/dist/api/app/bsky/notification/putPreferencesV2.d.ts.map +1 -1
  11. package/dist/api/app/bsky/notification/putPreferencesV2.js +2 -1
  12. package/dist/api/app/bsky/notification/putPreferencesV2.js.map +1 -1
  13. package/dist/api/index.d.ts.map +1 -1
  14. package/dist/api/index.js +4 -0
  15. package/dist/api/index.js.map +1 -1
  16. package/dist/data-plane/bsync/index.d.ts.map +1 -1
  17. package/dist/data-plane/bsync/index.js +52 -38
  18. package/dist/data-plane/bsync/index.js.map +1 -1
  19. package/dist/data-plane/server/db/database-schema.d.ts +2 -1
  20. package/dist/data-plane/server/db/database-schema.d.ts.map +1 -1
  21. package/dist/data-plane/server/db/migrations/20250611T140649895Z-add-activity-subscription.d.ts +4 -0
  22. package/dist/data-plane/server/db/migrations/20250611T140649895Z-add-activity-subscription.d.ts.map +1 -0
  23. package/dist/data-plane/server/db/migrations/20250611T140649895Z-add-activity-subscription.js +24 -0
  24. package/dist/data-plane/server/db/migrations/20250611T140649895Z-add-activity-subscription.js.map +1 -0
  25. package/dist/data-plane/server/db/migrations/index.d.ts +1 -0
  26. package/dist/data-plane/server/db/migrations/index.d.ts.map +1 -1
  27. package/dist/data-plane/server/db/migrations/index.js +2 -1
  28. package/dist/data-plane/server/db/migrations/index.js.map +1 -1
  29. package/dist/data-plane/server/db/pagination.d.ts +22 -0
  30. package/dist/data-plane/server/db/pagination.d.ts.map +1 -1
  31. package/dist/data-plane/server/db/pagination.js +30 -1
  32. package/dist/data-plane/server/db/pagination.js.map +1 -1
  33. package/dist/data-plane/server/db/tables/activity-subscription.d.ts +13 -0
  34. package/dist/data-plane/server/db/tables/activity-subscription.d.ts.map +1 -0
  35. package/dist/data-plane/server/db/tables/activity-subscription.js +5 -0
  36. package/dist/data-plane/server/db/tables/activity-subscription.js.map +1 -0
  37. package/dist/data-plane/server/indexing/index.d.ts +2 -0
  38. package/dist/data-plane/server/indexing/index.d.ts.map +1 -1
  39. package/dist/data-plane/server/indexing/index.js +2 -0
  40. package/dist/data-plane/server/indexing/index.js.map +1 -1
  41. package/dist/data-plane/server/indexing/plugins/notif-declaration.d.ts +7 -0
  42. package/dist/data-plane/server/indexing/plugins/notif-declaration.d.ts.map +1 -0
  43. package/dist/data-plane/server/indexing/plugins/notif-declaration.js +72 -0
  44. package/dist/data-plane/server/indexing/plugins/notif-declaration.js.map +1 -0
  45. package/dist/data-plane/server/routes/activity-subscription.d.ts +6 -0
  46. package/dist/data-plane/server/routes/activity-subscription.d.ts.map +1 -0
  47. package/dist/data-plane/server/routes/activity-subscription.js +67 -0
  48. package/dist/data-plane/server/routes/activity-subscription.js.map +1 -0
  49. package/dist/data-plane/server/routes/index.js +2 -2
  50. package/dist/data-plane/server/routes/index.js.map +1 -1
  51. package/dist/data-plane/server/routes/notifs.d.ts +3 -0
  52. package/dist/data-plane/server/routes/notifs.d.ts.map +1 -1
  53. package/dist/data-plane/server/routes/notifs.js +64 -0
  54. package/dist/data-plane/server/routes/notifs.js.map +1 -1
  55. package/dist/data-plane/server/routes/profile.d.ts.map +1 -1
  56. package/dist/data-plane/server/routes/profile.js +20 -1
  57. package/dist/data-plane/server/routes/profile.js.map +1 -1
  58. package/dist/data-plane/server/routes/records.d.ts.map +1 -1
  59. package/dist/data-plane/server/routes/records.js +1 -0
  60. package/dist/data-plane/server/routes/records.js.map +1 -1
  61. package/dist/data-plane/server/util.d.ts +6 -6
  62. package/dist/hydration/actor.d.ts +20 -6
  63. package/dist/hydration/actor.d.ts.map +1 -1
  64. package/dist/hydration/actor.js +44 -1
  65. package/dist/hydration/actor.js.map +1 -1
  66. package/dist/hydration/hydrator.d.ts +4 -3
  67. package/dist/hydration/hydrator.d.ts.map +1 -1
  68. package/dist/hydration/hydrator.js +16 -2
  69. package/dist/hydration/hydrator.js.map +1 -1
  70. package/dist/hydration/util.d.ts +4 -0
  71. package/dist/hydration/util.d.ts.map +1 -1
  72. package/dist/hydration/util.js +3 -1
  73. package/dist/hydration/util.js.map +1 -1
  74. package/dist/lexicon/lexicons.d.ts +6 -2
  75. package/dist/lexicon/lexicons.d.ts.map +1 -1
  76. package/dist/lexicon/lexicons.js +3 -0
  77. package/dist/lexicon/lexicons.js.map +1 -1
  78. package/dist/lexicon/types/app/bsky/notification/listNotifications.d.ts +1 -1
  79. package/dist/lexicon/types/app/bsky/notification/listNotifications.d.ts.map +1 -1
  80. package/dist/lexicon/types/app/bsky/notification/listNotifications.js.map +1 -1
  81. package/dist/proto/bsky_connect.d.ts +28 -1
  82. package/dist/proto/bsky_connect.d.ts.map +1 -1
  83. package/dist/proto/bsky_connect.js +27 -0
  84. package/dist/proto/bsky_connect.js.map +1 -1
  85. package/dist/proto/bsky_pb.d.ts +189 -0
  86. package/dist/proto/bsky_pb.d.ts.map +1 -1
  87. package/dist/proto/bsky_pb.js +598 -5
  88. package/dist/proto/bsky_pb.js.map +1 -1
  89. package/dist/stash.d.ts +1 -0
  90. package/dist/stash.d.ts.map +1 -1
  91. package/dist/stash.js +1 -0
  92. package/dist/stash.js.map +1 -1
  93. package/dist/views/index.d.ts +5 -3
  94. package/dist/views/index.d.ts.map +1 -1
  95. package/dist/views/index.js +29 -9
  96. package/dist/views/index.js.map +1 -1
  97. package/package.json +4 -4
  98. package/proto/bsky.proto +45 -0
  99. package/src/api/app/bsky/notification/listActivitySubscriptions.ts +110 -0
  100. package/src/api/app/bsky/notification/putActivitySubscription.ts +69 -0
  101. package/src/api/app/bsky/notification/putPreferencesV2.ts +2 -1
  102. package/src/api/index.ts +4 -0
  103. package/src/data-plane/bsync/index.ts +75 -44
  104. package/src/data-plane/server/db/database-schema.ts +3 -1
  105. package/src/data-plane/server/db/migrations/20250611T140649895Z-add-activity-subscription.ts +22 -0
  106. package/src/data-plane/server/db/migrations/index.ts +1 -0
  107. package/src/data-plane/server/db/pagination.ts +37 -0
  108. package/src/data-plane/server/db/tables/activity-subscription.ts +12 -0
  109. package/src/data-plane/server/indexing/index.ts +3 -0
  110. package/src/data-plane/server/indexing/plugins/notif-declaration.ts +59 -0
  111. package/src/data-plane/server/routes/activity-subscription.ts +83 -0
  112. package/src/data-plane/server/routes/index.ts +2 -2
  113. package/src/data-plane/server/routes/notifs.ts +95 -0
  114. package/src/data-plane/server/routes/profile.ts +33 -1
  115. package/src/data-plane/server/routes/records.ts +4 -0
  116. package/src/hydration/actor.ts +97 -10
  117. package/src/hydration/hydrator.ts +32 -6
  118. package/src/hydration/util.ts +8 -0
  119. package/src/lexicon/lexicons.ts +5 -0
  120. package/src/lexicon/types/app/bsky/notification/listNotifications.ts +1 -0
  121. package/src/proto/bsky_connect.ts +33 -0
  122. package/src/proto/bsky_pb.ts +648 -0
  123. package/src/stash.ts +6 -1
  124. package/src/views/index.ts +48 -11
  125. package/tests/__snapshots__/feed-generation.test.ts.snap +213 -0
  126. package/tests/data-plane/__snapshots__/indexing.test.ts.snap +88 -0
  127. package/tests/views/__snapshots__/author-feed.test.ts.snap +498 -0
  128. package/tests/views/__snapshots__/block-lists.test.ts.snap +56 -0
  129. package/tests/views/__snapshots__/blocks.test.ts.snap +28 -0
  130. package/tests/views/__snapshots__/follows.test.ts.snap +170 -0
  131. package/tests/views/__snapshots__/labeler-service.test.ts.snap +15 -0
  132. package/tests/views/__snapshots__/likes.test.ts.snap +23 -0
  133. package/tests/views/__snapshots__/list-feed.test.ts.snap +68 -0
  134. package/tests/views/__snapshots__/lists.test.ts.snap +120 -0
  135. package/tests/views/__snapshots__/mute-lists.test.ts.snap +63 -0
  136. package/tests/views/__snapshots__/mutes.test.ts.snap +55 -0
  137. package/tests/views/__snapshots__/notifications.test.ts.snap +299 -0
  138. package/tests/views/__snapshots__/posts.test.ts.snap +58 -0
  139. package/tests/views/__snapshots__/profile.test.ts.snap +74 -0
  140. package/tests/views/__snapshots__/quotes.test.ts.snap +35 -0
  141. package/tests/views/__snapshots__/reposts.test.ts.snap +26 -0
  142. package/tests/views/__snapshots__/starter-packs.test.ts.snap +113 -0
  143. package/tests/views/__snapshots__/thread-v2.test.ts.snap +115 -0
  144. package/tests/views/__snapshots__/thread.test.ts.snap +145 -0
  145. package/tests/views/__snapshots__/timeline.test.ts.snap +566 -0
  146. package/tests/views/notifications.test.ts +355 -19
  147. package/tsconfig.build.tsbuildinfo +1 -1
  148. package/dist/data-plane/server/routes/private-data.d.ts +0 -9
  149. package/dist/data-plane/server/routes/private-data.d.ts.map +0 -1
  150. package/dist/data-plane/server/routes/private-data.js +0 -65
  151. package/dist/data-plane/server/routes/private-data.js.map +0 -1
  152. package/src/data-plane/server/routes/private-data.ts +0 -95
@@ -6,6 +6,11 @@ Object {
6
6
  "$type": "app.bsky.feed.defs#threadViewPost",
7
7
  "post": Object {
8
8
  "author": Object {
9
+ "associated": Object {
10
+ "activitySubscription": Object {
11
+ "allowSubscriptions": "followers",
12
+ },
13
+ },
9
14
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
10
15
  "createdAt": "1970-01-01T00:00:00.000Z",
11
16
  "did": "user(0)",
@@ -40,6 +45,9 @@ Object {
40
45
  "$type": "app.bsky.embed.record#viewRecord",
41
46
  "author": Object {
42
47
  "associated": Object {
48
+ "activitySubscription": Object {
49
+ "allowSubscriptions": "followers",
50
+ },
43
51
  "chat": Object {
44
52
  "allowIncoming": "none",
45
53
  },
@@ -159,6 +167,11 @@ Object {
159
167
  },
160
168
  "post": Object {
161
169
  "author": Object {
170
+ "associated": Object {
171
+ "activitySubscription": Object {
172
+ "allowSubscriptions": "followers",
173
+ },
174
+ },
162
175
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
163
176
  "createdAt": "1970-01-01T00:00:00.000Z",
164
177
  "did": "user(0)",
@@ -227,6 +240,11 @@ Object {
227
240
  "$type": "app.bsky.feed.defs#threadViewPost",
228
241
  "post": Object {
229
242
  "author": Object {
243
+ "associated": Object {
244
+ "activitySubscription": Object {
245
+ "allowSubscriptions": "followers",
246
+ },
247
+ },
230
248
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
231
249
  "createdAt": "1970-01-01T00:00:00.000Z",
232
250
  "did": "user(0)",
@@ -312,6 +330,11 @@ Object {
312
330
  Object {
313
331
  "cid": "cids(0)",
314
332
  "creator": Object {
333
+ "associated": Object {
334
+ "activitySubscription": Object {
335
+ "allowSubscriptions": "followers",
336
+ },
337
+ },
315
338
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
316
339
  "createdAt": "1970-01-01T00:00:00.000Z",
317
340
  "description": "its me!",
@@ -357,6 +380,11 @@ Object {
357
380
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
358
381
  "cid": "cids(3)",
359
382
  "creator": Object {
383
+ "associated": Object {
384
+ "activitySubscription": Object {
385
+ "allowSubscriptions": "followers",
386
+ },
387
+ },
360
388
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
361
389
  "createdAt": "1970-01-01T00:00:00.000Z",
362
390
  "description": "its me!",
@@ -409,6 +437,11 @@ Object {
409
437
  Object {
410
438
  "cid": "cids(0)",
411
439
  "creator": Object {
440
+ "associated": Object {
441
+ "activitySubscription": Object {
442
+ "allowSubscriptions": "followers",
443
+ },
444
+ },
412
445
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
413
446
  "createdAt": "1970-01-01T00:00:00.000Z",
414
447
  "description": "its me!",
@@ -453,6 +486,11 @@ Object {
453
486
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
454
487
  "cid": "cids(3)",
455
488
  "creator": Object {
489
+ "associated": Object {
490
+ "activitySubscription": Object {
491
+ "allowSubscriptions": "followers",
492
+ },
493
+ },
456
494
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
457
495
  "createdAt": "1970-01-01T00:00:00.000Z",
458
496
  "description": "its me!",
@@ -505,6 +543,9 @@ Object {
505
543
  Object {
506
544
  "subject": Object {
507
545
  "associated": Object {
546
+ "activitySubscription": Object {
547
+ "allowSubscriptions": "followers",
548
+ },
508
549
  "chat": Object {
509
550
  "allowIncoming": "none",
510
551
  },
@@ -521,6 +562,11 @@ Object {
521
562
  },
522
563
  Object {
523
564
  "subject": Object {
565
+ "associated": Object {
566
+ "activitySubscription": Object {
567
+ "allowSubscriptions": "followers",
568
+ },
569
+ },
524
570
  "did": "user(3)",
525
571
  "handle": "carol.test",
526
572
  "labels": Array [],
@@ -548,6 +594,11 @@ Object {
548
594
  },
549
595
  Object {
550
596
  "subject": Object {
597
+ "associated": Object {
598
+ "activitySubscription": Object {
599
+ "allowSubscriptions": "followers",
600
+ },
601
+ },
551
602
  "avatar": "https://bsky.public.url/img/avatar/plain/user(5)/cids(1)@jpeg",
552
603
  "createdAt": "1970-01-01T00:00:00.000Z",
553
604
  "description": "hi im bob label_me",
@@ -583,6 +634,11 @@ Object {
583
634
  "avatar": "https://bsky.public.url/img/avatar/plain/user(0)/cids(1)@jpeg",
584
635
  "cid": "cids(0)",
585
636
  "creator": Object {
637
+ "associated": Object {
638
+ "activitySubscription": Object {
639
+ "allowSubscriptions": "followers",
640
+ },
641
+ },
586
642
  "avatar": "https://bsky.public.url/img/avatar/plain/user(0)/cids(1)@jpeg",
587
643
  "createdAt": "1970-01-01T00:00:00.000Z",
588
644
  "description": "its me!",
@@ -6,6 +6,11 @@ Object {
6
6
  "$type": "app.bsky.feed.defs#threadViewPost",
7
7
  "post": Object {
8
8
  "author": Object {
9
+ "associated": Object {
10
+ "activitySubscription": Object {
11
+ "allowSubscriptions": "followers",
12
+ },
13
+ },
9
14
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
10
15
  "createdAt": "1970-01-01T00:00:00.000Z",
11
16
  "did": "user(0)",
@@ -40,6 +45,9 @@ Object {
40
45
  "$type": "app.bsky.embed.record#viewRecord",
41
46
  "author": Object {
42
47
  "associated": Object {
48
+ "activitySubscription": Object {
49
+ "allowSubscriptions": "followers",
50
+ },
43
51
  "chat": Object {
44
52
  "allowIncoming": "none",
45
53
  },
@@ -159,6 +167,11 @@ Object {
159
167
  },
160
168
  "post": Object {
161
169
  "author": Object {
170
+ "associated": Object {
171
+ "activitySubscription": Object {
172
+ "allowSubscriptions": "followers",
173
+ },
174
+ },
162
175
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
163
176
  "createdAt": "1970-01-01T00:00:00.000Z",
164
177
  "did": "user(0)",
@@ -220,6 +233,11 @@ Object {
220
233
  "$type": "app.bsky.feed.defs#threadViewPost",
221
234
  "post": Object {
222
235
  "author": Object {
236
+ "associated": Object {
237
+ "activitySubscription": Object {
238
+ "allowSubscriptions": "followers",
239
+ },
240
+ },
223
241
  "did": "user(3)",
224
242
  "handle": "carol.test",
225
243
  "labels": Array [],
@@ -270,6 +288,11 @@ Object {
270
288
  "$type": "app.bsky.feed.defs#threadViewPost",
271
289
  "post": Object {
272
290
  "author": Object {
291
+ "associated": Object {
292
+ "activitySubscription": Object {
293
+ "allowSubscriptions": "followers",
294
+ },
295
+ },
273
296
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
274
297
  "createdAt": "1970-01-01T00:00:00.000Z",
275
298
  "did": "user(0)",
@@ -334,6 +357,11 @@ Object {
334
357
  "$type": "app.bsky.feed.defs#threadViewPost",
335
358
  "post": Object {
336
359
  "author": Object {
360
+ "associated": Object {
361
+ "activitySubscription": Object {
362
+ "allowSubscriptions": "followers",
363
+ },
364
+ },
337
365
  "avatar": "https://bsky.public.url/img/avatar/plain/user(4)/cids(1)@jpeg",
338
366
  "createdAt": "1970-01-01T00:00:00.000Z",
339
367
  "did": "user(3)",
@@ -5,6 +5,11 @@ Object {
5
5
  "cursor": "0000000000000__bafycid",
6
6
  "followers": Array [
7
7
  Object {
8
+ "associated": Object {
9
+ "activitySubscription": Object {
10
+ "allowSubscriptions": "followers",
11
+ },
12
+ },
8
13
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(0)@jpeg",
9
14
  "createdAt": "1970-01-01T00:00:00.000Z",
10
15
  "description": "descript-eve",
@@ -21,6 +26,11 @@ Object {
21
26
  },
22
27
  },
23
28
  Object {
29
+ "associated": Object {
30
+ "activitySubscription": Object {
31
+ "allowSubscriptions": "followers",
32
+ },
33
+ },
24
34
  "avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(0)@jpeg",
25
35
  "createdAt": "1970-01-01T00:00:00.000Z",
26
36
  "description": "descript-dan",
@@ -37,6 +47,11 @@ Object {
37
47
  },
38
48
  },
39
49
  Object {
50
+ "associated": Object {
51
+ "activitySubscription": Object {
52
+ "allowSubscriptions": "followers",
53
+ },
54
+ },
40
55
  "avatar": "https://bsky.public.url/img/avatar/plain/user(5)/cids(0)@jpeg",
41
56
  "createdAt": "1970-01-01T00:00:00.000Z",
42
57
  "description": "descript-bob",
@@ -53,6 +68,11 @@ Object {
53
68
  },
54
69
  },
55
70
  Object {
71
+ "associated": Object {
72
+ "activitySubscription": Object {
73
+ "allowSubscriptions": "followers",
74
+ },
75
+ },
56
76
  "avatar": "https://bsky.public.url/img/avatar/plain/user(7)/cids(0)@jpeg",
57
77
  "createdAt": "1970-01-01T00:00:00.000Z",
58
78
  "description": "descript-carol",
@@ -70,6 +90,11 @@ Object {
70
90
  },
71
91
  ],
72
92
  "subject": Object {
93
+ "associated": Object {
94
+ "activitySubscription": Object {
95
+ "allowSubscriptions": "followers",
96
+ },
97
+ },
73
98
  "avatar": "https://bsky.public.url/img/avatar/plain/user(9)/cids(0)@jpeg",
74
99
  "createdAt": "1970-01-01T00:00:00.000Z",
75
100
  "description": "descript-alice",
@@ -91,6 +116,11 @@ Object {
91
116
  "cursor": "0000000000000__bafycid",
92
117
  "followers": Array [
93
118
  Object {
119
+ "associated": Object {
120
+ "activitySubscription": Object {
121
+ "allowSubscriptions": "followers",
122
+ },
123
+ },
94
124
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(0)@jpeg",
95
125
  "createdAt": "1970-01-01T00:00:00.000Z",
96
126
  "description": "descript-dan",
@@ -107,6 +137,11 @@ Object {
107
137
  },
108
138
  },
109
139
  Object {
140
+ "associated": Object {
141
+ "activitySubscription": Object {
142
+ "allowSubscriptions": "followers",
143
+ },
144
+ },
110
145
  "avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(0)@jpeg",
111
146
  "createdAt": "1970-01-01T00:00:00.000Z",
112
147
  "description": "descript-alice",
@@ -122,6 +157,11 @@ Object {
122
157
  },
123
158
  ],
124
159
  "subject": Object {
160
+ "associated": Object {
161
+ "activitySubscription": Object {
162
+ "allowSubscriptions": "followers",
163
+ },
164
+ },
125
165
  "avatar": "https://bsky.public.url/img/avatar/plain/user(5)/cids(0)@jpeg",
126
166
  "createdAt": "1970-01-01T00:00:00.000Z",
127
167
  "description": "descript-bob",
@@ -145,6 +185,11 @@ Object {
145
185
  "cursor": "0000000000000__bafycid",
146
186
  "followers": Array [
147
187
  Object {
188
+ "associated": Object {
189
+ "activitySubscription": Object {
190
+ "allowSubscriptions": "followers",
191
+ },
192
+ },
148
193
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(0)@jpeg",
149
194
  "createdAt": "1970-01-01T00:00:00.000Z",
150
195
  "description": "descript-eve",
@@ -161,6 +206,11 @@ Object {
161
206
  },
162
207
  },
163
208
  Object {
209
+ "associated": Object {
210
+ "activitySubscription": Object {
211
+ "allowSubscriptions": "followers",
212
+ },
213
+ },
164
214
  "avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(0)@jpeg",
165
215
  "createdAt": "1970-01-01T00:00:00.000Z",
166
216
  "description": "descript-bob",
@@ -177,6 +227,11 @@ Object {
177
227
  },
178
228
  },
179
229
  Object {
230
+ "associated": Object {
231
+ "activitySubscription": Object {
232
+ "allowSubscriptions": "followers",
233
+ },
234
+ },
180
235
  "avatar": "https://bsky.public.url/img/avatar/plain/user(5)/cids(0)@jpeg",
181
236
  "createdAt": "1970-01-01T00:00:00.000Z",
182
237
  "description": "descript-alice",
@@ -192,6 +247,11 @@ Object {
192
247
  },
193
248
  ],
194
249
  "subject": Object {
250
+ "associated": Object {
251
+ "activitySubscription": Object {
252
+ "allowSubscriptions": "followers",
253
+ },
254
+ },
195
255
  "avatar": "https://bsky.public.url/img/avatar/plain/user(7)/cids(0)@jpeg",
196
256
  "createdAt": "1970-01-01T00:00:00.000Z",
197
257
  "description": "descript-carol",
@@ -215,6 +275,11 @@ Object {
215
275
  "cursor": "0000000000000__bafycid",
216
276
  "followers": Array [
217
277
  Object {
278
+ "associated": Object {
279
+ "activitySubscription": Object {
280
+ "allowSubscriptions": "followers",
281
+ },
282
+ },
218
283
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(0)@jpeg",
219
284
  "createdAt": "1970-01-01T00:00:00.000Z",
220
285
  "description": "descript-alice",
@@ -230,6 +295,11 @@ Object {
230
295
  },
231
296
  ],
232
297
  "subject": Object {
298
+ "associated": Object {
299
+ "activitySubscription": Object {
300
+ "allowSubscriptions": "followers",
301
+ },
302
+ },
233
303
  "avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(0)@jpeg",
234
304
  "createdAt": "1970-01-01T00:00:00.000Z",
235
305
  "description": "descript-dan",
@@ -253,6 +323,11 @@ Object {
253
323
  "cursor": "0000000000000__bafycid",
254
324
  "followers": Array [
255
325
  Object {
326
+ "associated": Object {
327
+ "activitySubscription": Object {
328
+ "allowSubscriptions": "followers",
329
+ },
330
+ },
256
331
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(0)@jpeg",
257
332
  "createdAt": "1970-01-01T00:00:00.000Z",
258
333
  "description": "descript-dan",
@@ -269,6 +344,11 @@ Object {
269
344
  },
270
345
  },
271
346
  Object {
347
+ "associated": Object {
348
+ "activitySubscription": Object {
349
+ "allowSubscriptions": "followers",
350
+ },
351
+ },
272
352
  "avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(0)@jpeg",
273
353
  "createdAt": "1970-01-01T00:00:00.000Z",
274
354
  "description": "descript-alice",
@@ -284,6 +364,11 @@ Object {
284
364
  },
285
365
  ],
286
366
  "subject": Object {
367
+ "associated": Object {
368
+ "activitySubscription": Object {
369
+ "allowSubscriptions": "followers",
370
+ },
371
+ },
287
372
  "avatar": "https://bsky.public.url/img/avatar/plain/user(5)/cids(0)@jpeg",
288
373
  "createdAt": "1970-01-01T00:00:00.000Z",
289
374
  "description": "descript-eve",
@@ -307,6 +392,11 @@ Object {
307
392
  "cursor": "0000000000000__bafycid",
308
393
  "follows": Array [
309
394
  Object {
395
+ "associated": Object {
396
+ "activitySubscription": Object {
397
+ "allowSubscriptions": "followers",
398
+ },
399
+ },
310
400
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(0)@jpeg",
311
401
  "createdAt": "1970-01-01T00:00:00.000Z",
312
402
  "description": "descript-eve",
@@ -323,6 +413,11 @@ Object {
323
413
  },
324
414
  },
325
415
  Object {
416
+ "associated": Object {
417
+ "activitySubscription": Object {
418
+ "allowSubscriptions": "followers",
419
+ },
420
+ },
326
421
  "avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(0)@jpeg",
327
422
  "createdAt": "1970-01-01T00:00:00.000Z",
328
423
  "description": "descript-dan",
@@ -339,6 +434,11 @@ Object {
339
434
  },
340
435
  },
341
436
  Object {
437
+ "associated": Object {
438
+ "activitySubscription": Object {
439
+ "allowSubscriptions": "followers",
440
+ },
441
+ },
342
442
  "avatar": "https://bsky.public.url/img/avatar/plain/user(5)/cids(0)@jpeg",
343
443
  "createdAt": "1970-01-01T00:00:00.000Z",
344
444
  "description": "descript-carol",
@@ -355,6 +455,11 @@ Object {
355
455
  },
356
456
  },
357
457
  Object {
458
+ "associated": Object {
459
+ "activitySubscription": Object {
460
+ "allowSubscriptions": "followers",
461
+ },
462
+ },
358
463
  "avatar": "https://bsky.public.url/img/avatar/plain/user(7)/cids(0)@jpeg",
359
464
  "createdAt": "1970-01-01T00:00:00.000Z",
360
465
  "description": "descript-bob",
@@ -372,6 +477,11 @@ Object {
372
477
  },
373
478
  ],
374
479
  "subject": Object {
480
+ "associated": Object {
481
+ "activitySubscription": Object {
482
+ "allowSubscriptions": "followers",
483
+ },
484
+ },
375
485
  "avatar": "https://bsky.public.url/img/avatar/plain/user(9)/cids(0)@jpeg",
376
486
  "createdAt": "1970-01-01T00:00:00.000Z",
377
487
  "description": "descript-alice",
@@ -393,6 +503,11 @@ Object {
393
503
  "cursor": "0000000000000__bafycid",
394
504
  "follows": Array [
395
505
  Object {
506
+ "associated": Object {
507
+ "activitySubscription": Object {
508
+ "allowSubscriptions": "followers",
509
+ },
510
+ },
396
511
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(0)@jpeg",
397
512
  "createdAt": "1970-01-01T00:00:00.000Z",
398
513
  "description": "descript-carol",
@@ -409,6 +524,11 @@ Object {
409
524
  },
410
525
  },
411
526
  Object {
527
+ "associated": Object {
528
+ "activitySubscription": Object {
529
+ "allowSubscriptions": "followers",
530
+ },
531
+ },
412
532
  "avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(0)@jpeg",
413
533
  "createdAt": "1970-01-01T00:00:00.000Z",
414
534
  "description": "descript-alice",
@@ -424,6 +544,11 @@ Object {
424
544
  },
425
545
  ],
426
546
  "subject": Object {
547
+ "associated": Object {
548
+ "activitySubscription": Object {
549
+ "allowSubscriptions": "followers",
550
+ },
551
+ },
427
552
  "avatar": "https://bsky.public.url/img/avatar/plain/user(5)/cids(0)@jpeg",
428
553
  "createdAt": "1970-01-01T00:00:00.000Z",
429
554
  "description": "descript-bob",
@@ -447,6 +572,11 @@ Object {
447
572
  "cursor": "0000000000000__bafycid",
448
573
  "follows": Array [
449
574
  Object {
575
+ "associated": Object {
576
+ "activitySubscription": Object {
577
+ "allowSubscriptions": "followers",
578
+ },
579
+ },
450
580
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(0)@jpeg",
451
581
  "createdAt": "1970-01-01T00:00:00.000Z",
452
582
  "description": "descript-alice",
@@ -462,6 +592,11 @@ Object {
462
592
  },
463
593
  ],
464
594
  "subject": Object {
595
+ "associated": Object {
596
+ "activitySubscription": Object {
597
+ "allowSubscriptions": "followers",
598
+ },
599
+ },
465
600
  "avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(0)@jpeg",
466
601
  "createdAt": "1970-01-01T00:00:00.000Z",
467
602
  "description": "descript-carol",
@@ -485,6 +620,11 @@ Object {
485
620
  "cursor": "0000000000000__bafycid",
486
621
  "follows": Array [
487
622
  Object {
623
+ "associated": Object {
624
+ "activitySubscription": Object {
625
+ "allowSubscriptions": "followers",
626
+ },
627
+ },
488
628
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(0)@jpeg",
489
629
  "createdAt": "1970-01-01T00:00:00.000Z",
490
630
  "description": "descript-eve",
@@ -501,6 +641,11 @@ Object {
501
641
  },
502
642
  },
503
643
  Object {
644
+ "associated": Object {
645
+ "activitySubscription": Object {
646
+ "allowSubscriptions": "followers",
647
+ },
648
+ },
504
649
  "avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(0)@jpeg",
505
650
  "createdAt": "1970-01-01T00:00:00.000Z",
506
651
  "description": "descript-bob",
@@ -517,6 +662,11 @@ Object {
517
662
  },
518
663
  },
519
664
  Object {
665
+ "associated": Object {
666
+ "activitySubscription": Object {
667
+ "allowSubscriptions": "followers",
668
+ },
669
+ },
520
670
  "avatar": "https://bsky.public.url/img/avatar/plain/user(5)/cids(0)@jpeg",
521
671
  "createdAt": "1970-01-01T00:00:00.000Z",
522
672
  "description": "descript-alice",
@@ -532,6 +682,11 @@ Object {
532
682
  },
533
683
  ],
534
684
  "subject": Object {
685
+ "associated": Object {
686
+ "activitySubscription": Object {
687
+ "allowSubscriptions": "followers",
688
+ },
689
+ },
535
690
  "avatar": "https://bsky.public.url/img/avatar/plain/user(7)/cids(0)@jpeg",
536
691
  "createdAt": "1970-01-01T00:00:00.000Z",
537
692
  "description": "descript-dan",
@@ -555,6 +710,11 @@ Object {
555
710
  "cursor": "0000000000000__bafycid",
556
711
  "follows": Array [
557
712
  Object {
713
+ "associated": Object {
714
+ "activitySubscription": Object {
715
+ "allowSubscriptions": "followers",
716
+ },
717
+ },
558
718
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(0)@jpeg",
559
719
  "createdAt": "1970-01-01T00:00:00.000Z",
560
720
  "description": "descript-carol",
@@ -571,6 +731,11 @@ Object {
571
731
  },
572
732
  },
573
733
  Object {
734
+ "associated": Object {
735
+ "activitySubscription": Object {
736
+ "allowSubscriptions": "followers",
737
+ },
738
+ },
574
739
  "avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(0)@jpeg",
575
740
  "createdAt": "1970-01-01T00:00:00.000Z",
576
741
  "description": "descript-alice",
@@ -586,6 +751,11 @@ Object {
586
751
  },
587
752
  ],
588
753
  "subject": Object {
754
+ "associated": Object {
755
+ "activitySubscription": Object {
756
+ "allowSubscriptions": "followers",
757
+ },
758
+ },
589
759
  "avatar": "https://bsky.public.url/img/avatar/plain/user(5)/cids(0)@jpeg",
590
760
  "createdAt": "1970-01-01T00:00:00.000Z",
591
761
  "description": "descript-eve",
@@ -8,6 +8,9 @@ Object {
8
8
  "cid": "cids(0)",
9
9
  "creator": Object {
10
10
  "associated": Object {
11
+ "activitySubscription": Object {
12
+ "allowSubscriptions": "followers",
13
+ },
11
14
  "labeler": true,
12
15
  },
13
16
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
@@ -53,6 +56,9 @@ Object {
53
56
  "cid": "cids(3)",
54
57
  "creator": Object {
55
58
  "associated": Object {
59
+ "activitySubscription": Object {
60
+ "allowSubscriptions": "followers",
61
+ },
56
62
  "labeler": true,
57
63
  },
58
64
  "avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)@jpeg",
@@ -86,6 +92,9 @@ Object {
86
92
  "cid": "cids(0)",
87
93
  "creator": Object {
88
94
  "associated": Object {
95
+ "activitySubscription": Object {
96
+ "allowSubscriptions": "followers",
97
+ },
89
98
  "labeler": true,
90
99
  },
91
100
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
@@ -139,6 +148,9 @@ Object {
139
148
  "cid": "cids(3)",
140
149
  "creator": Object {
141
150
  "associated": Object {
151
+ "activitySubscription": Object {
152
+ "allowSubscriptions": "followers",
153
+ },
142
154
  "labeler": true,
143
155
  },
144
156
  "avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)@jpeg",
@@ -179,6 +191,9 @@ Object {
179
191
  "cid": "cids(0)",
180
192
  "creator": Object {
181
193
  "associated": Object {
194
+ "activitySubscription": Object {
195
+ "allowSubscriptions": "followers",
196
+ },
182
197
  "labeler": true,
183
198
  },
184
199
  "did": "user(0)",