Module Cephalopod_models.App_Bsky_Feed_GetAuthorFeed

lexicon "app.bsky.feed.getAuthorFeed"

def main

type main_params = {
  1. actor : string;
    (*

    format: "AtIdentifier"

    *)
  2. limit : int64 option;
    (*

    default: 50 maximum: 100 minimum: 1

    *)
  3. cursor : string option;
  4. filter : string option;
    (*

    Combinations of post/repost types to include in response. known values: "posts_with_replies"; "posts_no_replies"; "posts_with_media"; "posts_and_author_threads"; "posts_with_video"

    *)
  5. includePins : bool option;
    (*

    default: false

    *)
}
val show_main_params : main_params -> Ppx_deriving_runtime.string
val make_main_params : actor:string -> ?limit:int64 -> ?cursor:string -> ?filter:string -> ?includePins:bool -> unit -> main_params
val main_params_of_value : main_params Cephalopod_dasl.Value.Util.conv
val main_params_to_value : main_params -> Cephalopod_dasl.Value.t
type main_output = {
  1. cursor : string option;
  2. feed : Types.app_bsky_feed_defs_feedviewpost list;
}
val show_main_output : main_output -> Ppx_deriving_runtime.string
val main_output_of_value : main_output Cephalopod_dasl.Value.Util.conv
val main_output_to_value : main_output -> Cephalopod_dasl.Value.t
type main_error = [
  1. | `BlockedActor
  2. | `BlockedByActor
]
val show_main_error : main_error -> Ppx_deriving_runtime.string

Get a view of an actor's 'author feed' (post and reposts by the author). Does not require auth.