feat(auth): wire root barrel + ui/query stub
This commit is contained in:
@@ -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";
|
||||||
|
|||||||
5
packages/auth/src/ui/query.ts
Normal file
5
packages/auth/src/ui/query.ts
Normal 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 {};
|
||||||
Reference in New Issue
Block a user