@atproto/pds 0.3.6 → 0.3.8
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 +16 -0
- package/dist/index.js +16 -6
- package/dist/index.js.map +2 -2
- package/dist/lexicon/lexicons.d.ts +4 -0
- package/dist/lexicon/types/app/bsky/feed/getAuthorFeed.d.ts +1 -1
- package/dist/lexicon/types/app/bsky/notification/listNotifications.d.ts +1 -0
- package/package.json +5 -5
- package/src/lexicon/lexicons.ts +5 -0
- package/src/lexicon/types/app/bsky/feed/getAuthorFeed.ts +1 -0
- package/src/lexicon/types/app/bsky/notification/listNotifications.ts +1 -0
@@ -5,7 +5,7 @@ export interface QueryParams {
|
|
5
5
|
actor: string;
|
6
6
|
limit: number;
|
7
7
|
cursor?: string;
|
8
|
-
filter: 'posts_with_replies' | 'posts_no_replies' | 'posts_with_media' | (string & {});
|
8
|
+
filter: 'posts_with_replies' | 'posts_no_replies' | 'posts_with_media' | 'posts_and_author_threads' | (string & {});
|
9
9
|
}
|
10
10
|
export declare type InputSchema = undefined;
|
11
11
|
export interface OutputSchema {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@atproto/pds",
|
3
|
-
"version": "0.3.
|
3
|
+
"version": "0.3.8",
|
4
4
|
"license": "MIT",
|
5
5
|
"description": "Reference implementation of atproto Personal Data Server (PDS)",
|
6
6
|
"keywords": [
|
@@ -44,7 +44,7 @@
|
|
44
44
|
"typed-emitter": "^2.1.0",
|
45
45
|
"uint8arrays": "3.0.0",
|
46
46
|
"zod": "^3.21.4",
|
47
|
-
"@atproto/api": "^0.7.
|
47
|
+
"@atproto/api": "^0.7.3",
|
48
48
|
"@atproto/aws": "^0.1.6",
|
49
49
|
"@atproto/common": "^0.3.3",
|
50
50
|
"@atproto/crypto": "^0.3.0",
|
@@ -68,9 +68,9 @@
|
|
68
68
|
"axios": "^0.27.2",
|
69
69
|
"get-port": "^6.1.2",
|
70
70
|
"ws": "^8.12.0",
|
71
|
-
"@atproto/api": "^0.7.
|
72
|
-
"@atproto/bsky": "^0.0.
|
73
|
-
"@atproto/dev-env": "^0.2.
|
71
|
+
"@atproto/api": "^0.7.3",
|
72
|
+
"@atproto/bsky": "^0.0.20",
|
73
|
+
"@atproto/dev-env": "^0.2.20",
|
74
74
|
"@atproto/lex-cli": "^0.2.5"
|
75
75
|
},
|
76
76
|
"scripts": {
|
package/src/lexicon/lexicons.ts
CHANGED
@@ -5572,6 +5572,7 @@ export const schemaDict = {
|
|
5572
5572
|
'posts_with_replies',
|
5573
5573
|
'posts_no_replies',
|
5574
5574
|
'posts_with_media',
|
5575
|
+
'posts_and_author_threads',
|
5575
5576
|
],
|
5576
5577
|
default: 'posts_with_replies',
|
5577
5578
|
},
|
@@ -7324,6 +7325,10 @@ export const schemaDict = {
|
|
7324
7325
|
ref: 'lex:app.bsky.notification.listNotifications#notification',
|
7325
7326
|
},
|
7326
7327
|
},
|
7328
|
+
seenAt: {
|
7329
|
+
type: 'string',
|
7330
|
+
format: 'datetime',
|
7331
|
+
},
|
7327
7332
|
},
|
7328
7333
|
},
|
7329
7334
|
},
|