2026-01-14 01:11:28 +00:00
|
|
|
export type MapConfig = {
|
|
|
|
|
ensureLogins?: string[];
|
|
|
|
|
displayName?: Record<string, string>;
|
|
|
|
|
nameToLogin?: Record<string, string>;
|
|
|
|
|
emailToLogin?: Record<string, string>;
|
|
|
|
|
placeholderAvatar?: string;
|
|
|
|
|
seedCommit?: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type ApiContributor = {
|
|
|
|
|
login?: string;
|
|
|
|
|
html_url?: string;
|
|
|
|
|
avatar_url?: string;
|
|
|
|
|
name?: string;
|
|
|
|
|
email?: string;
|
|
|
|
|
contributions?: number;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type User = {
|
|
|
|
|
login: string;
|
|
|
|
|
html_url: string;
|
|
|
|
|
avatar_url: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type Entry = {
|
|
|
|
|
key: string;
|
|
|
|
|
login?: string;
|
|
|
|
|
display: string;
|
|
|
|
|
html_url: string;
|
|
|
|
|
avatar_url: string;
|
|
|
|
|
lines: number;
|
2026-03-01 22:52:11 -08:00
|
|
|
commits: number;
|
|
|
|
|
prs: number;
|
|
|
|
|
score: number;
|
|
|
|
|
firstCommitDate: string;
|
2026-01-14 01:11:28 +00:00
|
|
|
};
|