// Public entry point of the code shared between apps/api and apps/web. // Anything exported here is part of the cross-app contract — keep it // intentional (types, validation schemas, error codes), not an implementation // detail specific to one side. export * from "./errors/error-codes.js"; export * from "./schemas/account.js"; export * from "./schemas/auth.js"; export * from "./schemas/household.js"; export * from "./schemas/planning.js"; export * from "./schemas/preferences.js"; export * from "./schemas/profile.js"; export * from "./schemas/recipe.js"; export * from "./tools/assert-is-never.js"; export * from "./types/household.js"; export * from "./types/planning.js"; export * from "./types/preferences.js"; export * from "./types/recipe.js"; export * from "./types/reference.js"; export * from "./types/user-profile.js";