@atproto/api 0.14.18 → 0.14.19

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.
@@ -9567,6 +9567,85 @@ exports.schemaDict = {
9567
9567
  },
9568
9568
  },
9569
9569
  },
9570
+ AppBskyUnspeccedGetSuggestedFeeds: {
9571
+ lexicon: 1,
9572
+ id: 'app.bsky.unspecced.getSuggestedFeeds',
9573
+ defs: {
9574
+ main: {
9575
+ type: 'query',
9576
+ description: 'Get a list of suggested feeds',
9577
+ parameters: {
9578
+ type: 'params',
9579
+ properties: {
9580
+ limit: {
9581
+ type: 'integer',
9582
+ minimum: 1,
9583
+ maximum: 25,
9584
+ default: 10,
9585
+ },
9586
+ },
9587
+ },
9588
+ output: {
9589
+ encoding: 'application/json',
9590
+ schema: {
9591
+ type: 'object',
9592
+ required: ['feeds'],
9593
+ properties: {
9594
+ feeds: {
9595
+ type: 'array',
9596
+ items: {
9597
+ type: 'ref',
9598
+ ref: 'lex:app.bsky.feed.defs#generatorView',
9599
+ },
9600
+ },
9601
+ },
9602
+ },
9603
+ },
9604
+ },
9605
+ },
9606
+ },
9607
+ AppBskyUnspeccedGetSuggestedFeedsSkeleton: {
9608
+ lexicon: 1,
9609
+ id: 'app.bsky.unspecced.getSuggestedFeedsSkeleton',
9610
+ defs: {
9611
+ main: {
9612
+ type: 'query',
9613
+ description: 'Get a skeleton of suggested feeds. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedFeeds',
9614
+ parameters: {
9615
+ type: 'params',
9616
+ properties: {
9617
+ viewer: {
9618
+ type: 'string',
9619
+ format: 'did',
9620
+ description: 'DID of the account making the request (not included for public/unauthenticated queries).',
9621
+ },
9622
+ limit: {
9623
+ type: 'integer',
9624
+ minimum: 1,
9625
+ maximum: 25,
9626
+ default: 10,
9627
+ },
9628
+ },
9629
+ },
9630
+ output: {
9631
+ encoding: 'application/json',
9632
+ schema: {
9633
+ type: 'object',
9634
+ required: ['feeds'],
9635
+ properties: {
9636
+ feeds: {
9637
+ type: 'array',
9638
+ items: {
9639
+ type: 'string',
9640
+ format: 'at-uri',
9641
+ },
9642
+ },
9643
+ },
9644
+ },
9645
+ },
9646
+ },
9647
+ },
9648
+ },
9570
9649
  AppBskyUnspeccedGetSuggestedStarterPacks: {
9571
9650
  lexicon: 1,
9572
9651
  id: 'app.bsky.unspecced.getSuggestedStarterPacks',
@@ -14770,6 +14849,8 @@ exports.ids = {
14770
14849
  AppBskyUnspeccedDefs: 'app.bsky.unspecced.defs',
14771
14850
  AppBskyUnspeccedGetConfig: 'app.bsky.unspecced.getConfig',
14772
14851
  AppBskyUnspeccedGetPopularFeedGenerators: 'app.bsky.unspecced.getPopularFeedGenerators',
14852
+ AppBskyUnspeccedGetSuggestedFeeds: 'app.bsky.unspecced.getSuggestedFeeds',
14853
+ AppBskyUnspeccedGetSuggestedFeedsSkeleton: 'app.bsky.unspecced.getSuggestedFeedsSkeleton',
14773
14854
  AppBskyUnspeccedGetSuggestedStarterPacks: 'app.bsky.unspecced.getSuggestedStarterPacks',
14774
14855
  AppBskyUnspeccedGetSuggestedStarterPacksSkeleton: 'app.bsky.unspecced.getSuggestedStarterPacksSkeleton',
14775
14856
  AppBskyUnspeccedGetSuggestionsSkeleton: 'app.bsky.unspecced.getSuggestionsSkeleton',