feat(federation): Expose all Zod schemas in package

This commit is contained in:
Jesse Wierzbinski 2024-09-16 12:44:11 +02:00
parent a31695d64c
commit 6c15ceb1e9
No known key found for this signature in database
8 changed files with 118 additions and 63 deletions

View file

@ -1,7 +1,7 @@
import { fromZodError } from "zod-validation-error";
import type { SignatureConstructor } from "../cryptography";
import type { User } from "../schemas";
import { WebFingerSchema } from "../schemas/webfinger";
import type { User } from "../types";
import { DEFAULT_UA } from "./constants";
type HttpVerb = "GET" | "POST" | "PUT" | "PATCH" | "DELETE";