IOutput: {
    capitalTimeEntriesByIssues: {
        currentPage: number;
        items: {
            available_hours: number;
            committed_hours: number;
            contributor_hash: string;
            contributor_name: string;
            coopname: string;
            issue_hash: string;
            issue_title: string;
            pending_hours: number;
            project_hash: string;
            project_name: string;
            total_hours: number;
            uncommitted_hours: number;
        }[];
        totalCount: number;
        totalPages: number;
    };
}

Type declaration

  • capitalTimeEntriesByIssues: {
        currentPage: number;
        items: {
            available_hours: number;
            committed_hours: number;
            contributor_hash: string;
            contributor_name: string;
            coopname: string;
            issue_hash: string;
            issue_title: string;
            pending_hours: number;
            project_hash: string;
            project_name: string;
            total_hours: number;
            uncommitted_hours: number;
        }[];
        totalCount: number;
        totalPages: number;
    }

    Получение пагинированного списка агрегированных записей времени по задачам с информацией о задачах и участниках

    • currentPage: number

      Текущая страница

    • items: {
          available_hours: number;
          committed_hours: number;
          contributor_hash: string;
          contributor_name: string;
          coopname: string;
          issue_hash: string;
          issue_title: string;
          pending_hours: number;
          project_hash: string;
          project_name: string;
          total_hours: number;
          uncommitted_hours: number;
      }[]

      Элементы текущей страницы

    • totalCount: number

      Общее количество элементов

    • totalPages: number

      Общее количество страниц