IOutput: {
    capitalAddWorklog: {
        _created_at: string;
        _id: string;
        _updated_at: string;
        commit_hash?: null | string;
        contributor_hash: string;
        coopname: string;
        date: string;
        entry_type?: null | string;
        estimate_snapshot?: null | number;
        hours: number;
        is_committed: boolean;
        issue_hash: string;
        project_hash: string;
    };
}

Type declaration

  • capitalAddWorklog: {
        _created_at: string;
        _id: string;
        _updated_at: string;
        commit_hash?: null | string;
        contributor_hash: string;
        coopname: string;
        date: string;
        entry_type?: null | string;
        estimate_snapshot?: null | number;
        hours: number;
        is_committed: boolean;
        issue_hash: string;
        project_hash: string;
    }

    Ручная запись фактического времени по задаче (на себя как исполнителя)

    Требуемые роли: chairman, member, user.

    • _created_at: string

      Дата создания записи

    • _id: string

      Уникальный идентификатор записи

    • _updated_at: string

      Дата последнего обновления записи

    • Optional commit_hash?: null | string

      Хеш коммита

    • contributor_hash: string

      Хеш участника

    • coopname: string

      Название кооператива

    • date: string

      Дата записи времени (YYYY-MM-DD)

    • Optional entry_type?: null | string

      Тип начисления времени: hourly (почасовое) или estimate (по завершению задачи)

    • Optional estimate_snapshot?: null | number

      Снимок estimate на момент начисления времени (для отслеживания изменений)

    • hours: number

      Количество часов

    • is_committed: boolean

      Флаг, указывающий, закоммичена ли запись

    • issue_hash: string

      Хеш задачи

    • project_hash: string

      Хеш проекта