@atproto/pds 0.4.155 → 0.4.156
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 +7 -0
- package/dist/lexicon/lexicons.d.ts +4 -0
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +2 -0
- package/dist/lexicon/lexicons.js.map +1 -1
- package/package.json +5 -5
- package/src/lexicon/lexicons.ts +4 -0
- package/tests/proxied/__snapshots__/feedgen.test.ts.snap +15 -0
- package/tests/proxied/__snapshots__/views.test.ts.snap +470 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@atproto/pds",
|
3
|
-
"version": "0.4.
|
3
|
+
"version": "0.4.156",
|
4
4
|
"license": "MIT",
|
5
5
|
"description": "Reference implementation of atproto Personal Data Server (PDS)",
|
6
6
|
"keywords": [
|
@@ -49,7 +49,7 @@
|
|
49
49
|
"zod": "^3.23.8",
|
50
50
|
"@atproto-labs/fetch-node": "0.1.9",
|
51
51
|
"@atproto-labs/xrpc-utils": "0.0.16",
|
52
|
-
"@atproto/api": "^0.15.
|
52
|
+
"@atproto/api": "^0.15.21",
|
53
53
|
"@atproto/aws": "^0.2.24",
|
54
54
|
"@atproto/common": "^0.4.11",
|
55
55
|
"@atproto/crypto": "^0.4.4",
|
@@ -77,9 +77,9 @@
|
|
77
77
|
"ts-node": "^10.8.2",
|
78
78
|
"typescript": "^5.6.3",
|
79
79
|
"ws": "^8.12.0",
|
80
|
-
"@atproto/api": "^0.15.
|
81
|
-
"@atproto/
|
82
|
-
"@atproto/
|
80
|
+
"@atproto/api": "^0.15.21",
|
81
|
+
"@atproto/dev-env": "^0.3.150",
|
82
|
+
"@atproto/bsky": "^0.0.167",
|
83
83
|
"@atproto/lex-cli": "^0.8.3",
|
84
84
|
"@atproto/oauth-client-browser-example": "0.0.5"
|
85
85
|
},
|
package/src/lexicon/lexicons.ts
CHANGED
@@ -4790,10 +4790,14 @@ export const schemaDict = {
|
|
4790
4790
|
format: 'at-uri',
|
4791
4791
|
},
|
4792
4792
|
knownFollowers: {
|
4793
|
+
description:
|
4794
|
+
'This property is present only in selected cases, as an optimization.',
|
4793
4795
|
type: 'ref',
|
4794
4796
|
ref: 'lex:app.bsky.actor.defs#knownFollowers',
|
4795
4797
|
},
|
4796
4798
|
activitySubscription: {
|
4799
|
+
description:
|
4800
|
+
'This property is present only in selected cases, as an optimization.',
|
4797
4801
|
type: 'ref',
|
4798
4802
|
ref: 'lex:app.bsky.notification.defs#activitySubscription',
|
4799
4803
|
},
|
@@ -6,6 +6,11 @@ Object {
|
|
6
6
|
Object {
|
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)",
|
@@ -70,6 +75,11 @@ Object {
|
|
70
75
|
Object {
|
71
76
|
"post": Object {
|
72
77
|
"author": Object {
|
78
|
+
"associated": Object {
|
79
|
+
"activitySubscription": Object {
|
80
|
+
"allowSubscriptions": "followers",
|
81
|
+
},
|
82
|
+
},
|
73
83
|
"did": "user(2)",
|
74
84
|
"handle": "carol.test",
|
75
85
|
"labels": Array [],
|
@@ -102,6 +112,11 @@ Object {
|
|
102
112
|
"record": Object {
|
103
113
|
"$type": "app.bsky.embed.record#viewRecord",
|
104
114
|
"author": Object {
|
115
|
+
"associated": Object {
|
116
|
+
"activitySubscription": Object {
|
117
|
+
"allowSubscriptions": "followers",
|
118
|
+
},
|
119
|
+
},
|
105
120
|
"avatar": "https://bsky.public.url/img/avatar/plain/user(5)/cids(1)@jpeg",
|
106
121
|
"createdAt": "1970-01-01T00:00:00.000Z",
|
107
122
|
"did": "user(4)",
|