feat(auth): wire root barrel + ui/query stub

This commit is contained in:
2026-05-05 07:58:38 +02:00
parent 30b49ca19b
commit 9b59c73457
2 changed files with 15 additions and 1 deletions

View File

@@ -1 +1,10 @@
export {};
export type { User } from "./entities/user";
export type { Session } from "./entities/session";
export type { Cookie } from "./entities/cookie";
export {
AuthenticationError,
UnauthenticatedError,
UnauthorizedError,
InputParseError,
} from "./entities/errors";
export { SESSION_COOKIE } from "./config";

View File

@@ -0,0 +1,5 @@
// React Query option builders for auth feature procedures.
// Sign-in/up/out are mutations — no query options needed.
// This file is intentionally minimal; expand if read procedures get added.
export {};