// 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 "./data/catalog-labels-en.js"; export * from "./data/catalog-labels-fr.js"; 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 "./schemas/shopping-list.js"; export * from "./schemas/sources.js"; export * from "./schemas/tech-step-worker.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/shopping-list.js"; export * from "./types/sources.js"; export * from "./types/tech-step-worker.js"; export * from "./types/user-profile.js";