@atproto/bsky 0.0.166 → 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 (148) hide show
  1. package/CHANGELOG.md +7 -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 +4 -0
  75. package/dist/lexicon/lexicons.d.ts.map +1 -1
  76. package/dist/lexicon/lexicons.js +2 -0
  77. package/dist/lexicon/lexicons.js.map +1 -1
  78. package/dist/proto/bsky_connect.d.ts +28 -1
  79. package/dist/proto/bsky_connect.d.ts.map +1 -1
  80. package/dist/proto/bsky_connect.js +27 -0
  81. package/dist/proto/bsky_connect.js.map +1 -1
  82. package/dist/proto/bsky_pb.d.ts +189 -0
  83. package/dist/proto/bsky_pb.d.ts.map +1 -1
  84. package/dist/proto/bsky_pb.js +598 -5
  85. package/dist/proto/bsky_pb.js.map +1 -1
  86. package/dist/stash.d.ts +1 -0
  87. package/dist/stash.d.ts.map +1 -1
  88. package/dist/stash.js +1 -0
  89. package/dist/stash.js.map +1 -1
  90. package/dist/views/index.d.ts +5 -3
  91. package/dist/views/index.d.ts.map +1 -1
  92. package/dist/views/index.js +29 -9
  93. package/dist/views/index.js.map +1 -1
  94. package/package.json +4 -4
  95. package/proto/bsky.proto +45 -0
  96. package/src/api/app/bsky/notification/listActivitySubscriptions.ts +110 -0
  97. package/src/api/app/bsky/notification/putActivitySubscription.ts +69 -0
  98. package/src/api/app/bsky/notification/putPreferencesV2.ts +2 -1
  99. package/src/api/index.ts +4 -0
  100. package/src/data-plane/bsync/index.ts +75 -44
  101. package/src/data-plane/server/db/database-schema.ts +3 -1
  102. package/src/data-plane/server/db/migrations/20250611T140649895Z-add-activity-subscription.ts +22 -0
  103. package/src/data-plane/server/db/migrations/index.ts +1 -0
  104. package/src/data-plane/server/db/pagination.ts +37 -0
  105. package/src/data-plane/server/db/tables/activity-subscription.ts +12 -0
  106. package/src/data-plane/server/indexing/index.ts +3 -0
  107. package/src/data-plane/server/indexing/plugins/notif-declaration.ts +59 -0
  108. package/src/data-plane/server/routes/activity-subscription.ts +83 -0
  109. package/src/data-plane/server/routes/index.ts +2 -2
  110. package/src/data-plane/server/routes/notifs.ts +95 -0
  111. package/src/data-plane/server/routes/profile.ts +33 -1
  112. package/src/data-plane/server/routes/records.ts +4 -0
  113. package/src/hydration/actor.ts +97 -10
  114. package/src/hydration/hydrator.ts +32 -6
  115. package/src/hydration/util.ts +8 -0
  116. package/src/lexicon/lexicons.ts +4 -0
  117. package/src/proto/bsky_connect.ts +33 -0
  118. package/src/proto/bsky_pb.ts +648 -0
  119. package/src/stash.ts +6 -1
  120. package/src/views/index.ts +48 -11
  121. package/tests/__snapshots__/feed-generation.test.ts.snap +213 -0
  122. package/tests/data-plane/__snapshots__/indexing.test.ts.snap +88 -0
  123. package/tests/views/__snapshots__/author-feed.test.ts.snap +498 -0
  124. package/tests/views/__snapshots__/block-lists.test.ts.snap +56 -0
  125. package/tests/views/__snapshots__/blocks.test.ts.snap +28 -0
  126. package/tests/views/__snapshots__/follows.test.ts.snap +170 -0
  127. package/tests/views/__snapshots__/labeler-service.test.ts.snap +15 -0
  128. package/tests/views/__snapshots__/likes.test.ts.snap +23 -0
  129. package/tests/views/__snapshots__/list-feed.test.ts.snap +68 -0
  130. package/tests/views/__snapshots__/lists.test.ts.snap +120 -0
  131. package/tests/views/__snapshots__/mute-lists.test.ts.snap +63 -0
  132. package/tests/views/__snapshots__/mutes.test.ts.snap +55 -0
  133. package/tests/views/__snapshots__/notifications.test.ts.snap +299 -0
  134. package/tests/views/__snapshots__/posts.test.ts.snap +58 -0
  135. package/tests/views/__snapshots__/profile.test.ts.snap +74 -0
  136. package/tests/views/__snapshots__/quotes.test.ts.snap +35 -0
  137. package/tests/views/__snapshots__/reposts.test.ts.snap +26 -0
  138. package/tests/views/__snapshots__/starter-packs.test.ts.snap +113 -0
  139. package/tests/views/__snapshots__/thread-v2.test.ts.snap +115 -0
  140. package/tests/views/__snapshots__/thread.test.ts.snap +145 -0
  141. package/tests/views/__snapshots__/timeline.test.ts.snap +566 -0
  142. package/tests/views/notifications.test.ts +355 -19
  143. package/tsconfig.build.tsbuildinfo +1 -1
  144. package/dist/data-plane/server/routes/private-data.d.ts +0 -9
  145. package/dist/data-plane/server/routes/private-data.d.ts.map +0 -1
  146. package/dist/data-plane/server/routes/private-data.js +0 -65
  147. package/dist/data-plane/server/routes/private-data.js.map +0 -1
  148. package/src/data-plane/server/routes/private-data.ts +0 -95
