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