Auto-commit 2026-04-29 16:31
This commit is contained in:
164
node_modules/next-auth/providers/42-school.d.ts
generated
vendored
Normal file
164
node_modules/next-auth/providers/42-school.d.ts
generated
vendored
Normal file
@@ -0,0 +1,164 @@
|
||||
import type { OAuthConfig, OAuthUserConfig } from ".";
|
||||
export interface UserData {
|
||||
id: number;
|
||||
email: string;
|
||||
login: string;
|
||||
first_name: string;
|
||||
last_name: string;
|
||||
usual_full_name: null | string;
|
||||
usual_first_name: null | string;
|
||||
url: string;
|
||||
phone: "hidden" | string | null;
|
||||
displayname: string;
|
||||
image_url: string | null;
|
||||
"staff?": boolean;
|
||||
correction_point: number;
|
||||
pool_month: string | null;
|
||||
pool_year: string | null;
|
||||
location: string | null;
|
||||
wallet: number;
|
||||
anonymize_date: string;
|
||||
created_at: string;
|
||||
updated_at: string | null;
|
||||
alumni: boolean;
|
||||
"is_launched?": boolean;
|
||||
}
|
||||
export interface CursusUser {
|
||||
grade: string | null;
|
||||
level: number;
|
||||
skills: Array<{
|
||||
id: number;
|
||||
name: string;
|
||||
level: number;
|
||||
}>;
|
||||
blackholed_at: string | null;
|
||||
id: number;
|
||||
begin_at: string | null;
|
||||
end_at: string | null;
|
||||
cursus_id: number;
|
||||
has_coalition: boolean;
|
||||
created_at: string;
|
||||
updated_at: string | null;
|
||||
user: UserData;
|
||||
cursus: {
|
||||
id: number;
|
||||
created_at: string;
|
||||
name: string;
|
||||
slug: string;
|
||||
};
|
||||
}
|
||||
export interface ProjectUser {
|
||||
id: number;
|
||||
occurrence: number;
|
||||
final_mark: number | null;
|
||||
status: "in_progress" | "finished";
|
||||
"validated?": boolean | null;
|
||||
current_team_id: number;
|
||||
project: {
|
||||
id: number;
|
||||
name: string;
|
||||
slug: string;
|
||||
parent_id: number | null;
|
||||
};
|
||||
cursus_ids: number[];
|
||||
marked_at: string | null;
|
||||
marked: boolean;
|
||||
retriable_at: string | null;
|
||||
created_at: string;
|
||||
updated_at: string | null;
|
||||
}
|
||||
export interface Achievement {
|
||||
id: number;
|
||||
name: string;
|
||||
description: string;
|
||||
tier: "none" | "easy" | "medium" | "hard" | "challenge";
|
||||
kind: "scolarity" | "project" | "pedagogy" | "scolarity";
|
||||
visible: boolean;
|
||||
image: string | null;
|
||||
nbr_of_success: number | null;
|
||||
users_url: string;
|
||||
}
|
||||
export interface LanguagesUser {
|
||||
id: number;
|
||||
language_id: number;
|
||||
user_id: number;
|
||||
position: number;
|
||||
created_at: string;
|
||||
}
|
||||
export interface TitlesUser {
|
||||
id: number;
|
||||
user_id: number;
|
||||
title_id: number;
|
||||
selected: boolean;
|
||||
created_at: string;
|
||||
updated_at: string | null;
|
||||
}
|
||||
export interface ExpertisesUser {
|
||||
id: number;
|
||||
expertise_id: number;
|
||||
interested: boolean;
|
||||
value: number;
|
||||
contact_me: boolean;
|
||||
created_at: string;
|
||||
user_id: number;
|
||||
}
|
||||
export interface Campus {
|
||||
id: number;
|
||||
name: string;
|
||||
time_zone: string;
|
||||
language: {
|
||||
id: number;
|
||||
name: string;
|
||||
identifier: string;
|
||||
created_at: string;
|
||||
updated_at: string | null;
|
||||
};
|
||||
users_count: number;
|
||||
vogsphere_id: number;
|
||||
country: string;
|
||||
address: string;
|
||||
zip: string;
|
||||
city: string;
|
||||
website: string;
|
||||
facebook: string;
|
||||
twitter: string;
|
||||
active: boolean;
|
||||
email_extension: string;
|
||||
default_hidden_phone: boolean;
|
||||
}
|
||||
export interface CampusUser {
|
||||
id: number;
|
||||
user_id: number;
|
||||
campus_id: number;
|
||||
is_primary: boolean;
|
||||
created_at: string;
|
||||
updated_at: string | null;
|
||||
}
|
||||
export interface FortyTwoProfile extends UserData, Record<string, any> {
|
||||
groups: Array<{
|
||||
id: string;
|
||||
name: string;
|
||||
}>;
|
||||
cursus_users: CursusUser[];
|
||||
projects_users: ProjectUser[];
|
||||
languages_users: LanguagesUser[];
|
||||
achievements: Achievement[];
|
||||
titles: Array<{
|
||||
id: string;
|
||||
name: string;
|
||||
}>;
|
||||
titles_users: TitlesUser[];
|
||||
partnerships: any[];
|
||||
patroned: any[];
|
||||
patroning: any[];
|
||||
expertises_users: ExpertisesUser[];
|
||||
roles: Array<{
|
||||
id: string;
|
||||
name: string;
|
||||
}>;
|
||||
campus: Campus[];
|
||||
campus_users: CampusUser[];
|
||||
user: any | null;
|
||||
}
|
||||
export default function FortyTwo<P extends FortyTwoProfile>(options: OAuthUserConfig<P>): OAuthConfig<P>;
|
||||
//# sourceMappingURL=42-school.d.ts.map
|
||||
Reference in New Issue
Block a user