pl-api
    Preparing search index...

    Function timelinesCategory

    • Parameters

      • client: PlApiBaseClient & {
            statuses: {
                bookmarkStatus: (
                    statusId: string,
                    folderId?: string,
                ) => Promise<Status>;
                createStatus: (
                    params: CreateStatusParams,
                ) => Promise<
                    | Status
                    | {
                        id: string;
                        media_attachments: (
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                meta: { focus?: ...; original?: ...; small?: ... };
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "image";
                                url: string;
                            }
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                meta: { duration?: ...; original?: ...; small?: ... };
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "video";
                                url: string;
                            }
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                meta: { duration?: ...; focus?: ...; original?: ... };
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "gifv";
                                url: string;
                            }
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                meta: { colors?: ...; duration?: ...; original?: ... };
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "audio";
                                url: string;
                            }
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "unknown";
                                url: string;
                            }
                        )[];
                        params: {
                            application_id: number
                            | null;
                            expires_in: number | null;
                            idempotency: string | null;
                            in_reply_to_id: string | null;
                            language: string | null;
                            media_ids: string | null;
                            poll:
                                | {
                                    expires_in: string;
                                    hide_totals?: (...)
                                    | (...)
                                    | (...);
                                    multiple?: (...) | (...) | (...);
                                    options: (...)[];
                                }
                                | null;
                            scheduled_at: string
                            | null;
                            sensitive: boolean | null;
                            spoiler_text: string | null;
                            text: string | null;
                            visibility: string;
                            with_rate_limit: boolean;
                        };
                        scheduled_at: string;
                    },
                >;
                createStatusReaction: (statusId: string, emoji: string) => Promise<Status>;
                deleteStatus: (
                    statusId: string,
                    deleteMedia?: boolean,
                ) => Promise<
                    {
                        content_type: string;
                        id: string;
                        location: | {
                            country: string;
                            description: string;
                            geom: { coordinates: (...) | (...); srid: string }
                            | null;
                            locality: string;
                            origin_id: string;
                            origin_provider: string;
                            postal_code: string;
                            region: string;
                            street: string;
                            timezone: string;
                            type: string;
                            url: string;
                        }
                        | null;
                        spoiler_text: string;
                        spoiler_text_map: { [key: string]: string }
                        | null;
                        text: string;
                        text_map: { [key: string]: string } | null;
                    },
                >;
                deleteStatusReaction: (statusId: string, emoji: string) => Promise<Status>;
                dislikeStatus: (statusId: string) => Promise<Status>;
                editInteractionPolicy: (
                    statusId: string,
                    params: EditInteractionPolicyParams,
                ) => Promise<Status>;
                editStatus: (
                    statusId: string,
                    params: EditStatusParams,
                ) => Promise<Status>;
                favouriteStatus: (statusId: string) => Promise<Status>;
                getContext: (
                    statusId: string,
                    params?: LanguageParam,
                ) => Promise<
                    {
                        ancestors: Status[];
                        asyncRefreshHeader: AsyncRefreshHeader
                        | null;
                        descendants: Status[];
                        references: Status[];
                    },
                >;
                getDislikedBy: (
                    statusId: string,
                ) => Promise<PaginatedResponse<Account, true>>;
                getFavouritedBy: (
                    statusId: string,
                    params?: GetFavouritedByParams,
                ) => Promise<PaginatedResponse<Account, true>>;
                getRebloggedBy: (
                    statusId: string,
                    params?: GetRebloggedByParams,
                ) => Promise<PaginatedResponse<Account, true>>;
                getStatus: (statusId: string, params?: LanguageParam) => Promise<Status>;
                getStatusBookmarkFolders: (
                    statusId: string,
                ) => Promise<
                    {
                        emoji: string
                        | null;
                        emoji_url: string | null;
                        id: string;
                        name: string;
                    }[],
                >;
                getStatuses: (
                    statusIds: string[],
                    params?: LanguageParam,
                ) => Promise<Status[]>;
                getStatusHistory: (
                    statusId: string,
                ) => Promise<
                    {
                        account: {
                            __meta: { pleroma?: any; source?: any };
                            accepts_chat_messages: boolean | null;
                            acct: string;
                            ap_id: string | null;
                            avatar: string;
                            avatar_default: boolean;
                            avatar_description: string;
                            avatar_static: string;
                            background_image: string | null;
                            birthday?: string;
                            bot: boolean;
                            created_at: string;
                            custom_css: string;
                            deactivated?: boolean;
                            discoverable: boolean;
                            display_name: string;
                            domain: string;
                            email_subscriptions?: boolean;
                            emojis: {
                                category: ...;
                                shortcode: ...;
                                static_url: ...;
                                url: ...;
                                visible_in_picker: ...;
                            }[];
                            enable_rss: boolean;
                            favicon?: string;
                            fields: { name: ...; value: ...; verified_at: ... }[];
                            followers_count: number;
                            following_count: number;
                            fqn: string;
                            group: boolean;
                            header: string;
                            header_default: boolean;
                            header_description: string;
                            header_static: string;
                            hide_collections?: boolean;
                            hide_favorites: boolean;
                            hide_followers?: boolean;
                            hide_followers_count?: boolean;
                            hide_follows?: boolean;
                            hide_follows_count?: boolean;
                            id: string;
                            identity_proofs: { name: ...; value: ...; verified_at: ... }[];
                            indexable: boolean | null;
                            is_admin?: boolean;
                            is_cat: boolean;
                            is_moderator?: boolean;
                            is_suggested?: boolean;
                            last_status_at: string | null;
                            limited?: boolean;
                            local?: boolean;
                            location?: string;
                            locked: boolean;
                            memorial: boolean | null;
                            mention_policy: "none" | "only_known" | "only_contacts";
                            moved:
                                | {
                                    __meta: ...;
                                    accepts_chat_messages: ...;
                                    acct: ...;
                                    ap_id: ...;
                                    avatar: ...;
                                    avatar_default: ...;
                                    avatar_description: ...;
                                    avatar_static: ...;
                                    background_image: ...;
                                    birthday?: ...;
                                    bot: ...;
                                    created_at: ...;
                                    custom_css: ...;
                                    deactivated?: ...;
                                    discoverable: ...;
                                    display_name: ...;
                                    domain: ...;
                                    email_subscriptions?: ...;
                                    emojis: ...;
                                    enable_rss: ...;
                                    favicon?: ...;
                                    fields: ...;
                                    followers_count: ...;
                                    following_count: ...;
                                    fqn: ...;
                                    group: ...;
                                    header: ...;
                                    header_default: ...;
                                    header_description: ...;
                                    header_static: ...;
                                    hide_collections?: ...;
                                    hide_favorites: ...;
                                    hide_followers?: ...;
                                    hide_followers_count?: ...;
                                    hide_follows?: ...;
                                    hide_follows_count?: ...;
                                    id: ...;
                                    identity_proofs: ...;
                                    indexable: ...;
                                    is_admin?: ...;
                                    is_cat: ...;
                                    is_moderator?: ...;
                                    is_suggested?: ...;
                                    last_status_at: ...;
                                    limited?: ...;
                                    local?: ...;
                                    location?: ...;
                                    locked: ...;
                                    memorial: ...;
                                    mention_policy: ...;
                                    noindex: ...;
                                    note: ...;
                                    payment_options: ...;
                                    permit_followback?: ...;
                                    pronouns: ...;
                                    relationship?: ...;
                                    roles: ...;
                                    speak_as_cat: ...;
                                    statuses_count: ...;
                                    subscribers_count: ...;
                                    suspended?: ...;
                                    url: ...;
                                    username: ...;
                                    verified?: ...;
                                }
                                | null;
                            noindex: boolean
                            | null;
                            note: string;
                            payment_options: ((...) | (...))[];
                            permit_followback?: boolean;
                            pronouns: string[];
                            relationship?: {
                                blocked_by: ...;
                                blocking: ...;
                                domain_blocking: ...;
                                endorsed: ...;
                                followed_by: ...;
                                following: ...;
                                id: ...;
                                languages: ...;
                                muting: ...;
                                muting_notifications: ...;
                                note: ...;
                                notifying: ...;
                                notifying_reblogs: ...;
                                notifying_replies: ...;
                                requested: ...;
                                showing_reblogs: ...;
                            };
                            roles: {
                                color: ...;
                                highlighted: ...;
                                id: ...;
                                name: ...;
                                permissions: ...;
                            }[];
                            speak_as_cat: boolean;
                            statuses_count: number;
                            subscribers_count: number;
                            suspended?: boolean;
                            url: string;
                            username: string;
                            verified?: boolean;
                        } & WithMoved;
                        content: string;
                        created_at: string;
                        emojis: {
                            category: string
                            | null;
                            shortcode: string;
                            static_url: string;
                            url: string;
                            visible_in_picker: boolean;
                        }[];
                        media_attachments: (
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                meta: { focus?: ...; original?: ...; small?: ... };
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "image";
                                url: string;
                            }
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                meta: { duration?: ...; original?: ...; small?: ... };
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "video";
                                url: string;
                            }
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                meta: { duration?: ...; focus?: ...; original?: ... };
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "gifv";
                                url: string;
                            }
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                meta: { colors?: ...; duration?: ...; original?: ... };
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "audio";
                                url: string;
                            }
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "unknown";
                                url: string;
                            }
                        )[];
                        poll: { options: { title: ... }[] }
                        | null;
                        sensitive: boolean;
                        spoiler_text: string;
                    }[],
                >;
                getStatusMentionedUsers: (
                    statusId: string,
                    params?: PaginationParams,
                ) => Promise<PaginatedResponse<Account, true>>;
                getStatusQuotes: (
                    statusId: string,
                    params?: PaginationParams,
                ) => Promise<PaginatedResponse<Status, true>>;
                getStatusReactions: (
                    statusId: string,
                    emoji?: string,
                ) => Promise<
                    (
                        | {
                            account_ids: string[];
                            accounts: Account[];
                            count: number
                            | null;
                            me: boolean;
                            name: string;
                            static_url: undefined;
                            url: undefined;
                        }
                        | {
                            account_ids: string[];
                            accounts: Account[];
                            count: number
                            | null;
                            me: boolean;
                            name: string;
                            static_url: string;
                            url: string;
                        }
                    )[],
                >;
                getStatusReferences: (
                    statusId: string,
                    params?: PaginationParams,
                ) => Promise<PaginatedResponse<Status, true>>;
                getStatusSource: (
                    statusId: string,
                ) => Promise<
                    {
                        content_type: string;
                        id: string;
                        location: | {
                            country: string;
                            description: string;
                            geom: { coordinates: (...) | (...); srid: string }
                            | null;
                            locality: string;
                            origin_id: string;
                            origin_provider: string;
                            postal_code: string;
                            region: string;
                            street: string;
                            timezone: string;
                            type: string;
                            url: string;
                        }
                        | null;
                        spoiler_text: string;
                        spoiler_text_map: { [key: string]: string }
                        | null;
                        text: string;
                        text_map: { [key: string]: string } | null;
                    },
                >;
                loadConversation: (statusId: string) => Promise<EmptyObject>;
                muteStatus: (statusId: string) => Promise<Status>;
                pinStatus: (statusId: string) => Promise<Status>;
                previewStatus: (
                    params: CreateStatusParams,
                ) => Promise<
                    {
                        account?: Account;
                        application?: { name: string; website: string | null }
                        | null;
                        approval_status?: "rejected" | "pending" | "approval" | null;
                        bookmark_folder?: string | null;
                        bookmarked?: boolean;
                        card?:
                            | {
                                author_name: string;
                                author_url: string;
                                authors: { account: (...)
                                | (...); name: string; url: string }[];
                                blurhash: string | null;
                                description: string;
                                embed_url: string;
                                height: number;
                                html: string;
                                image: string | null;
                                image_description: string;
                                provider_name: string;
                                provider_url: string;
                                title: string;
                                type: "link" | "video" | "photo" | "rich";
                                url: string;
                                width: number;
                            }
                            | null;
                        content?: string;
                        content_map?: { [key: string]: string }
                        | null;
                        content_type?: string | null;
                        conversation_id?: string;
                        created_at?: string;
                        direct_conversation_id?: string;
                        disliked?: boolean;
                        dislikes_count?: number;
                        edited_at?: string | null;
                        emoji_reactions?: (
                            | {
                                account_ids: (...)[];
                                accounts: (...)[];
                                count: (...) | (...);
                                me: boolean;
                                name: string;
                                static_url: undefined;
                                url: undefined;
                            }
                            | {
                                account_ids: (...)[];
                                accounts: (...)[];
                                count: (...) | (...);
                                me: boolean;
                                name: string;
                                static_url: string;
                                url: string;
                            }
                        )[];
                        emojis?: {
                            category: string
                            | null;
                            shortcode: string;
                            static_url: string;
                            url: string;
                            visible_in_picker: boolean;
                        }[];
                        event?: | {
                            end_time: string
                            | null;
                            join_mode: "free" | "restricted" | "invite" | "external" | null;
                            join_state: "pending" | "reject" | "accept" | null;
                            location:
                                | {
                                    country: string;
                                    latitude: (...)
                                    | (...);
                                    locality: string;
                                    longitude: (...) | (...);
                                    name: string;
                                    postal_code: string;
                                    region: string;
                                    street: string;
                                    url: string;
                                }
                                | null;
                            name: string;
                            participants_count: number;
                            participation_request_count: number;
                            start_time: string
                            | null;
                        }
                        | null;
                        expires_at?: string;
                        favourited?: boolean;
                        favourites_count?: number;
                        filtered?: {
                            filter: {
                                context: (...)[];
                                expires_at: (...) | (...);
                                filter_action: (...) | (...) | (...);
                                id: string;
                                title: string;
                            };
                            keyword_matches: string
                            | null;
                            status_matches: string | null;
                        }[];
                        group?: | {
                            avatar: string;
                            avatar_default: boolean;
                            avatar_description: string;
                            avatar_static: string;
                            created_at: string;
                            display_name: string;
                            domain: string;
                            emojis: {
                                category: (...)
                                | (...);
                                shortcode: string;
                                static_url: string;
                                url: string;
                                visible_in_picker: boolean;
                            }[];
                            header: string;
                            header_default: boolean;
                            header_description: string;
                            header_static: string;
                            id: string;
                            locked: boolean;
                            members_count: number;
                            membership_required: boolean;
                            note: string;
                            owner: { id: string }
                            | null;
                            relationship:
                                | {
                                    id: string;
                                    member: boolean;
                                    requested: boolean;
                                    role?: (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...);
                                }
                                | null;
                            statuses_visibility: string;
                            uri: string;
                            url: string;
                        }
                        | null;
                        id?: string;
                        in_reply_to_account_acct?: string;
                        in_reply_to_account_id?: string
                        | null;
                        in_reply_to_id?: string | null;
                        interaction_policy?: {
                            can_favourite: {
                                automatic_approval: (
                                    (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                )[];
                                manual_approval: (
                                    (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                )[];
                            };
                            can_reblog: {
                                automatic_approval: (
                                    (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                )[];
                                manual_approval: (
                                    (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                )[];
                            };
                            can_reply: {
                                automatic_approval: (
                                    (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                )[];
                                manual_approval: (
                                    (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                    | (...)
                                )[];
                            };
                        };
                        language?: string
                        | null;
                        list_id?: number | null;
                        local?: boolean;
                        local_only?: boolean;
                        location?:
                            | {
                                country: string;
                                latitude: number
                                | null;
                                locality: string;
                                longitude: number | null;
                                name: string;
                                postal_code: string;
                                region: string;
                                street: string;
                                url: string;
                            }
                            | null;
                        media_attachments?: (
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                meta: { focus?: ...; original?: ...; small?: ... };
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "image";
                                url: string;
                            }
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                meta: { duration?: ...; original?: ...; small?: ... };
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "video";
                                url: string;
                            }
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                meta: { duration?: ...; focus?: ...; original?: ... };
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "gifv";
                                url: string;
                            }
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                meta: { colors?: ...; duration?: ...; original?: ... };
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "audio";
                                url: string;
                            }
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "unknown";
                                url: string;
                            }
                        )[];
                        mentions?: { acct: string; id: string; url: string; username: string }[];
                        muted?: boolean;
                        parent_visible?: boolean;
                        pinned?: boolean;
                        pinned_at?: string | null;
                        poll?:
                            | {
                                emojis: {
                                    category: (...)
                                    | (...);
                                    shortcode: string;
                                    static_url: string;
                                    url: string;
                                    visible_in_picker: boolean;
                                }[];
                                expired: boolean;
                                expires_at: string
                                | null;
                                id: string;
                                multiple: boolean;
                                non_anonymous: boolean;
                                options: {
                                    title: string;
                                    title_map: (...) | (...);
                                    votes_count: number;
                                }[];
                                own_votes: number[]
                                | null;
                                voted: boolean;
                                voters_count: number;
                                votes_count: number;
                            }
                            | null;
                        quote?: | {
                            quoted_status_id: string
                            | null;
                            state:
                                | "rejected"
                                | "pending"
                                | "accepted"
                                | "revoked"
                                | "deleted"
                                | "unauthorized"
                                | "blocked_account"
                                | "blocked_domain"
                                | "muted_account";
                        }
                        | {
                            quoted_status: Status
                            | null;
                            state:
                                | "rejected"
                                | "pending"
                                | "accepted"
                                | "revoked"
                                | "deleted"
                                | "unauthorized"
                                | "blocked_account"
                                | "blocked_domain"
                                | "muted_account";
                        }
                        | null;
                        quote_approval?: | {
                            automatic: (
                                "following"
                                | "public"
                                | "followers"
                                | "unsupported_policy"
                            )[];
                            current_user: "unknown" | "automatic" | "manual" | "denied";
                            manual: ("following" | "public" | "followers" | "unsupported_policy")[];
                        }
                        | null;
                        quote_id?: string
                        | null;
                        quote_url?: string;
                        quote_visible?: boolean;
                        quotes_count?: number;
                        reblog?: Status | null;
                        reblogged?: boolean;
                        reblogs_count?: number;
                        replies_count?: number;
                        rss_feed?:
                            | {
                                description: string
                                | null;
                                id: string;
                                image_url: string | null;
                                title: string | null;
                                url: string;
                            }
                            | null;
                        scheduled_at?: null;
                        sensitive?: boolean;
                        spoiler_text?: string;
                        spoiler_text_map?: { [key: string]: string }
                        | null;
                        tags?: {
                            following?: boolean;
                            history: (...)[] | null;
                            name: string;
                            total: number | null;
                            url: string;
                        }[];
                        text?: string
                        | null;
                        text_map?: { [key: string]: string } | null;
                        thread_muted?: boolean;
                        translation?:
                            | false
                            | {
                                content: string;
                                detected_source_language: string;
                                id: string
                                | null;
                                language: string;
                                media_attachments: { description: string; id: string }[];
                                poll?: { id: string; options: (...)[] };
                                provider: string | null;
                                spoiler_text: string;
                            }
                            | null;
                        uri?: string;
                        url?: string;
                        visibility?: string;
                    },
                >;
                reblogStatus: (
                    statusId: string,
                    visibility?: string,
                    scheduledAt?: string,
                ) => Promise<
                    | Status
                    | {
                        id: string;
                        media_attachments: (
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                meta: { focus?: ...; original?: ...; small?: ... };
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "image";
                                url: string;
                            }
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                meta: { duration?: ...; original?: ...; small?: ... };
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "video";
                                url: string;
                            }
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                meta: { duration?: ...; focus?: ...; original?: ... };
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "gifv";
                                url: string;
                            }
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                meta: { colors?: ...; duration?: ...; original?: ... };
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "audio";
                                url: string;
                            }
                            | {
                                blurhash: (...)
                                | (...);
                                description: string;
                                id: string;
                                mime_type: (...) | (...);
                                preview_url: string;
                                remote_url: (...) | (...);
                                type: "unknown";
                                url: string;
                            }
                        )[];
                        params: {
                            application_id: number
                            | null;
                            expires_in: number | null;
                            idempotency: string | null;
                            in_reply_to_id: string | null;
                            language: string | null;
                            media_ids: string | null;
                            poll:
                                | {
                                    expires_in: string;
                                    hide_totals?: (...)
                                    | (...)
                                    | (...);
                                    multiple?: (...) | (...) | (...);
                                    options: (...)[];
                                }
                                | null;
                            scheduled_at: string
                            | null;
                            sensitive: boolean | null;
                            spoiler_text: string | null;
                            text: string | null;
                            visibility: string;
                            with_rate_limit: boolean;
                        };
                        scheduled_at: string;
                    },
                >;
                revokeQuote: (
                    statusId: string,
                    quotingStatusId: string,
                ) => Promise<Status>;
                translateStatus: (
                    statusId: string,
                    lang?: string,
                ) => Promise<
                    {
                        content: string;
                        detected_source_language: string;
                        id: string
                        | null;
                        language: string;
                        media_attachments: { description: string; id: string }[];
                        poll?: { id: string; options: { title: string }[] };
                        provider: string | null;
                        spoiler_text: string;
                    },
                >;
                translateStatuses: (
                    statusIds: string[],
                    lang: string,
                ) => Promise<
                    {
                        content: string;
                        detected_source_language: string;
                        id: string
                        | null;
                        language: string;
                        media_attachments: { description: string; id: string }[];
                        poll?: { id: string; options: { title: ... }[] };
                        provider: string | null;
                        spoiler_text: string;
                    }[],
                >;
                unbookmarkStatus: (statusId: string) => Promise<Status>;
                undislikeStatus: (statusId: string) => Promise<Status>;
                unfavouriteStatus: (statusId: string) => Promise<Status>;
                unmuteStatus: (statusId: string) => Promise<Status>;
                unpinStatus: (statusId: string) => Promise<Status>;
                unreblogStatus: (statusId: string) => Promise<Status>;
            };
        }

      Returns {
          antennaTimeline: (
              antennaId: string,
              params?: AntennaTimelineParams,
          ) => Promise<PaginatedResponse<Status, true>>;
          bubbleTimeline: (
              params?: BubbleTimelineParams,
          ) => Promise<PaginatedResponse<Status, true>>;
          deleteConversation: (conversationId: string) => Promise<EmptyObject>;
          getConversations: (
              params?: GetConversationsParams,
          ) => Promise<
              PaginatedResponse<
                  {
                      accounts: Account[];
                      id: string;
                      last_status: Status
                      | null;
                      unread: boolean;
                  },
                  true,
              >,
          >;
          getMarkers: (
              timelines?: string[],
          ) => Promise<
              {
                  [key: string]: {
                      last_read_id: string;
                      unread_count?: number;
                      updated_at: string;
                      version: number;
                  };
              },
          >;
          groupTimeline: (
              groupId: string,
              params?: GroupTimelineParams,
          ) => Promise<PaginatedResponse<Status, true>>;
          hashtagTimeline: (
              hashtag: string,
              params?: HashtagTimelineParams,
          ) => Promise<PaginatedResponse<Status, true>>;
          homeTimeline: (
              params?: HomeTimelineParams,
          ) => Promise<PaginatedResponse<Status, true>>;
          linkTimeline: (
              url: string,
              params?: LinkTimelineParams,
          ) => Promise<PaginatedResponse<Status, true>>;
          listTimeline: (
              listId: string,
              params?: ListTimelineParams,
          ) => Promise<PaginatedResponse<Status, true>>;
          markConversationRead: (
              conversationId: string,
          ) => Promise<
              {
                  accounts: Account[];
                  id: string;
                  last_status: Status
                  | null;
                  unread: boolean;
              },
          >;
          publicTimeline: (
              params?: PublicTimelineParams,
          ) => Promise<PaginatedResponse<Status, true>>;
          saveMarkers: (
              params: SaveMarkersParams,
          ) => Promise<
              {
                  [key: string]: {
                      last_read_id: string;
                      unread_count?: number;
                      updated_at: string;
                      version: number;
                  };
              },
          >;
          wrenchedTimeline: (
              params?: WrenchedTimelineParams,
          ) => Promise<PaginatedResponse<Status, true>>;
      }