@juki-team/commons - v0.1.10
    Preparing search index...

    Interface UpsertContestDTO

    interface UpsertContestDTO {
        description: string;
        groups: Record<string, ContestGroup>;
        members: EntityMembersDTO;
        name: string;
        problems: { [key: string]: UpsertContestProblemDTO };
        settings: Omit<ContestSettings, "locked">;
        tags: string[];
    }

    Hierarchy

    • Omit<
          ContestBaseDocument,
          "key"
          | "members"
          | "problems"
          | "settings"
          | "events",
      >
      • UpsertContestDTO
    Index

    Properties

    description: string
    groups: Record<string, ContestGroup>
    name: string
    problems: { [key: string]: UpsertContestProblemDTO }
    settings: Omit<ContestSettings, "locked">
    tags: string[]