IOutput: {
    getCapitalProjectLogs: {
        currentPage: number;
        items: {
            _id: string;
            coopname: string;
            created_at: unknown;
            entity_id?: null | string;
            entity_type: LogEntityType;
            event_type: LogEventType;
            initiator: string;
            message: string;
            metadata?: unknown;
            project_hash?: null | string;
            reference_id?: null | string;
        }[];
        totalCount: number;
        totalPages: number;
    };
}

Type declaration

  • getCapitalProjectLogs: {
        currentPage: number;
        items: {
            _id: string;
            coopname: string;
            created_at: unknown;
            entity_id?: null | string;
            entity_type: LogEntityType;
            event_type: LogEventType;
            initiator: string;
            message: string;
            metadata?: unknown;
            project_hash?: null | string;
            reference_id?: null | string;
        }[];
        totalCount: number;
        totalPages: number;
    }

    Получить логи событий по проекту с фильтрацией и пагинацией

    • currentPage: number

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

    • items: {
          _id: string;
          coopname: string;
          created_at: unknown;
          entity_id?: null | string;
          entity_type: LogEntityType;
          event_type: LogEventType;
          initiator: string;
          message: string;
          metadata?: unknown;
          project_hash?: null | string;
          reference_id?: null | string;
      }[]

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

    • totalCount: number

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

    • totalPages: number

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