an attempt to make a lightweight, easily self-hostable, scoped bluesky appview

party.whey.app.bsky.feed.getAuthorFeedPartial#

{
  "lexicon": 1,
  "id": "party.whey.app.bsky.feed.getAuthorFeedPartial",
  "defs": {
    "main": {
      "type": "query",
      "description": "Get a view of an actor's 'author feed' (post and reposts by the author). Does not require auth.",
      "parameters": {
        "type": "params",
        "required": [
          "actor"
        ],
        "properties": {
          "actor": {
            "type": "string",
            "format": "at-identifier"
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 100,
            "default": 50
          },
          "cursor": {
            "type": "string"
          },
          "filter": {
            "type": "string",
            "description": "Combinations of post/repost types to include in response.",
            "knownValues": [
              "posts_with_replies",
              "posts_no_replies",
              "posts_with_media",
              "posts_and_author_threads",
              "posts_with_video"
            ],
            "default": "posts_with_replies"
          },
          "includePins": {
            "type": "boolean",
            "default": false
          }
        }
      },
      "output": {
        "encoding": "application/json",
        "schema": {
          "type": "object",
          "required": [
            "feed"
          ],
          "properties": {
            "cursor": {
              "type": "string"
            },
            "feed": {
              "type": "array",
              "items": {
                "type": "union",
                "refs": [
                  "party.whey.app.bsky.feed.defs#feedViewPostRef",
                  "app.bsky.feed.defs#feedViewPost"
                ]
              }
            }
          }
        }
      },
      "errors": [
        {
          "name": "BlockedActor"
        },
        {
          "name": "BlockedByActor"
        }
      ]
    }
  }
}