@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.
@@ -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',