From 1fd94342c42173a6ce67f4fbec4ae0b316eaa0b8 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Mon, 16 Sep 2024 16:48:35 +0200 Subject: [PATCH] feat(federation): :sparkles: Export WebFinger types from schema --- federation/schemas.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/federation/schemas.ts b/federation/schemas.ts index 47ee369..d292e6a 100644 --- a/federation/schemas.ts +++ b/federation/schemas.ts @@ -24,6 +24,7 @@ import { VoteSchema } from "./schemas/extensions/polls.ts"; import { ReactionSchema } from "./schemas/extensions/reactions.ts"; import { ShareSchema } from "./schemas/extensions/share.ts"; import { VanityExtensionSchema } from "./schemas/extensions/vanity.ts"; +import { WebFingerSchema } from "./schemas/webfinger.ts"; export { NoteSchema as Note, @@ -46,4 +47,5 @@ export { VoteSchema as PollVoteExtension, ReactionSchema as ReactionExtension, ShareSchema as ShareExtension, + WebFingerSchema as WebFinger, };