fix(federation): 🐛 Correctly validate outbound Collections

This commit is contained in:
Jesse Wierzbinski 2024-08-26 19:34:21 +02:00
parent 42e198ca0e
commit 334c429bfa
No known key found for this signature in database
4 changed files with 7 additions and 10 deletions

View file

@ -1,6 +1,7 @@
import type { Hono } from "@hono/hono";
import type { RouterRoute } from "@hono/hono/types";
import type {
Collection,
Delete,
Follow,
FollowAccept,
@ -61,4 +62,5 @@ export type KnownEntity =
| FollowReject
| Unfollow
| Delete
| LikeExtension;
| LikeExtension
| Collection;