@atproto/bsky 0.0.219 → 0.0.221
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +34 -0
- package/dist/api/app/bsky/graph/getSuggestedFollowsByActor.d.ts.map +1 -1
- package/dist/api/app/bsky/graph/getSuggestedFollowsByActor.js +44 -36
- package/dist/api/app/bsky/graph/getSuggestedFollowsByActor.js.map +1 -1
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +1 -0
- package/dist/config.js.map +1 -1
- package/dist/feature-gates/gates.d.ts +1 -1
- package/dist/feature-gates/gates.d.ts.map +1 -1
- package/dist/feature-gates/gates.js.map +1 -1
- package/dist/feature-gates/types.d.ts +1 -1
- package/dist/feature-gates/types.d.ts.map +1 -1
- package/dist/feature-gates/types.js.map +1 -1
- package/dist/feature-gates/utils.d.ts.map +1 -1
- package/dist/feature-gates/utils.js +4 -2
- package/dist/feature-gates/utils.js.map +1 -1
- package/dist/hydration/actor.d.ts +1 -1
- package/dist/hydration/actor.d.ts.map +1 -1
- package/dist/hydration/actor.js +4 -3
- package/dist/hydration/actor.js.map +1 -1
- package/dist/hydration/hydrator.d.ts +14 -2
- package/dist/hydration/hydrator.d.ts.map +1 -1
- package/dist/hydration/hydrator.js +23 -2
- package/dist/hydration/hydrator.js.map +1 -1
- package/dist/hydration/util.d.ts +2 -0
- package/dist/hydration/util.d.ts.map +1 -1
- package/dist/hydration/util.js +14 -3
- package/dist/hydration/util.js.map +1 -1
- package/dist/image/sharp.js +2 -2
- package/dist/image/sharp.js.map +1 -1
- package/dist/image/uri.d.ts.map +1 -1
- package/dist/image/uri.js +13 -15
- package/dist/image/uri.js.map +1 -1
- package/dist/image/util.d.ts +1 -1
- package/dist/image/util.d.ts.map +1 -1
- package/dist/image/util.js +1 -0
- package/dist/image/util.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +10 -10
- package/dist/lexicon/lexicons.js +5 -5
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/app/bsky/graph/getSuggestedFollowsByActor.d.ts +3 -3
- package/dist/lexicon/types/app/bsky/graph/getSuggestedFollowsByActor.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/graph/getSuggestedFollowsByActor.js.map +1 -1
- package/dist/util/uris.d.ts +1 -1
- package/dist/util/uris.d.ts.map +1 -1
- package/dist/views/index.js +1 -1
- package/dist/views/index.js.map +1 -1
- package/package.json +10 -10
- package/src/api/app/bsky/graph/getSuggestedFollowsByActor.ts +64 -44
- package/src/config.ts +1 -0
- package/src/feature-gates/gates.ts +1 -0
- package/src/feature-gates/types.ts +2 -1
- package/src/feature-gates/utils.ts +4 -2
- package/src/hydration/actor.ts +7 -4
- package/src/hydration/hydrator.ts +29 -3
- package/src/hydration/util.ts +14 -2
- package/src/image/sharp.ts +2 -2
- package/src/image/uri.ts +16 -17
- package/src/image/util.ts +2 -1
- package/src/index.ts +14 -10
- package/src/lexicon/lexicons.ts +6 -6
- package/src/lexicon/types/app/bsky/graph/getSuggestedFollowsByActor.ts +3 -3
- package/src/views/index.ts +1 -1
- package/tests/__snapshots__/feed-generation.test.ts.snap +52 -52
- package/tests/_util.ts +6 -4
- package/tests/data-plane/__snapshots__/indexing.test.ts.snap +7 -7
- package/tests/hydration/util.test.ts +40 -0
- package/tests/image/server.test.ts +4 -4
- package/tests/image/sharp.test.ts +7 -7
- package/tests/image/uri.test.ts +24 -10
- package/tests/views/__snapshots__/author-feed.test.ts.snap +110 -110
- package/tests/views/__snapshots__/block-lists.test.ts.snap +14 -14
- package/tests/views/__snapshots__/blocks.test.ts.snap +6 -6
- package/tests/views/__snapshots__/bookmarks.test.ts.snap +10 -10
- package/tests/views/__snapshots__/follows.test.ts.snap +34 -34
- package/tests/views/__snapshots__/labeler-service.test.ts.snap +4 -4
- package/tests/views/__snapshots__/likes.test.ts.snap +1 -1
- package/tests/views/__snapshots__/list-feed.test.ts.snap +16 -16
- package/tests/views/__snapshots__/lists.test.ts.snap +8 -8
- package/tests/views/__snapshots__/mute-lists.test.ts.snap +19 -19
- package/tests/views/__snapshots__/mutes.test.ts.snap +10 -10
- package/tests/views/__snapshots__/notifications.test.ts.snap +36 -36
- package/tests/views/__snapshots__/posts.test.ts.snap +17 -17
- package/tests/views/__snapshots__/profile.test.ts.snap +15 -15
- package/tests/views/__snapshots__/quotes.test.ts.snap +6 -6
- package/tests/views/__snapshots__/reposts.test.ts.snap +1 -1
- package/tests/views/__snapshots__/starter-packs.test.ts.snap +16 -16
- package/tests/views/__snapshots__/thread.test.ts.snap +36 -36
- package/tests/views/__snapshots__/timeline.test.ts.snap +133 -133
- package/tests/views/profile.test.ts +35 -0
- package/tests/views/suggested-follows.test.ts +0 -169
|
@@ -10,7 +10,7 @@ Array [
|
|
|
10
10
|
"allowSubscriptions": "followers",
|
|
11
11
|
},
|
|
12
12
|
},
|
|
13
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
13
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
14
14
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
15
15
|
"did": "user(0)",
|
|
16
16
|
"displayName": "ali",
|
|
@@ -73,7 +73,7 @@ Array [
|
|
|
73
73
|
"allowSubscriptions": "followers",
|
|
74
74
|
},
|
|
75
75
|
},
|
|
76
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
76
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
77
77
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
78
78
|
"did": "user(0)",
|
|
79
79
|
"displayName": "ali",
|
|
@@ -107,7 +107,7 @@ Array [
|
|
|
107
107
|
"allowSubscriptions": "followers",
|
|
108
108
|
},
|
|
109
109
|
},
|
|
110
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)
|
|
110
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)",
|
|
111
111
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
112
112
|
"did": "user(2)",
|
|
113
113
|
"displayName": "bobby",
|
|
@@ -127,8 +127,8 @@ Array [
|
|
|
127
127
|
"images": Array [
|
|
128
128
|
Object {
|
|
129
129
|
"alt": "../dev-env/assets/key-landscape-small.jpg",
|
|
130
|
-
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(5)
|
|
131
|
-
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(5)
|
|
130
|
+
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(5)",
|
|
131
|
+
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(5)",
|
|
132
132
|
},
|
|
133
133
|
],
|
|
134
134
|
},
|
|
@@ -199,7 +199,7 @@ Array [
|
|
|
199
199
|
"allowSubscriptions": "followers",
|
|
200
200
|
},
|
|
201
201
|
},
|
|
202
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
202
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
203
203
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
204
204
|
"did": "user(0)",
|
|
205
205
|
"displayName": "ali",
|
|
@@ -255,7 +255,7 @@ Array [
|
|
|
255
255
|
"allowSubscriptions": "followers",
|
|
256
256
|
},
|
|
257
257
|
},
|
|
258
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
258
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
259
259
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
260
260
|
"did": "user(0)",
|
|
261
261
|
"displayName": "ali",
|
|
@@ -456,7 +456,7 @@ Array [
|
|
|
456
456
|
"allowSubscriptions": "followers",
|
|
457
457
|
},
|
|
458
458
|
},
|
|
459
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
459
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
460
460
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
461
461
|
"did": "user(0)",
|
|
462
462
|
"displayName": "ali",
|
|
@@ -511,7 +511,7 @@ Array [
|
|
|
511
511
|
"allowSubscriptions": "followers",
|
|
512
512
|
},
|
|
513
513
|
},
|
|
514
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
514
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
515
515
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
516
516
|
"did": "user(0)",
|
|
517
517
|
"displayName": "ali",
|
|
@@ -587,7 +587,7 @@ Array [
|
|
|
587
587
|
"allowSubscriptions": "followers",
|
|
588
588
|
},
|
|
589
589
|
},
|
|
590
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
590
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
591
591
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
592
592
|
"did": "user(0)",
|
|
593
593
|
"displayName": "bobby",
|
|
@@ -605,8 +605,8 @@ Array [
|
|
|
605
605
|
"images": Array [
|
|
606
606
|
Object {
|
|
607
607
|
"alt": "../dev-env/assets/key-landscape-small.jpg",
|
|
608
|
-
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(1)/cids(2)
|
|
609
|
-
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(1)/cids(2)
|
|
608
|
+
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(1)/cids(2)",
|
|
609
|
+
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(1)/cids(2)",
|
|
610
610
|
},
|
|
611
611
|
],
|
|
612
612
|
},
|
|
@@ -678,7 +678,7 @@ Array [
|
|
|
678
678
|
"allowSubscriptions": "followers",
|
|
679
679
|
},
|
|
680
680
|
},
|
|
681
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)
|
|
681
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)",
|
|
682
682
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
683
683
|
"did": "user(2)",
|
|
684
684
|
"displayName": "ali",
|
|
@@ -735,7 +735,7 @@ Array [
|
|
|
735
735
|
"allowSubscriptions": "followers",
|
|
736
736
|
},
|
|
737
737
|
},
|
|
738
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)
|
|
738
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)",
|
|
739
739
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
740
740
|
"did": "user(2)",
|
|
741
741
|
"displayName": "ali",
|
|
@@ -794,7 +794,7 @@ Array [
|
|
|
794
794
|
"allowSubscriptions": "followers",
|
|
795
795
|
},
|
|
796
796
|
},
|
|
797
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
797
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
798
798
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
799
799
|
"did": "user(0)",
|
|
800
800
|
"displayName": "bobby",
|
|
@@ -834,7 +834,7 @@ Array [
|
|
|
834
834
|
"allowSubscriptions": "followers",
|
|
835
835
|
},
|
|
836
836
|
},
|
|
837
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
837
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
838
838
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
839
839
|
"did": "user(0)",
|
|
840
840
|
"displayName": "bobby",
|
|
@@ -923,13 +923,13 @@ Array [
|
|
|
923
923
|
"images": Array [
|
|
924
924
|
Object {
|
|
925
925
|
"alt": "../dev-env/assets/key-landscape-small.jpg",
|
|
926
|
-
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(2)
|
|
927
|
-
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(2)
|
|
926
|
+
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(2)",
|
|
927
|
+
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(2)",
|
|
928
928
|
},
|
|
929
929
|
Object {
|
|
930
930
|
"alt": "../dev-env/assets/key-alt.jpg",
|
|
931
|
-
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(3)
|
|
932
|
-
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(3)
|
|
931
|
+
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(3)",
|
|
932
|
+
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(3)",
|
|
933
933
|
},
|
|
934
934
|
],
|
|
935
935
|
},
|
|
@@ -942,7 +942,7 @@ Array [
|
|
|
942
942
|
"allowSubscriptions": "followers",
|
|
943
943
|
},
|
|
944
944
|
},
|
|
945
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(5)/cids(5)
|
|
945
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(5)/cids(5)",
|
|
946
946
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
947
947
|
"did": "user(4)",
|
|
948
948
|
"displayName": "bobby",
|
|
@@ -1141,7 +1141,7 @@ Array [
|
|
|
1141
1141
|
"allowSubscriptions": "followers",
|
|
1142
1142
|
},
|
|
1143
1143
|
},
|
|
1144
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(6)/cids(5)
|
|
1144
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(6)/cids(5)",
|
|
1145
1145
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
1146
1146
|
"did": "user(1)",
|
|
1147
1147
|
"displayName": "ali",
|
|
@@ -1198,7 +1198,7 @@ Array [
|
|
|
1198
1198
|
"allowSubscriptions": "followers",
|
|
1199
1199
|
},
|
|
1200
1200
|
},
|
|
1201
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(6)/cids(5)
|
|
1201
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(6)/cids(5)",
|
|
1202
1202
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
1203
1203
|
"did": "user(1)",
|
|
1204
1204
|
"displayName": "ali",
|
|
@@ -1274,13 +1274,13 @@ Array [
|
|
|
1274
1274
|
"images": Array [
|
|
1275
1275
|
Object {
|
|
1276
1276
|
"alt": "../dev-env/assets/key-landscape-small.jpg",
|
|
1277
|
-
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(2)
|
|
1278
|
-
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(2)
|
|
1277
|
+
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(2)",
|
|
1278
|
+
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(2)",
|
|
1279
1279
|
},
|
|
1280
1280
|
Object {
|
|
1281
1281
|
"alt": "../dev-env/assets/key-alt.jpg",
|
|
1282
|
-
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(3)
|
|
1283
|
-
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(3)
|
|
1282
|
+
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(3)",
|
|
1283
|
+
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(3)",
|
|
1284
1284
|
},
|
|
1285
1285
|
],
|
|
1286
1286
|
},
|
|
@@ -1293,7 +1293,7 @@ Array [
|
|
|
1293
1293
|
"allowSubscriptions": "followers",
|
|
1294
1294
|
},
|
|
1295
1295
|
},
|
|
1296
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(5)/cids(5)
|
|
1296
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(5)/cids(5)",
|
|
1297
1297
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
1298
1298
|
"did": "user(4)",
|
|
1299
1299
|
"displayName": "bobby",
|
|
@@ -1394,7 +1394,7 @@ Array [
|
|
|
1394
1394
|
"allowSubscriptions": "followers",
|
|
1395
1395
|
},
|
|
1396
1396
|
},
|
|
1397
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
1397
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
1398
1398
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
1399
1399
|
"did": "user(0)",
|
|
1400
1400
|
"displayName": "ali",
|
|
@@ -1482,7 +1482,7 @@ Array [
|
|
|
1482
1482
|
"allowSubscriptions": "followers",
|
|
1483
1483
|
},
|
|
1484
1484
|
},
|
|
1485
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
1485
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
1486
1486
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
1487
1487
|
"did": "user(0)",
|
|
1488
1488
|
"displayName": "ali",
|
|
@@ -1517,7 +1517,7 @@ Array [
|
|
|
1517
1517
|
"allowSubscriptions": "followers",
|
|
1518
1518
|
},
|
|
1519
1519
|
},
|
|
1520
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(4)/cids(1)
|
|
1520
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(4)/cids(1)",
|
|
1521
1521
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
1522
1522
|
"did": "user(3)",
|
|
1523
1523
|
"displayName": "bobby",
|
|
@@ -1536,8 +1536,8 @@ Array [
|
|
|
1536
1536
|
"images": Array [
|
|
1537
1537
|
Object {
|
|
1538
1538
|
"alt": "../dev-env/assets/key-landscape-small.jpg",
|
|
1539
|
-
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(4)/cids(6)
|
|
1540
|
-
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(4)/cids(6)
|
|
1539
|
+
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(4)/cids(6)",
|
|
1540
|
+
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(4)/cids(6)",
|
|
1541
1541
|
},
|
|
1542
1542
|
],
|
|
1543
1543
|
},
|
|
@@ -1608,7 +1608,7 @@ Array [
|
|
|
1608
1608
|
"allowSubscriptions": "followers",
|
|
1609
1609
|
},
|
|
1610
1610
|
},
|
|
1611
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
1611
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
1612
1612
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
1613
1613
|
"did": "user(0)",
|
|
1614
1614
|
"displayName": "ali",
|
|
@@ -1667,7 +1667,7 @@ Array [
|
|
|
1667
1667
|
"allowSubscriptions": "followers",
|
|
1668
1668
|
},
|
|
1669
1669
|
},
|
|
1670
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
1670
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
1671
1671
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
1672
1672
|
"did": "user(0)",
|
|
1673
1673
|
"displayName": "ali",
|
|
@@ -1788,13 +1788,13 @@ Array [
|
|
|
1788
1788
|
"images": Array [
|
|
1789
1789
|
Object {
|
|
1790
1790
|
"alt": "../dev-env/assets/key-landscape-small.jpg",
|
|
1791
|
-
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(6)/cids(6)
|
|
1792
|
-
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(6)/cids(6)
|
|
1791
|
+
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(6)/cids(6)",
|
|
1792
|
+
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(6)/cids(6)",
|
|
1793
1793
|
},
|
|
1794
1794
|
Object {
|
|
1795
1795
|
"alt": "../dev-env/assets/key-alt.jpg",
|
|
1796
|
-
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(6)/cids(10)
|
|
1797
|
-
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(6)/cids(10)
|
|
1796
|
+
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(6)/cids(10)",
|
|
1797
|
+
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(6)/cids(10)",
|
|
1798
1798
|
},
|
|
1799
1799
|
],
|
|
1800
1800
|
},
|
|
@@ -1807,7 +1807,7 @@ Array [
|
|
|
1807
1807
|
"allowSubscriptions": "followers",
|
|
1808
1808
|
},
|
|
1809
1809
|
},
|
|
1810
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(4)/cids(1)
|
|
1810
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(4)/cids(1)",
|
|
1811
1811
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
1812
1812
|
"did": "user(3)",
|
|
1813
1813
|
"displayName": "bobby",
|
|
@@ -1983,7 +1983,7 @@ Array [
|
|
|
1983
1983
|
"allowSubscriptions": "followers",
|
|
1984
1984
|
},
|
|
1985
1985
|
},
|
|
1986
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
1986
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
1987
1987
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
1988
1988
|
"did": "user(0)",
|
|
1989
1989
|
"displayName": "ali",
|
|
@@ -2039,7 +2039,7 @@ Array [
|
|
|
2039
2039
|
"allowSubscriptions": "followers",
|
|
2040
2040
|
},
|
|
2041
2041
|
},
|
|
2042
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
2042
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
2043
2043
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
2044
2044
|
"did": "user(0)",
|
|
2045
2045
|
"displayName": "ali",
|
|
@@ -2095,7 +2095,7 @@ Array [
|
|
|
2095
2095
|
"allowSubscriptions": "followers",
|
|
2096
2096
|
},
|
|
2097
2097
|
},
|
|
2098
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
2098
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
2099
2099
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
2100
2100
|
"did": "user(0)",
|
|
2101
2101
|
"displayName": "ali",
|
|
@@ -2151,7 +2151,7 @@ Array [
|
|
|
2151
2151
|
"allowSubscriptions": "followers",
|
|
2152
2152
|
},
|
|
2153
2153
|
},
|
|
2154
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
2154
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
2155
2155
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
2156
2156
|
"did": "user(0)",
|
|
2157
2157
|
"displayName": "ali",
|
|
@@ -2207,7 +2207,7 @@ Array [
|
|
|
2207
2207
|
"allowSubscriptions": "followers",
|
|
2208
2208
|
},
|
|
2209
2209
|
},
|
|
2210
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
2210
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
2211
2211
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
2212
2212
|
"did": "user(0)",
|
|
2213
2213
|
"displayName": "ali",
|
|
@@ -2263,7 +2263,7 @@ Array [
|
|
|
2263
2263
|
"allowSubscriptions": "followers",
|
|
2264
2264
|
},
|
|
2265
2265
|
},
|
|
2266
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
2266
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
2267
2267
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
2268
2268
|
"did": "user(0)",
|
|
2269
2269
|
"displayName": "ali",
|
|
@@ -2319,7 +2319,7 @@ Array [
|
|
|
2319
2319
|
"allowSubscriptions": "followers",
|
|
2320
2320
|
},
|
|
2321
2321
|
},
|
|
2322
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
2322
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
2323
2323
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
2324
2324
|
"did": "user(0)",
|
|
2325
2325
|
"displayName": "ali",
|
|
@@ -2375,7 +2375,7 @@ Array [
|
|
|
2375
2375
|
"allowSubscriptions": "followers",
|
|
2376
2376
|
},
|
|
2377
2377
|
},
|
|
2378
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
2378
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
2379
2379
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
2380
2380
|
"did": "user(0)",
|
|
2381
2381
|
"displayName": "ali",
|
|
@@ -2431,7 +2431,7 @@ Array [
|
|
|
2431
2431
|
"allowSubscriptions": "followers",
|
|
2432
2432
|
},
|
|
2433
2433
|
},
|
|
2434
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
2434
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
2435
2435
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
2436
2436
|
"did": "user(0)",
|
|
2437
2437
|
"displayName": "ali",
|
|
@@ -2495,7 +2495,7 @@ Array [
|
|
|
2495
2495
|
"allowSubscriptions": "followers",
|
|
2496
2496
|
},
|
|
2497
2497
|
},
|
|
2498
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
2498
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
2499
2499
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
2500
2500
|
"did": "user(0)",
|
|
2501
2501
|
"displayName": "ali",
|
|
@@ -2529,7 +2529,7 @@ Array [
|
|
|
2529
2529
|
"allowSubscriptions": "followers",
|
|
2530
2530
|
},
|
|
2531
2531
|
},
|
|
2532
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)
|
|
2532
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)",
|
|
2533
2533
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
2534
2534
|
"did": "user(2)",
|
|
2535
2535
|
"displayName": "bobby",
|
|
@@ -2549,8 +2549,8 @@ Array [
|
|
|
2549
2549
|
"images": Array [
|
|
2550
2550
|
Object {
|
|
2551
2551
|
"alt": "../dev-env/assets/key-landscape-small.jpg",
|
|
2552
|
-
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(13)
|
|
2553
|
-
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(13)
|
|
2552
|
+
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(13)",
|
|
2553
|
+
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(13)",
|
|
2554
2554
|
},
|
|
2555
2555
|
],
|
|
2556
2556
|
},
|
|
@@ -2621,7 +2621,7 @@ Array [
|
|
|
2621
2621
|
"allowSubscriptions": "followers",
|
|
2622
2622
|
},
|
|
2623
2623
|
},
|
|
2624
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
2624
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
2625
2625
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
2626
2626
|
"did": "user(0)",
|
|
2627
2627
|
"displayName": "ali",
|
|
@@ -2678,7 +2678,7 @@ Array [
|
|
|
2678
2678
|
"allowSubscriptions": "followers",
|
|
2679
2679
|
},
|
|
2680
2680
|
},
|
|
2681
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
2681
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
2682
2682
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
2683
2683
|
"did": "user(0)",
|
|
2684
2684
|
"displayName": "ali",
|
|
@@ -2880,7 +2880,7 @@ Array [
|
|
|
2880
2880
|
"allowSubscriptions": "followers",
|
|
2881
2881
|
},
|
|
2882
2882
|
},
|
|
2883
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
2883
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
2884
2884
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
2885
2885
|
"did": "user(0)",
|
|
2886
2886
|
"displayName": "ali",
|
|
@@ -2936,7 +2936,7 @@ Array [
|
|
|
2936
2936
|
"allowSubscriptions": "followers",
|
|
2937
2937
|
},
|
|
2938
2938
|
},
|
|
2939
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
2939
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
2940
2940
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
2941
2941
|
"did": "user(0)",
|
|
2942
2942
|
"displayName": "ali",
|
|
@@ -3013,7 +3013,7 @@ Array [
|
|
|
3013
3013
|
"allowSubscriptions": "followers",
|
|
3014
3014
|
},
|
|
3015
3015
|
},
|
|
3016
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
3016
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
3017
3017
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
3018
3018
|
"did": "user(0)",
|
|
3019
3019
|
"displayName": "ali",
|
|
@@ -3069,7 +3069,7 @@ Array [
|
|
|
3069
3069
|
"allowSubscriptions": "followers",
|
|
3070
3070
|
},
|
|
3071
3071
|
},
|
|
3072
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
3072
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
3073
3073
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
3074
3074
|
"did": "user(0)",
|
|
3075
3075
|
"displayName": "ali",
|
|
@@ -3125,7 +3125,7 @@ Array [
|
|
|
3125
3125
|
"allowSubscriptions": "followers",
|
|
3126
3126
|
},
|
|
3127
3127
|
},
|
|
3128
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
3128
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
3129
3129
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
3130
3130
|
"did": "user(0)",
|
|
3131
3131
|
"displayName": "ali",
|
|
@@ -3181,7 +3181,7 @@ Array [
|
|
|
3181
3181
|
"allowSubscriptions": "followers",
|
|
3182
3182
|
},
|
|
3183
3183
|
},
|
|
3184
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
3184
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
3185
3185
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
3186
3186
|
"did": "user(0)",
|
|
3187
3187
|
"displayName": "ali",
|
|
@@ -3237,7 +3237,7 @@ Array [
|
|
|
3237
3237
|
"allowSubscriptions": "followers",
|
|
3238
3238
|
},
|
|
3239
3239
|
},
|
|
3240
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
3240
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
3241
3241
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
3242
3242
|
"did": "user(0)",
|
|
3243
3243
|
"displayName": "ali",
|
|
@@ -3293,7 +3293,7 @@ Array [
|
|
|
3293
3293
|
"allowSubscriptions": "followers",
|
|
3294
3294
|
},
|
|
3295
3295
|
},
|
|
3296
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
3296
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
3297
3297
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
3298
3298
|
"did": "user(0)",
|
|
3299
3299
|
"displayName": "ali",
|
|
@@ -3349,7 +3349,7 @@ Array [
|
|
|
3349
3349
|
"allowSubscriptions": "followers",
|
|
3350
3350
|
},
|
|
3351
3351
|
},
|
|
3352
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
3352
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
3353
3353
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
3354
3354
|
"did": "user(0)",
|
|
3355
3355
|
"displayName": "ali",
|
|
@@ -3405,7 +3405,7 @@ Array [
|
|
|
3405
3405
|
"allowSubscriptions": "followers",
|
|
3406
3406
|
},
|
|
3407
3407
|
},
|
|
3408
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
3408
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
3409
3409
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
3410
3410
|
"did": "user(0)",
|
|
3411
3411
|
"displayName": "ali",
|
|
@@ -3469,7 +3469,7 @@ Array [
|
|
|
3469
3469
|
"allowSubscriptions": "followers",
|
|
3470
3470
|
},
|
|
3471
3471
|
},
|
|
3472
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
3472
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
3473
3473
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
3474
3474
|
"did": "user(0)",
|
|
3475
3475
|
"displayName": "ali",
|
|
@@ -3503,7 +3503,7 @@ Array [
|
|
|
3503
3503
|
"allowSubscriptions": "followers",
|
|
3504
3504
|
},
|
|
3505
3505
|
},
|
|
3506
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)
|
|
3506
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)",
|
|
3507
3507
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
3508
3508
|
"did": "user(2)",
|
|
3509
3509
|
"displayName": "bobby",
|
|
@@ -3523,8 +3523,8 @@ Array [
|
|
|
3523
3523
|
"images": Array [
|
|
3524
3524
|
Object {
|
|
3525
3525
|
"alt": "../dev-env/assets/key-landscape-small.jpg",
|
|
3526
|
-
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(12)
|
|
3527
|
-
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(12)
|
|
3526
|
+
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(12)",
|
|
3527
|
+
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(12)",
|
|
3528
3528
|
},
|
|
3529
3529
|
],
|
|
3530
3530
|
},
|
|
@@ -3595,7 +3595,7 @@ Array [
|
|
|
3595
3595
|
"allowSubscriptions": "followers",
|
|
3596
3596
|
},
|
|
3597
3597
|
},
|
|
3598
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
3598
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
3599
3599
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
3600
3600
|
"did": "user(0)",
|
|
3601
3601
|
"displayName": "ali",
|
|
@@ -3652,7 +3652,7 @@ Array [
|
|
|
3652
3652
|
"allowSubscriptions": "followers",
|
|
3653
3653
|
},
|
|
3654
3654
|
},
|
|
3655
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
3655
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
3656
3656
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
3657
3657
|
"did": "user(0)",
|
|
3658
3658
|
"displayName": "ali",
|
|
@@ -3854,7 +3854,7 @@ Array [
|
|
|
3854
3854
|
"allowSubscriptions": "followers",
|
|
3855
3855
|
},
|
|
3856
3856
|
},
|
|
3857
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
3857
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
3858
3858
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
3859
3859
|
"did": "user(0)",
|
|
3860
3860
|
"displayName": "ali",
|
|
@@ -3910,7 +3910,7 @@ Array [
|
|
|
3910
3910
|
"allowSubscriptions": "followers",
|
|
3911
3911
|
},
|
|
3912
3912
|
},
|
|
3913
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
3913
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
3914
3914
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
3915
3915
|
"did": "user(0)",
|
|
3916
3916
|
"displayName": "ali",
|
|
@@ -3987,7 +3987,7 @@ Array [
|
|
|
3987
3987
|
"allowSubscriptions": "followers",
|
|
3988
3988
|
},
|
|
3989
3989
|
},
|
|
3990
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
3990
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
3991
3991
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
3992
3992
|
"did": "user(0)",
|
|
3993
3993
|
"displayName": "ali",
|
|
@@ -4046,7 +4046,7 @@ Array [
|
|
|
4046
4046
|
"allowSubscriptions": "followers",
|
|
4047
4047
|
},
|
|
4048
4048
|
},
|
|
4049
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
4049
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
4050
4050
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
4051
4051
|
"did": "user(0)",
|
|
4052
4052
|
"displayName": "ali",
|
|
@@ -4102,7 +4102,7 @@ Array [
|
|
|
4102
4102
|
"allowSubscriptions": "followers",
|
|
4103
4103
|
},
|
|
4104
4104
|
},
|
|
4105
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
4105
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
4106
4106
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
4107
4107
|
"did": "user(0)",
|
|
4108
4108
|
"displayName": "ali",
|
|
@@ -4163,7 +4163,7 @@ Array [
|
|
|
4163
4163
|
"allowSubscriptions": "followers",
|
|
4164
4164
|
},
|
|
4165
4165
|
},
|
|
4166
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
4166
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
4167
4167
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
4168
4168
|
"did": "user(0)",
|
|
4169
4169
|
"displayName": "ali",
|
|
@@ -4219,7 +4219,7 @@ Array [
|
|
|
4219
4219
|
"allowSubscriptions": "followers",
|
|
4220
4220
|
},
|
|
4221
4221
|
},
|
|
4222
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
4222
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
4223
4223
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
4224
4224
|
"did": "user(0)",
|
|
4225
4225
|
"displayName": "ali",
|
|
@@ -4275,7 +4275,7 @@ Array [
|
|
|
4275
4275
|
"allowSubscriptions": "followers",
|
|
4276
4276
|
},
|
|
4277
4277
|
},
|
|
4278
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
4278
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
4279
4279
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
4280
4280
|
"did": "user(0)",
|
|
4281
4281
|
"displayName": "ali",
|
|
@@ -4331,7 +4331,7 @@ Array [
|
|
|
4331
4331
|
"allowSubscriptions": "followers",
|
|
4332
4332
|
},
|
|
4333
4333
|
},
|
|
4334
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
4334
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
4335
4335
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
4336
4336
|
"did": "user(0)",
|
|
4337
4337
|
"displayName": "ali",
|
|
@@ -4387,7 +4387,7 @@ Array [
|
|
|
4387
4387
|
"allowSubscriptions": "followers",
|
|
4388
4388
|
},
|
|
4389
4389
|
},
|
|
4390
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
4390
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
4391
4391
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
4392
4392
|
"did": "user(0)",
|
|
4393
4393
|
"displayName": "ali",
|
|
@@ -4451,7 +4451,7 @@ Array [
|
|
|
4451
4451
|
"allowSubscriptions": "followers",
|
|
4452
4452
|
},
|
|
4453
4453
|
},
|
|
4454
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
4454
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
4455
4455
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
4456
4456
|
"did": "user(0)",
|
|
4457
4457
|
"displayName": "ali",
|
|
@@ -4485,7 +4485,7 @@ Array [
|
|
|
4485
4485
|
"allowSubscriptions": "followers",
|
|
4486
4486
|
},
|
|
4487
4487
|
},
|
|
4488
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)
|
|
4488
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)",
|
|
4489
4489
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
4490
4490
|
"did": "user(2)",
|
|
4491
4491
|
"displayName": "bobby",
|
|
@@ -4505,8 +4505,8 @@ Array [
|
|
|
4505
4505
|
"images": Array [
|
|
4506
4506
|
Object {
|
|
4507
4507
|
"alt": "../dev-env/assets/key-landscape-small.jpg",
|
|
4508
|
-
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(9)
|
|
4509
|
-
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(9)
|
|
4508
|
+
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(9)",
|
|
4509
|
+
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(9)",
|
|
4510
4510
|
},
|
|
4511
4511
|
],
|
|
4512
4512
|
},
|
|
@@ -4577,7 +4577,7 @@ Array [
|
|
|
4577
4577
|
"allowSubscriptions": "followers",
|
|
4578
4578
|
},
|
|
4579
4579
|
},
|
|
4580
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
4580
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
4581
4581
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
4582
4582
|
"did": "user(0)",
|
|
4583
4583
|
"displayName": "ali",
|
|
@@ -4634,7 +4634,7 @@ Array [
|
|
|
4634
4634
|
"allowSubscriptions": "followers",
|
|
4635
4635
|
},
|
|
4636
4636
|
},
|
|
4637
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
4637
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
4638
4638
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
4639
4639
|
"did": "user(0)",
|
|
4640
4640
|
"displayName": "ali",
|
|
@@ -4836,7 +4836,7 @@ Array [
|
|
|
4836
4836
|
"allowSubscriptions": "followers",
|
|
4837
4837
|
},
|
|
4838
4838
|
},
|
|
4839
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
4839
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
4840
4840
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
4841
4841
|
"did": "user(0)",
|
|
4842
4842
|
"displayName": "ali",
|
|
@@ -4892,7 +4892,7 @@ Array [
|
|
|
4892
4892
|
"allowSubscriptions": "followers",
|
|
4893
4893
|
},
|
|
4894
4894
|
},
|
|
4895
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
4895
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
4896
4896
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
4897
4897
|
"did": "user(0)",
|
|
4898
4898
|
"displayName": "ali",
|
|
@@ -4969,7 +4969,7 @@ Array [
|
|
|
4969
4969
|
"allowSubscriptions": "followers",
|
|
4970
4970
|
},
|
|
4971
4971
|
},
|
|
4972
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
4972
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
4973
4973
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
4974
4974
|
"did": "user(0)",
|
|
4975
4975
|
"displayName": "ali",
|
|
@@ -5028,7 +5028,7 @@ Array [
|
|
|
5028
5028
|
"allowSubscriptions": "followers",
|
|
5029
5029
|
},
|
|
5030
5030
|
},
|
|
5031
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
5031
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
5032
5032
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
5033
5033
|
"did": "user(0)",
|
|
5034
5034
|
"displayName": "ali",
|
|
@@ -5084,7 +5084,7 @@ Array [
|
|
|
5084
5084
|
"allowSubscriptions": "followers",
|
|
5085
5085
|
},
|
|
5086
5086
|
},
|
|
5087
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
5087
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
5088
5088
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
5089
5089
|
"did": "user(0)",
|
|
5090
5090
|
"displayName": "ali",
|
|
@@ -5140,7 +5140,7 @@ Array [
|
|
|
5140
5140
|
"allowSubscriptions": "followers",
|
|
5141
5141
|
},
|
|
5142
5142
|
},
|
|
5143
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
5143
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
5144
5144
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
5145
5145
|
"did": "user(0)",
|
|
5146
5146
|
"displayName": "ali",
|
|
@@ -5204,7 +5204,7 @@ Array [
|
|
|
5204
5204
|
"allowSubscriptions": "followers",
|
|
5205
5205
|
},
|
|
5206
5206
|
},
|
|
5207
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
5207
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
5208
5208
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
5209
5209
|
"did": "user(0)",
|
|
5210
5210
|
"displayName": "ali",
|
|
@@ -5238,7 +5238,7 @@ Array [
|
|
|
5238
5238
|
"allowSubscriptions": "followers",
|
|
5239
5239
|
},
|
|
5240
5240
|
},
|
|
5241
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)
|
|
5241
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)",
|
|
5242
5242
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
5243
5243
|
"did": "user(2)",
|
|
5244
5244
|
"displayName": "bobby",
|
|
@@ -5258,8 +5258,8 @@ Array [
|
|
|
5258
5258
|
"images": Array [
|
|
5259
5259
|
Object {
|
|
5260
5260
|
"alt": "../dev-env/assets/key-landscape-small.jpg",
|
|
5261
|
-
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(8)
|
|
5262
|
-
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(8)
|
|
5261
|
+
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(8)",
|
|
5262
|
+
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(8)",
|
|
5263
5263
|
},
|
|
5264
5264
|
],
|
|
5265
5265
|
},
|
|
@@ -5330,7 +5330,7 @@ Array [
|
|
|
5330
5330
|
"allowSubscriptions": "followers",
|
|
5331
5331
|
},
|
|
5332
5332
|
},
|
|
5333
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
5333
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
5334
5334
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
5335
5335
|
"did": "user(0)",
|
|
5336
5336
|
"displayName": "ali",
|
|
@@ -5387,7 +5387,7 @@ Array [
|
|
|
5387
5387
|
"allowSubscriptions": "followers",
|
|
5388
5388
|
},
|
|
5389
5389
|
},
|
|
5390
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
5390
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
5391
5391
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
5392
5392
|
"did": "user(0)",
|
|
5393
5393
|
"displayName": "ali",
|
|
@@ -5589,7 +5589,7 @@ Array [
|
|
|
5589
5589
|
"allowSubscriptions": "followers",
|
|
5590
5590
|
},
|
|
5591
5591
|
},
|
|
5592
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
5592
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
5593
5593
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
5594
5594
|
"did": "user(0)",
|
|
5595
5595
|
"displayName": "ali",
|
|
@@ -5645,7 +5645,7 @@ Array [
|
|
|
5645
5645
|
"allowSubscriptions": "followers",
|
|
5646
5646
|
},
|
|
5647
5647
|
},
|
|
5648
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
5648
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
5649
5649
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
5650
5650
|
"did": "user(0)",
|
|
5651
5651
|
"displayName": "ali",
|
|
@@ -5722,7 +5722,7 @@ Array [
|
|
|
5722
5722
|
"allowSubscriptions": "followers",
|
|
5723
5723
|
},
|
|
5724
5724
|
},
|
|
5725
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
5725
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
5726
5726
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
5727
5727
|
"did": "user(0)",
|
|
5728
5728
|
"displayName": "ali",
|
|
@@ -5787,7 +5787,7 @@ Array [
|
|
|
5787
5787
|
"allowSubscriptions": "followers",
|
|
5788
5788
|
},
|
|
5789
5789
|
},
|
|
5790
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
5790
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
5791
5791
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
5792
5792
|
"did": "user(0)",
|
|
5793
5793
|
"displayName": "ali",
|
|
@@ -5823,7 +5823,7 @@ Array [
|
|
|
5823
5823
|
"allowSubscriptions": "followers",
|
|
5824
5824
|
},
|
|
5825
5825
|
},
|
|
5826
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)
|
|
5826
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(3)/cids(1)",
|
|
5827
5827
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
5828
5828
|
"did": "user(2)",
|
|
5829
5829
|
"displayName": "bobby",
|
|
@@ -5842,8 +5842,8 @@ Array [
|
|
|
5842
5842
|
"images": Array [
|
|
5843
5843
|
Object {
|
|
5844
5844
|
"alt": "../dev-env/assets/key-landscape-small.jpg",
|
|
5845
|
-
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(5)
|
|
5846
|
-
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(5)
|
|
5845
|
+
"fullsize": "https://bsky.public.url/img/feed_fullsize/plain/user(3)/cids(5)",
|
|
5846
|
+
"thumb": "https://bsky.public.url/img/feed_thumbnail/plain/user(3)/cids(5)",
|
|
5847
5847
|
},
|
|
5848
5848
|
],
|
|
5849
5849
|
},
|
|
@@ -5914,7 +5914,7 @@ Array [
|
|
|
5914
5914
|
"allowSubscriptions": "followers",
|
|
5915
5915
|
},
|
|
5916
5916
|
},
|
|
5917
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
5917
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
5918
5918
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
5919
5919
|
"did": "user(0)",
|
|
5920
5920
|
"displayName": "ali",
|
|
@@ -5973,7 +5973,7 @@ Array [
|
|
|
5973
5973
|
"allowSubscriptions": "followers",
|
|
5974
5974
|
},
|
|
5975
5975
|
},
|
|
5976
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
5976
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
5977
5977
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
5978
5978
|
"did": "user(0)",
|
|
5979
5979
|
"displayName": "ali",
|
|
@@ -6174,7 +6174,7 @@ Array [
|
|
|
6174
6174
|
"allowSubscriptions": "followers",
|
|
6175
6175
|
},
|
|
6176
6176
|
},
|
|
6177
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
6177
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
6178
6178
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
6179
6179
|
"did": "user(0)",
|
|
6180
6180
|
"displayName": "ali",
|
|
@@ -6232,7 +6232,7 @@ Array [
|
|
|
6232
6232
|
"allowSubscriptions": "followers",
|
|
6233
6233
|
},
|
|
6234
6234
|
},
|
|
6235
|
-
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)
|
|
6235
|
+
"avatar": "https://bsky.public.url/img/avatar/plain/user(1)/cids(1)",
|
|
6236
6236
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
|
6237
6237
|
"did": "user(0)",
|
|
6238
6238
|
"displayName": "ali",
|