@atproto/api 0.7.1 → 0.7.3
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 +12 -0
- package/dist/client/lexicons.d.ts +4 -0
- package/dist/client/types/app/bsky/feed/getAuthorFeed.d.ts +1 -1
- package/dist/client/types/app/bsky/notification/listNotifications.d.ts +1 -0
- package/dist/index.js +10 -5
- package/dist/index.js.map +2 -2
- package/package.json +2 -2
- package/src/client/lexicons.ts +5 -0
- package/src/client/types/app/bsky/feed/getAuthorFeed.ts +1 -0
- package/src/client/types/app/bsky/notification/listNotifications.ts +1 -0
- package/src/moderation/const/labels.ts +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atproto/api
|
|
2
2
|
|
|
3
|
+
## 0.7.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1962](https://github.com/bluesky-social/atproto/pull/1962) [`7dec9df3`](https://github.com/bluesky-social/atproto/commit/7dec9df3b583ee8c06c0c6a7e32c259820dc84a5) Thanks [@pfrazee](https://github.com/pfrazee)! - Add seenAt time to listNotifications output
|
|
8
|
+
|
|
9
|
+
## 0.7.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#1776](https://github.com/bluesky-social/atproto/pull/1776) [`ffe39aae`](https://github.com/bluesky-social/atproto/commit/ffe39aae8394394f73bbfaa9047a8b5818aa053a) Thanks [@estrattonbailey](https://github.com/estrattonbailey)! - Add `posts_and_author_threads` filter to `getAuthorFeed`
|
|
14
|
+
|
|
3
15
|
## 0.7.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -4,7 +4,7 @@ export interface QueryParams {
|
|
|
4
4
|
actor: string;
|
|
5
5
|
limit?: number;
|
|
6
6
|
cursor?: string;
|
|
7
|
-
filter?: 'posts_with_replies' | 'posts_no_replies' | 'posts_with_media' | (string & {});
|
|
7
|
+
filter?: 'posts_with_replies' | 'posts_no_replies' | 'posts_with_media' | 'posts_and_author_threads' | (string & {});
|
|
8
8
|
}
|
|
9
9
|
export declare type InputSchema = undefined;
|
|
10
10
|
export interface OutputSchema {
|
package/dist/index.js
CHANGED
|
@@ -21180,7 +21180,8 @@ var schemaDict = {
|
|
|
21180
21180
|
knownValues: [
|
|
21181
21181
|
"posts_with_replies",
|
|
21182
21182
|
"posts_no_replies",
|
|
21183
|
-
"posts_with_media"
|
|
21183
|
+
"posts_with_media",
|
|
21184
|
+
"posts_and_author_threads"
|
|
21184
21185
|
],
|
|
21185
21186
|
default: "posts_with_replies"
|
|
21186
21187
|
}
|
|
@@ -22924,6 +22925,10 @@ var schemaDict = {
|
|
|
22924
22925
|
type: "ref",
|
|
22925
22926
|
ref: "lex:app.bsky.notification.listNotifications#notification"
|
|
22926
22927
|
}
|
|
22928
|
+
},
|
|
22929
|
+
seenAt: {
|
|
22930
|
+
type: "string",
|
|
22931
|
+
format: "datetime"
|
|
22927
22932
|
}
|
|
22928
22933
|
}
|
|
22929
22934
|
}
|
|
@@ -29368,20 +29373,20 @@ var LABELS = {
|
|
|
29368
29373
|
strings: {
|
|
29369
29374
|
settings: {
|
|
29370
29375
|
en: {
|
|
29371
|
-
name: "
|
|
29372
|
-
description: "This user has requested that their
|
|
29376
|
+
name: "Sign-in Required",
|
|
29377
|
+
description: "This user has requested that their account only be shown to signed-in users."
|
|
29373
29378
|
}
|
|
29374
29379
|
},
|
|
29375
29380
|
account: {
|
|
29376
29381
|
en: {
|
|
29377
29382
|
name: "Sign-in Required",
|
|
29378
|
-
description: "This user has requested that their
|
|
29383
|
+
description: "This user has requested that their account only be shown to signed-in users."
|
|
29379
29384
|
}
|
|
29380
29385
|
},
|
|
29381
29386
|
content: {
|
|
29382
29387
|
en: {
|
|
29383
29388
|
name: "Sign-in Required",
|
|
29384
|
-
description: "This user has requested that their content only be shown to
|
|
29389
|
+
description: "This user has requested that their content only be shown to signed-in users."
|
|
29385
29390
|
}
|
|
29386
29391
|
}
|
|
29387
29392
|
}
|