This commit is contained in:
浪子
2026-05-14 11:47:25 +08:00
parent 01880d39a0
commit 5b01f18719
11 changed files with 512 additions and 29 deletions
+44
View File
@@ -122,6 +122,50 @@ export type Hashtag = {
tag: string;
};
export type Bookmark = {
user_id: string;
status_id: string;
created_at: string;
};
export type PinnedStatus = {
user_id: string;
status_id: string;
created_at: string;
};
export type CachedStatus = {
id: string;
object_id: string;
actor: string;
content: string;
summary: string;
sensitive: number;
language: string;
in_reply_to: string | null;
url: string;
published: string;
cached_at: string;
};
export type CachedStatusAttachment = {
cached_status_id: string;
position: number;
url: string;
preview_url: string | null;
mime_type: string;
description: string | null;
};
export type OAuthToken = {
token: string;
user_id: string;
app_id: string;
scopes: string;
created_at: string;
last_used_at: string | null;
};
export type ActorCache = {
id: string;
inbox: string;