@@ -4,6 +4,11 @@ exports[`starter packs does include users with creator block relationship in lis
4
4
  Array [
5
5
  Object {
6
6
  "subject": Object {
7
+ "associated": Object {
8
+ "activitySubscription": Object {
9
+ "allowSubscriptions": "followers",
10
+ },
11
+ },
7
12
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(0)@jpeg",
8
13
  "createdAt": "1970-01-01T00:00:00.000Z",
9
14
  "description": "its me!",
@@ -36,6 +41,11 @@ Array [
36
41
  },
37
42
  Object {
38
43
  "subject": Object {
44
+ "associated": Object {
45
+ "activitySubscription": Object {
46
+ "allowSubscriptions": "followers",
47
+ },
48
+ },
39
49
  "did": "user(2)",
40
50
  "handle": "greta.test",
41
51
  "labels": Array [],
@@ -48,6 +58,11 @@ Array [
48
58
  },
49
59
  Object {
50
60
  "subject": Object {
61
+ "associated": Object {
62
+ "activitySubscription": Object {
63
+ "allowSubscriptions": "followers",
64
+ },
65
+ },
51
66
  "did": "user(3)",
52
67
  "handle": "frankie.test",
53
68
  "labels": Array [],
@@ -65,6 +80,11 @@ exports[`starter packs does not include users with creator block relationship in
65
80
  Array [
66
81
  Object {
67
82
  "subject": Object {
83
+ "associated": Object {
84
+ "activitySubscription": Object {
85
+ "allowSubscriptions": "followers",
86
+ },
87
+ },
68
88
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(0)@jpeg",
69
89
  "createdAt": "1970-01-01T00:00:00.000Z",
70
90
  "description": "its me!",
@@ -98,6 +118,11 @@ Array [
98
118
  },
99
119
  Object {
100
120
  "subject": Object {
121
+ "associated": Object {
122
+ "activitySubscription": Object {
123
+ "allowSubscriptions": "followers",
124
+ },
125
+ },
101
126
  "did": "user(2)",
102
127
  "handle": "greta.test",
103
128
  "labels": Array [],
@@ -115,6 +140,11 @@ exports[`starter packs does not include users with creator block relationship in
115
140
  Array [
116
141
  Object {
117
142
  "subject": Object {
143
+ "associated": Object {
144
+ "activitySubscription": Object {
145
+ "allowSubscriptions": "followers",
146
+ },
147
+ },
118
148
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(0)@jpeg",
119
149
  "createdAt": "1970-01-01T00:00:00.000Z",
120
150
  "description": "its me!",
@@ -149,6 +179,11 @@ Array [
149
179
  },
150
180
  Object {
151
181
  "subject": Object {
182
+ "associated": Object {
183
+ "activitySubscription": Object {
184
+ "allowSubscriptions": "followers",
185
+ },
186
+ },
152
187
  "did": "user(2)",
153
188
  "handle": "greta.test",
154
189
  "labels": Array [],
@@ -166,6 +201,11 @@ exports[`starter packs does not include users with creator block relationship in
166
201
  Array [
167
202
  Object {
168
203
  "subject": Object {
204
+ "associated": Object {
205
+ "activitySubscription": Object {
206
+ "allowSubscriptions": "followers",
207
+ },
208
+ },
169
209
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(0)@jpeg",
170
210
  "createdAt": "1970-01-01T00:00:00.000Z",
171
211
  "description": "its me!",
@@ -194,6 +234,11 @@ Array [
194
234
  },
195
235
  Object {
196
236
  "subject": Object {
237
+ "associated": Object {
238
+ "activitySubscription": Object {
239
+ "allowSubscriptions": "followers",
240
+ },
241
+ },
197
242
  "did": "user(2)",
198
243
  "handle": "greta.test",
199
244
  "labels": Array [],
@@ -207,6 +252,11 @@ exports[`starter packs generates notifications 1`] = `
207
252
  Array [
208
253
  Object {
209
254
  "author": Object {
255
+ "associated": Object {
256
+ "activitySubscription": Object {
257
+ "allowSubscriptions": "followers",
258
+ },
259
+ },
210
260
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
211
261
  "createdAt": "1970-01-01T00:00:00.000Z",
212
262
  "description": "New here",
@@ -252,6 +302,11 @@ Array [
252
302
  },
253
303
  Object {
254
304
  "author": Object {
305
+ "associated": Object {
306
+ "activitySubscription": Object {
307
+ "allowSubscriptions": "followers",
308
+ },
309
+ },
255
310
  "avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)@jpeg",
256
311
  "createdAt": "1970-01-01T00:00:00.000Z",
257
312
  "description": "New here",
@@ -297,6 +352,11 @@ Array [
297
352
  },
298
353
  Object {
299
354
  "author": Object {
355
+ "associated": Object {
356
+ "activitySubscription": Object {
357
+ "allowSubscriptions": "followers",
358
+ },
359
+ },
300
360
  "avatar": "https://bsky.public.url/img/avatar/plain/user(5)/cids(1)@jpeg",
301
361
  "createdAt": "1970-01-01T00:00:00.000Z",
302
362
  "description": "New here",
@@ -348,6 +408,11 @@ Array [
348
408
  Object {
349
409
  "cid": "cids(0)",
350
410
  "creator": Object {
411
+ "associated": Object {
412
+ "activitySubscription": Object {
413
+ "allowSubscriptions": "followers",
414
+ },
415
+ },
351
416
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
352
417
  "createdAt": "1970-01-01T00:00:00.000Z",
353
418
  "did": "user(0)",
@@ -386,6 +451,11 @@ Array [
386
451
  Object {
387
452
  "cid": "cids(3)",
388
453
  "creator": Object {
454
+ "associated": Object {
455
+ "activitySubscription": Object {
456
+ "allowSubscriptions": "followers",
457
+ },
458
+ },
389
459
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
390
460
  "createdAt": "1970-01-01T00:00:00.000Z",
391
461
  "did": "user(0)",
@@ -424,6 +494,11 @@ Array [
424
494
  Object {
425
495
  "cid": "cids(4)",
426
496
  "creator": Object {
497
+ "associated": Object {
498
+ "activitySubscription": Object {
499
+ "allowSubscriptions": "followers",
500
+ },
501
+ },
427
502
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
428
503
  "createdAt": "1970-01-01T00:00:00.000Z",
429
504
  "did": "user(0)",
@@ -470,6 +545,11 @@ exports[`starter packs gets starter pack details 1`] = `
470
545
  Object {
471
546
  "cid": "cids(0)",
472
547
  "creator": Object {
548
+ "associated": Object {
549
+ "activitySubscription": Object {
550
+ "allowSubscriptions": "followers",
551
+ },
552
+ },
473
553
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
474
554
  "createdAt": "1970-01-01T00:00:00.000Z",
475
555
  "did": "user(0)",
@@ -496,6 +576,11 @@ Object {
496
576
  Object {
497
577
  "cid": "cids(3)",
498
578
  "creator": Object {
579
+ "associated": Object {
580
+ "activitySubscription": Object {
581
+ "allowSubscriptions": "followers",
582
+ },
583
+ },
499
584
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
500
585
  "createdAt": "1970-01-01T00:00:00.000Z",
501
586
  "description": "its me!",
@@ -544,6 +629,11 @@ Object {
544
629
  "listItemsSample": Array [
545
630
  Object {
546
631
  "subject": Object {
632
+ "associated": Object {
633
+ "activitySubscription": Object {
634
+ "allowSubscriptions": "followers",
635
+ },
636
+ },
547
637
  "did": "user(2)",
548
638
  "handle": "carol.test",
549
639
  "labels": Array [],
@@ -552,6 +642,11 @@ Object {
552
642
  },
553
643
  Object {
554
644
  "subject": Object {
645
+ "associated": Object {
646
+ "activitySubscription": Object {
647
+ "allowSubscriptions": "followers",
648
+ },
649
+ },
555
650
  "avatar": "https://bsky.public.url/img/avatar/plain/user(4)/cids(1)@jpeg",
556
651
  "createdAt": "1970-01-01T00:00:00.000Z",
557
652
  "description": "hi im bob label_me",
@@ -566,6 +661,9 @@ Object {
566
661
  Object {
567
662
  "subject": Object {
568
663
  "associated": Object {
664
+ "activitySubscription": Object {
665
+ "allowSubscriptions": "followers",
666
+ },
569
667
  "chat": Object {
570
668
  "allowIncoming": "none",
571
669
  },
@@ -597,6 +695,11 @@ Array [
597
695
  Object {
598
696
  "cid": "cids(0)",
599
697
  "creator": Object {
698
+ "associated": Object {
699
+ "activitySubscription": Object {
700
+ "allowSubscriptions": "followers",
701
+ },
702
+ },
600
703
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
601
704
  "createdAt": "1970-01-01T00:00:00.000Z",
602
705
  "did": "user(0)",
@@ -635,6 +738,11 @@ Array [
635
738
  Object {
636
739
  "cid": "cids(3)",
637
740
  "creator": Object {
741
+ "associated": Object {
742
+ "activitySubscription": Object {
743
+ "allowSubscriptions": "followers",
744
+ },
745
+ },
638
746
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
639
747
  "createdAt": "1970-01-01T00:00:00.000Z",
640
748
  "did": "user(0)",
@@ -681,6 +789,11 @@ exports[`starter packs gets starter pack used on profile detail 1`] = `
681
789
  Object {
682
790
  "cid": "cids(0)",
683
791
  "creator": Object {
792
+ "associated": Object {
793
+ "activitySubscription": Object {
794
+ "allowSubscriptions": "followers",
795
+ },
796
+ },
684
797
  "avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)@jpeg",
685
798
  "createdAt": "1970-01-01T00:00:00.000Z",
686
799
  "did": "user(0)",
@@ -16,6 +16,11 @@ Object {
16
16
  "opThread": true,
17
17
  "post": Object {
18
18
  "author": Object {
19
+ "associated": Object {
20
+ "activitySubscription": Object {
21
+ "allowSubscriptions": "followers",
22
+ },
23
+ },
19
24
  "did": "user(0)",
20
25
  "handle": "simple-op.test",
21
26
  "labels": Array [],
@@ -56,6 +61,11 @@ Object {
56
61
  "opThread": false,
57
62
  "post": Object {
58
63
  "author": Object {
64
+ "associated": Object {
65
+ "activitySubscription": Object {
66
+ "allowSubscriptions": "followers",
67
+ },
68
+ },
59
69
  "did": "user(1)",
60
70
  "handle": "simple-alice.test",
61
71
  "labels": Array [],
@@ -114,6 +124,11 @@ Object {
114
124
  "opThread": true,
115
125
  "post": Object {
116
126
  "author": Object {
127
+ "associated": Object {
128
+ "activitySubscription": Object {
129
+ "allowSubscriptions": "followers",
130
+ },
131
+ },
117
132
  "did": "user(0)",
118
133
  "handle": "simple-op.test",
119
134
  "labels": Array [],
@@ -154,6 +169,11 @@ Object {
154
169
  "opThread": false,
155
170
  "post": Object {
156
171
  "author": Object {
172
+ "associated": Object {
173
+ "activitySubscription": Object {
174
+ "allowSubscriptions": "followers",
175
+ },
176
+ },
157
177
  "did": "user(1)",
158
178
  "handle": "simple-bob.test",
159
179
  "labels": Array [],
@@ -204,6 +224,11 @@ Object {
204
224
  "opThread": false,
205
225
  "post": Object {
206
226
  "author": Object {
227
+ "associated": Object {
228
+ "activitySubscription": Object {
229
+ "allowSubscriptions": "followers",
230
+ },
231
+ },
207
232
  "did": "user(2)",
208
233
  "handle": "simple-alice.test",
209
234
  "labels": Array [],
@@ -262,6 +287,11 @@ Object {
262
287
  "opThread": true,
263
288
  "post": Object {
264
289
  "author": Object {
290
+ "associated": Object {
291
+ "activitySubscription": Object {
292
+ "allowSubscriptions": "followers",
293
+ },
294
+ },
265
295
  "did": "user(0)",
266
296
  "handle": "simple-op.test",
267
297
  "labels": Array [],
@@ -302,6 +332,11 @@ Object {
302
332
  "opThread": false,
303
333
  "post": Object {
304
334
  "author": Object {
335
+ "associated": Object {
336
+ "activitySubscription": Object {
337
+ "allowSubscriptions": "followers",
338
+ },
339
+ },
305
340
  "did": "user(1)",
306
341
  "handle": "simple-bob.test",
307
342
  "labels": Array [],
@@ -352,6 +387,11 @@ Object {
352
387
  "opThread": false,
353
388
  "post": Object {
354
389
  "author": Object {
390
+ "associated": Object {
391
+ "activitySubscription": Object {
392
+ "allowSubscriptions": "followers",
393
+ },
394
+ },
355
395
  "did": "user(2)",
356
396
  "handle": "simple-alice.test",
357
397
  "labels": Array [],
@@ -410,6 +450,11 @@ Object {
410
450
  "opThread": true,
411
451
  "post": Object {
412
452
  "author": Object {
453
+ "associated": Object {
454
+ "activitySubscription": Object {
455
+ "allowSubscriptions": "followers",
456
+ },
457
+ },
413
458
  "did": "user(0)",
414
459
  "handle": "simple-op.test",
415
460
  "labels": Array [],
@@ -450,6 +495,11 @@ Object {
450
495
  "opThread": false,
451
496
  "post": Object {
452
497
  "author": Object {
498
+ "associated": Object {
499
+ "activitySubscription": Object {
500
+ "allowSubscriptions": "followers",
501
+ },
502
+ },
453
503
  "did": "user(1)",
454
504
  "handle": "simple-carol.test",
455
505
  "labels": Array [],
@@ -508,6 +558,11 @@ Object {
508
558
  "opThread": true,
509
559
  "post": Object {
510
560
  "author": Object {
561
+ "associated": Object {
562
+ "activitySubscription": Object {
563
+ "allowSubscriptions": "followers",
564
+ },
565
+ },
511
566
  "did": "user(0)",
512
567
  "handle": "simple-op.test",
513
568
  "labels": Array [],
@@ -548,6 +603,11 @@ Object {
548
603
  "opThread": true,
549
604
  "post": Object {
550
605
  "author": Object {
606
+ "associated": Object {
607
+ "activitySubscription": Object {
608
+ "allowSubscriptions": "followers",
609
+ },
610
+ },
551
611
  "did": "user(0)",
552
612
  "handle": "simple-op.test",
553
613
  "labels": Array [],
@@ -598,6 +658,11 @@ Object {
598
658
  "opThread": true,
599
659
  "post": Object {
600
660
  "author": Object {
661
+ "associated": Object {
662
+ "activitySubscription": Object {
663
+ "allowSubscriptions": "followers",
664
+ },
665
+ },
601
666
  "did": "user(0)",
602
667
  "handle": "simple-op.test",
603
668
  "labels": Array [],
@@ -656,6 +721,11 @@ Object {
656
721
  "opThread": true,
657
722
  "post": Object {
658
723
  "author": Object {
724
+ "associated": Object {
725
+ "activitySubscription": Object {
726
+ "allowSubscriptions": "followers",
727
+ },
728
+ },
659
729
  "did": "user(0)",
660
730
  "handle": "simple-op.test",
661
731
  "labels": Array [],
@@ -696,6 +766,11 @@ Object {
696
766
  "opThread": true,
697
767
  "post": Object {
698
768
  "author": Object {
769
+ "associated": Object {
770
+ "activitySubscription": Object {
771
+ "allowSubscriptions": "followers",
772
+ },
773
+ },
699
774
  "did": "user(0)",
700
775
  "handle": "simple-op.test",
701
776
  "labels": Array [],
@@ -746,6 +821,11 @@ Object {
746
821
  "opThread": true,
747
822
  "post": Object {
748
823
  "author": Object {
824
+ "associated": Object {
825
+ "activitySubscription": Object {
826
+ "allowSubscriptions": "followers",
827
+ },
828
+ },
749
829
  "did": "user(0)",
750
830
  "handle": "simple-op.test",
751
831
  "labels": Array [],
@@ -804,6 +884,11 @@ Object {
804
884
  "opThread": true,
805
885
  "post": Object {
806
886
  "author": Object {
887
+ "associated": Object {
888
+ "activitySubscription": Object {
889
+ "allowSubscriptions": "followers",
890
+ },
891
+ },
807
892
  "did": "user(0)",
808
893
  "handle": "simple-op.test",
809
894
  "labels": Array [],
@@ -844,6 +929,11 @@ Object {
844
929
  "opThread": true,
845
930
  "post": Object {
846
931
  "author": Object {
932
+ "associated": Object {
933
+ "activitySubscription": Object {
934
+ "allowSubscriptions": "followers",
935
+ },
936
+ },
847
937
  "did": "user(0)",
848
938
  "handle": "simple-op.test",
849
939
  "labels": Array [],
@@ -894,6 +984,11 @@ Object {
894
984
  "opThread": true,
895
985
  "post": Object {
896
986
  "author": Object {
987
+ "associated": Object {
988
+ "activitySubscription": Object {
989
+ "allowSubscriptions": "followers",
990
+ },
991
+ },
897
992
  "did": "user(0)",
898
993
  "handle": "simple-op.test",
899
994
  "labels": Array [],
@@ -944,6 +1039,11 @@ Object {
944
1039
  "opThread": false,
945
1040
  "post": Object {
946
1041
  "author": Object {
1042
+ "associated": Object {
1043
+ "activitySubscription": Object {
1044
+ "allowSubscriptions": "followers",
1045
+ },
1046
+ },
947
1047
  "did": "user(1)",
948
1048
  "handle": "simple-alice.test",
949
1049
  "labels": Array [],
@@ -994,6 +1094,11 @@ Object {
994
1094
  "opThread": false,
995
1095
  "post": Object {
996
1096
  "author": Object {
1097
+ "associated": Object {
1098
+ "activitySubscription": Object {
1099
+ "allowSubscriptions": "followers",
1100
+ },
1101
+ },
997
1102
  "did": "user(2)",
998
1103
  "handle": "simple-bob.test",
999
1104
  "labels": Array [],
@@ -1044,6 +1149,11 @@ Object {
1044
1149
  "opThread": false,
1045
1150
  "post": Object {
1046
1151
  "author": Object {
1152
+ "associated": Object {
1153
+ "activitySubscription": Object {
1154
+ "allowSubscriptions": "followers",
1155
+ },
1156
+ },
1047
1157
  "did": "user(1)",
1048
1158
  "handle": "simple-alice.test",
1049
1159
  "labels": Array [],
@@ -1094,6 +1204,11 @@ Object {
1094
1204
  "opThread": false,
1095
1205
  "post": Object {
1096
1206
  "author": Object {
1207
+ "associated": Object {
1208
+ "activitySubscription": Object {
1209
+ "allowSubscriptions": "followers",
1210
+ },
1211
+ },
1097
1212
  "did": "user(3)",
1098
1213
  "handle": "simple-carol.test",
1099
1214
  "labels": Array [],