gitbeaker/packages/core/src/resources/ApplicationStatistics.ts
Justin Dalrymple 7f1648802b Major Release v36.0.0 - Improved Typing, and API support (16.0) (#2258)
Adding extensive typing support
Unified browser and Node.JS implementations
Adding support of Gitlab API 16.0
2023-04-26 12:58:56 -04:00

26 lines
833 B
TypeScript

import { BaseResource } from '@gitbeaker/requester-utils';
import { RequestHelper } from '../infrastructure';
import type { GitlabAPIResponse, ShowExpanded, Sudo } from '../infrastructure';
export interface ApplicationStatisticSchema extends Record<string, unknown> {
forks: string;
issues: string;
merge_requests: string;
notes: string;
snippets: string;
ssh_keys: string;
milestones: string;
users: string;
groups: string;
projects: string;
active_users: string;
}
export class ApplicationStatistics<C extends boolean = false> extends BaseResource<C> {
show<E extends boolean = false>(
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<ApplicationStatisticSchema, C, E, void>> {
return RequestHelper.get<ApplicationStatisticSchema>()(this, 'application/statistics', options);
}
}