@atproto/pds 0.4.135 → 0.4.137
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 +15 -0
- package/LICENSE.txt +1 -1
- package/dist/account-manager/db/migrations/005-oauth-account-management.d.ts +3 -0
- package/dist/account-manager/db/migrations/005-oauth-account-management.d.ts.map +1 -1
- package/dist/account-manager/db/migrations/005-oauth-account-management.js +19 -1
- package/dist/account-manager/db/migrations/005-oauth-account-management.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +13 -1
- package/dist/index.js.map +1 -1
- package/dist/lexicon/index.d.ts +2 -2
- package/dist/lexicon/index.d.ts.map +1 -1
- package/dist/lexicon/index.js +4 -4
- package/dist/lexicon/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +128 -82
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +65 -42
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/app/bsky/unspecced/getConfig.d.ts +9 -0
- package/dist/lexicon/types/app/bsky/unspecced/getConfig.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/unspecced/getConfig.js +9 -0
- package/dist/lexicon/types/app/bsky/unspecced/getConfig.js.map +1 -1
- package/package.json +5 -5
- package/src/account-manager/db/migrations/005-oauth-account-management.ts +24 -1
- package/src/index.ts +13 -1
- package/src/lexicon/index.ts +9 -9
- package/src/lexicon/lexicons.ts +66 -43
- package/src/lexicon/types/app/bsky/unspecced/getConfig.ts +17 -0
package/dist/lexicon/lexicons.js
CHANGED
@@ -6969,6 +6969,47 @@ exports.schemaDict = {
|
|
6969
6969
|
},
|
6970
6970
|
},
|
6971
6971
|
},
|
6972
|
+
AppBskyFeedGetPosts: {
|
6973
|
+
lexicon: 1,
|
6974
|
+
id: 'app.bsky.feed.getPosts',
|
6975
|
+
defs: {
|
6976
|
+
main: {
|
6977
|
+
type: 'query',
|
6978
|
+
description: "Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.",
|
6979
|
+
parameters: {
|
6980
|
+
type: 'params',
|
6981
|
+
required: ['uris'],
|
6982
|
+
properties: {
|
6983
|
+
uris: {
|
6984
|
+
type: 'array',
|
6985
|
+
description: 'List of post AT-URIs to return hydrated views for.',
|
6986
|
+
items: {
|
6987
|
+
type: 'string',
|
6988
|
+
format: 'at-uri',
|
6989
|
+
},
|
6990
|
+
maxLength: 25,
|
6991
|
+
},
|
6992
|
+
},
|
6993
|
+
},
|
6994
|
+
output: {
|
6995
|
+
encoding: 'application/json',
|
6996
|
+
schema: {
|
6997
|
+
type: 'object',
|
6998
|
+
required: ['posts'],
|
6999
|
+
properties: {
|
7000
|
+
posts: {
|
7001
|
+
type: 'array',
|
7002
|
+
items: {
|
7003
|
+
type: 'ref',
|
7004
|
+
ref: 'lex:app.bsky.feed.defs#postView',
|
7005
|
+
},
|
7006
|
+
},
|
7007
|
+
},
|
7008
|
+
},
|
7009
|
+
},
|
7010
|
+
},
|
7011
|
+
},
|
7012
|
+
},
|
6972
7013
|
AppBskyFeedGetPostThread: {
|
6973
7014
|
lexicon: 1,
|
6974
7015
|
id: 'app.bsky.feed.getPostThread',
|
@@ -7030,47 +7071,6 @@ exports.schemaDict = {
|
|
7030
7071
|
},
|
7031
7072
|
},
|
7032
7073
|
},
|
7033
|
-
AppBskyFeedGetPosts: {
|
7034
|
-
lexicon: 1,
|
7035
|
-
id: 'app.bsky.feed.getPosts',
|
7036
|
-
defs: {
|
7037
|
-
main: {
|
7038
|
-
type: 'query',
|
7039
|
-
description: "Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.",
|
7040
|
-
parameters: {
|
7041
|
-
type: 'params',
|
7042
|
-
required: ['uris'],
|
7043
|
-
properties: {
|
7044
|
-
uris: {
|
7045
|
-
type: 'array',
|
7046
|
-
description: 'List of post AT-URIs to return hydrated views for.',
|
7047
|
-
items: {
|
7048
|
-
type: 'string',
|
7049
|
-
format: 'at-uri',
|
7050
|
-
},
|
7051
|
-
maxLength: 25,
|
7052
|
-
},
|
7053
|
-
},
|
7054
|
-
},
|
7055
|
-
output: {
|
7056
|
-
encoding: 'application/json',
|
7057
|
-
schema: {
|
7058
|
-
type: 'object',
|
7059
|
-
required: ['posts'],
|
7060
|
-
properties: {
|
7061
|
-
posts: {
|
7062
|
-
type: 'array',
|
7063
|
-
items: {
|
7064
|
-
type: 'ref',
|
7065
|
-
ref: 'lex:app.bsky.feed.defs#postView',
|
7066
|
-
},
|
7067
|
-
},
|
7068
|
-
},
|
7069
|
-
},
|
7070
|
-
},
|
7071
|
-
},
|
7072
|
-
},
|
7073
|
-
},
|
7074
7074
|
AppBskyFeedGetQuotes: {
|
7075
7075
|
lexicon: 1,
|
7076
7076
|
id: 'app.bsky.feed.getQuotes',
|
@@ -9848,6 +9848,29 @@ exports.schemaDict = {
|
|
9848
9848
|
checkEmailConfirmed: {
|
9849
9849
|
type: 'boolean',
|
9850
9850
|
},
|
9851
|
+
liveNow: {
|
9852
|
+
type: 'array',
|
9853
|
+
items: {
|
9854
|
+
type: 'ref',
|
9855
|
+
ref: 'lex:app.bsky.unspecced.getConfig#liveNowConfig',
|
9856
|
+
},
|
9857
|
+
},
|
9858
|
+
},
|
9859
|
+
},
|
9860
|
+
},
|
9861
|
+
},
|
9862
|
+
liveNowConfig: {
|
9863
|
+
type: 'object',
|
9864
|
+
required: ['did', 'domains'],
|
9865
|
+
properties: {
|
9866
|
+
did: {
|
9867
|
+
type: 'string',
|
9868
|
+
format: 'did',
|
9869
|
+
},
|
9870
|
+
domains: {
|
9871
|
+
type: 'array',
|
9872
|
+
items: {
|
9873
|
+
type: 'string',
|
9851
9874
|
},
|
9852
9875
|
},
|
9853
9876
|
},
|
@@ -15703,8 +15726,8 @@ exports.ids = {
|
|
15703
15726
|
AppBskyFeedGetFeedSkeleton: 'app.bsky.feed.getFeedSkeleton',
|
15704
15727
|
AppBskyFeedGetLikes: 'app.bsky.feed.getLikes',
|
15705
15728
|
AppBskyFeedGetListFeed: 'app.bsky.feed.getListFeed',
|
15706
|
-
AppBskyFeedGetPostThread: 'app.bsky.feed.getPostThread',
|
15707
15729
|
AppBskyFeedGetPosts: 'app.bsky.feed.getPosts',
|
15730
|
+
AppBskyFeedGetPostThread: 'app.bsky.feed.getPostThread',
|
15708
15731
|
AppBskyFeedGetQuotes: 'app.bsky.feed.getQuotes',
|
15709
15732
|
AppBskyFeedGetRepostedBy: 'app.bsky.feed.getRepostedBy',
|
15710
15733
|
AppBskyFeedGetSuggestedFeeds: 'app.bsky.feed.getSuggestedFeeds',
|