import type { LongCommitSha } from '../../../util/git/types';
import type { Pr, RepoSortMethod, SortMethod } from '../types';
export interface PrReviewersParams {
    reviewers?: string[];
    team_reviewers?: string[];
}
export type PRState = 'open' | 'closed' | 'all';
export type IssueState = 'open' | 'closed' | 'all';
export type CommitStatusType = 'pending' | 'success' | 'error' | 'failure' | 'warning' | 'unknown';
export type PRMergeMethod = 'fast-forward' | 'merge' | 'rebase' | 'rebase-merge' | 'squash';
export interface GiteaLabel {
    id: number;
    name: string;
}
export interface PR {
    number: number;
    state: PRState;
    title: string;
    body: string;
    mergeable: boolean;
    merged?: boolean;
    created_at: string;
    updated_at: string;
    closed_at: string | null;
    diff_url: string;
    base?: {
        ref: string;
    };
    head?: {
        label: string;
        sha: LongCommitSha;
        repo?: Repo;
    };
    assignee?: {
        login?: string;
    };
    assignees?: any[];
    user?: {
        username?: string;
    };
    labels?: GiteaLabel[];
}
export interface Issue {
    number: number;
    state: IssueState;
    title: string;
    body: string;
    assignees: User[];
    labels: Label[];
}
export interface User {
    id: number;
    email: string;
    full_name?: string;
    username: string;
}
export interface Repo {
    id: number;
    allow_fast_forward_only_merge: boolean;
    allow_merge_commits: boolean;
    allow_rebase: boolean;
    allow_rebase_explicit: boolean;
    allow_squash_merge: boolean;
    archived: boolean;
    clone_url?: string;
    default_merge_style: string;
    external_tracker?: unknown;
    has_issues: boolean;
    has_pull_requests: boolean;
    ssh_url?: string;
    default_branch: string;
    empty: boolean;
    fork: boolean;
    full_name: string;
    mirror: boolean;
    owner: User;
    permissions: RepoPermission;
}
export interface RepoPermission {
    admin: boolean;
    pull: boolean;
    push: boolean;
}
export interface RepoSearchResults {
    ok: boolean;
    data: Repo[];
}
export interface RepoContents {
    path: string;
    content?: string;
    contentString?: string;
}
export interface Comment {
    id: number;
    body: string;
}
export interface Label {
    id: number;
    name: string;
    description: string;
    color: string;
}
export interface Branch {
    name: string;
    commit: Commit;
}
export interface Commit {
    id: string;
    author: CommitUser;
}
export interface CommitUser {
    name: string;
    email: string;
    username: string;
}
export interface CommitStatus {
    id: number;
    status: CommitStatusType;
    context: string;
    description?: string;
    target_url?: string;
    created_at: string;
}
export interface CombinedCommitStatus {
    worstStatus: CommitStatusType;
    statuses: CommitStatus[];
}
export interface RepoSearchParams {
    uid?: number;
    archived?: boolean;
    topic?: boolean;
    q?: string;
    /**
     * Repo sort type, defaults to `alpha`.
     */
    sort?: RepoSortMethod;
    /**
     * Repo sort order, defaults to `asc`
     */
    order?: SortMethod;
}
export type IssueCreateParams = Partial<IssueUpdateLabelsParams> & IssueUpdateParams;
export interface IssueUpdateParams {
    title?: string;
    body?: string;
    state?: IssueState;
    assignees?: string[];
}
export interface IssueUpdateLabelsParams {
    labels?: number[];
}
export interface IssueSearchParams {
    state?: IssueState;
}
export interface PRCreateParams extends PRUpdateParams {
    head?: string;
}
export interface PRUpdateParams {
    title?: string;
    body?: string;
    assignees?: string[];
    labels?: number[];
    state?: PRState;
    base?: string;
}
export interface PRMergeParams {
    Do: PRMergeMethod;
    merge_when_checks_succeed?: boolean;
    delete_branch_after_merge?: boolean;
}
export type CommentCreateParams = CommentUpdateParams;
export interface CommentUpdateParams {
    body: string;
}
export interface CommitStatusCreateParams {
    context?: string;
    description?: string;
    state?: CommitStatusType;
    target_url?: string;
}
export interface GiteaPrCacheData {
    items: Record<number, Pr>;
    updated_at: string | null;
    author: string | null;
}
