Home / Type/ EventsSelect Type — supabase Architecture

EventsSelect Type — supabase Architecture

Architecture documentation for the EventsSelect type/interface in payload-types.ts from the supabase codebase.

Entity Profile

Source Code

apps/cms/src/payload-types.ts lines 1294–1351

export interface EventsSelect<T extends boolean = true> {
  title?: T;
  slug?: T;
  slugLock?: T;
  subtitle?: T;
  content?: T;
  thumb?: T;
  image?: T;
  type?: T;
  date?: T;
  timezone?: T;
  showEndDate?: T;
  endDate?: T;
  duration?: T;
  onDemand?: T;
  disablePageBuild?: T;
  link?:
    | T
    | {
        href?: T;
        target?: T;
      };
  mainCta?:
    | T
    | {
        href?: T;
        target?: T;
        label?: T;
        disabled?: T;
        disabled_label?: T;
      };
  company?:
    | T
    | {
        showCompany?: T;
        name?: T;
        websiteUrl?: T;
        logo?: T;
        logo_light?: T;
      };
  participants?:
    | T
    | {
        showParticipants?: T;
        participants?: T;
      };
  meta?:
    | T
    | {
        title?: T;
        image?: T;
        description?: T;
      };
  publishedAt?: T;
  updatedAt?: T;
  createdAt?: T;
  _status?: T;
}

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free