This release is 23 versions behind 1.4.9 — the latest version of @fedify/fedify. Jump to latest
Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
An ActivityPub/fediverse server framework
export interface SenderKeyJwkPair { keyId: string; privateKey: JsonWebKey; } export type Message = OutboxMessage | InboxMessage; export interface OutboxMessage { type: "outbox"; id: ReturnType<typeof crypto.randomUUID>; keys: SenderKeyJwkPair[]; activity: unknown; activityId?: string; activityType: string; inbox: string; sharedInbox: boolean; started: string; attempt: number; headers: Record<string, string>; traceContext: Record<string, string>; } export interface InboxMessage { type: "inbox"; id: ReturnType<typeof crypto.randomUUID>; baseUrl: string; activity: unknown; started: string; attempt: number; identifier: string | null; traceContext: Record<string, string>; }