ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
17
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 17 lines 631 B view raw
1export * from "./ApiError"; 2export * from "./AuthenticationError"; 3export * from "./ValidationError"; 4export * from "./NotFoundError"; 5export * from "./DatabaseError"; 6 7export const ERROR_MESSAGES = { 8 NO_SESSION_COOKIE: "No session cookie", 9 INVALID_SESSION: "Invalid or expired session", 10 MISSING_PARAMETERS: "Missing required parameters", 11 OAUTH_FAILED: "OAuth authentication failed", 12 DATABASE_ERROR: "Database operation failed", 13 PROFILE_FETCH_FAILED: "Failed to fetch profile", 14 SEARCH_FAILED: "Search operation failed", 15 FOLLOW_FAILED: "Follow operation failed", 16 SAVE_FAILED: "Failed to save results", 17} as const;