提交
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user