/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ import type { ProjectActivitySchema } from './projectActivitySchema'; /** * Schema representing the overall status of a project, including an array of activity records. Each record in the activity array contains a date and a count, providing a snapshot of the project’s activity level over time. */ export interface ProjectStatusSchema { /** Array of activity records with date and count, representing the project’s daily activity statistics. */ activityCountByDate: ProjectActivitySchema; }