@atproto/bsky 0.0.148 → 0.0.149
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/LICENSE.txt +1 -1
- package/dist/api/app/bsky/unspecced/getConfig.d.ts.map +1 -1
- package/dist/api/app/bsky/unspecced/getConfig.js +1 -0
- package/dist/api/app/bsky/unspecced/getConfig.js.map +1 -1
- package/dist/api/well-known.d.ts.map +1 -1
- package/dist/api/well-known.js +4 -1
- package/dist/api/well-known.js.map +1 -1
- package/dist/config.d.ts +7 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +28 -0
- package/dist/config.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 +4 -4
- package/src/api/app/bsky/unspecced/getConfig.ts +1 -0
- package/src/api/well-known.ts +4 -1
- package/src/config.ts +39 -0
- 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/tests/views/get-config.test.ts +66 -0
- package/tsconfig.tests.tsbuildinfo +1 -1
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
|
},
|
|
@@ -12185,8 +12208,8 @@ exports.ids = {
|
|
|
12185
12208
|
AppBskyFeedGetFeedSkeleton: 'app.bsky.feed.getFeedSkeleton',
|
|
12186
12209
|
AppBskyFeedGetLikes: 'app.bsky.feed.getLikes',
|
|
12187
12210
|
AppBskyFeedGetListFeed: 'app.bsky.feed.getListFeed',
|
|
12188
|
-
AppBskyFeedGetPostThread: 'app.bsky.feed.getPostThread',
|
|
12189
12211
|
AppBskyFeedGetPosts: 'app.bsky.feed.getPosts',
|
|
12212
|
+
AppBskyFeedGetPostThread: 'app.bsky.feed.getPostThread',
|
|
12190
12213
|
AppBskyFeedGetQuotes: 'app.bsky.feed.getQuotes',
|
|
12191
12214
|
AppBskyFeedGetRepostedBy: 'app.bsky.feed.getRepostedBy',
|
|
12192
12215
|
AppBskyFeedGetSuggestedFeeds: 'app.bsky.feed.getSuggestedFeeds',
|