@atproto/pds 0.3.6 → 0.3.8
Sign up to get free protection for your applications and to get access to all the features.
- 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
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# @atproto/pds
|
2
2
|
|
3
|
+
## 0.3.8
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Updated dependencies [[`7dec9df3`](https://github.com/bluesky-social/atproto/commit/7dec9df3b583ee8c06c0c6a7e32c259820dc84a5)]:
|
8
|
+
- @atproto/api@0.7.3
|
9
|
+
|
10
|
+
## 0.3.7
|
11
|
+
|
12
|
+
### Patch Changes
|
13
|
+
|
14
|
+
- [#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`
|
15
|
+
|
16
|
+
- Updated dependencies [[`ffe39aae`](https://github.com/bluesky-social/atproto/commit/ffe39aae8394394f73bbfaa9047a8b5818aa053a)]:
|
17
|
+
- @atproto/api@0.7.2
|
18
|
+
|
3
19
|
## 0.3.6
|
4
20
|
|
5
21
|
### Patch Changes
|
package/dist/index.js
CHANGED
@@ -212638,7 +212638,8 @@ var schemaDict = {
|
|
212638
212638
|
knownValues: [
|
212639
212639
|
"posts_with_replies",
|
212640
212640
|
"posts_no_replies",
|
212641
|
-
"posts_with_media"
|
212641
|
+
"posts_with_media",
|
212642
|
+
"posts_and_author_threads"
|
212642
212643
|
],
|
212643
212644
|
default: "posts_with_replies"
|
212644
212645
|
}
|
@@ -214382,6 +214383,10 @@ var schemaDict = {
|
|
214382
214383
|
type: "ref",
|
214383
214384
|
ref: "lex:app.bsky.notification.listNotifications#notification"
|
214384
214385
|
}
|
214386
|
+
},
|
214387
|
+
seenAt: {
|
214388
|
+
type: "string",
|
214389
|
+
format: "datetime"
|
214385
214390
|
}
|
214386
214391
|
}
|
214387
214392
|
}
|
@@ -237292,7 +237297,8 @@ var schemaDict2 = {
|
|
237292
237297
|
knownValues: [
|
237293
237298
|
"posts_with_replies",
|
237294
237299
|
"posts_no_replies",
|
237295
|
-
"posts_with_media"
|
237300
|
+
"posts_with_media",
|
237301
|
+
"posts_and_author_threads"
|
237296
237302
|
],
|
237297
237303
|
default: "posts_with_replies"
|
237298
237304
|
}
|
@@ -239036,6 +239042,10 @@ var schemaDict2 = {
|
|
239036
239042
|
type: "ref",
|
239037
239043
|
ref: "lex:app.bsky.notification.listNotifications#notification"
|
239038
239044
|
}
|
239045
|
+
},
|
239046
|
+
seenAt: {
|
239047
|
+
type: "string",
|
239048
|
+
format: "datetime"
|
239039
239049
|
}
|
239040
239050
|
}
|
239041
239051
|
}
|
@@ -241956,20 +241966,20 @@ var LABELS = {
|
|
241956
241966
|
strings: {
|
241957
241967
|
settings: {
|
241958
241968
|
en: {
|
241959
|
-
name: "
|
241960
|
-
description: "This user has requested that their
|
241969
|
+
name: "Sign-in Required",
|
241970
|
+
description: "This user has requested that their account only be shown to signed-in users."
|
241961
241971
|
}
|
241962
241972
|
},
|
241963
241973
|
account: {
|
241964
241974
|
en: {
|
241965
241975
|
name: "Sign-in Required",
|
241966
|
-
description: "This user has requested that their
|
241976
|
+
description: "This user has requested that their account only be shown to signed-in users."
|
241967
241977
|
}
|
241968
241978
|
},
|
241969
241979
|
content: {
|
241970
241980
|
en: {
|
241971
241981
|
name: "Sign-in Required",
|
241972
|
-
description: "This user has requested that their content only be shown to
|
241982
|
+
description: "This user has requested that their content only be shown to signed-in users."
|
241973
241983
|
}
|
241974
241984
|
}
|
241975
241985
|
}
|