This commit is contained in:
浪子
2026-05-14 23:39:53 +08:00
parent 3fff8632fb
commit e2fcf08e2f
8 changed files with 190 additions and 16 deletions
+16
View File
@@ -227,6 +227,22 @@ export type ScheduledStatus = {
created_at: string;
};
export type OutgoingDelivery = {
id: string;
user_id: string;
inbox: string;
activity_id: string;
activity_json: string;
attempts: number;
next_attempt_at: string | null;
locked_until: string | null;
delivered_at: string | null;
failed_at: string | null;
last_error: string | null;
created_at: string;
updated_at: string;
};
export type OAuthToken = {
token: string;
user_id: string;