Author Type — supabase Architecture
Architecture documentation for the Author type/interface in payload-types.ts from the supabase codebase.
Entity Profile
Source Code
apps/cms/src/payload-types.ts lines 140–163
export interface Author {
id: number;
author: string;
/**
* Unique identifier for the author
*/
author_id: string;
/**
* GitHub/social username
*/
username?: string | null;
position?: string | null;
/**
* Company name (for external/guest authors)
*/
company?: string | null;
/**
* Link to GitHub, Twitter, LinkedIn, etc.
*/
author_url?: string | null;
author_image_url?: (number | null) | Media;
updatedAt: string;
createdAt: string;
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free