mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
79 lines
1.7 KiB
TypeScript
79 lines
1.7 KiB
TypeScript
import PropTypes from "prop-types";
|
|
import teamInterface, { ITeam } from "./team";
|
|
|
|
export default PropTypes.shape({
|
|
created_at: PropTypes.string,
|
|
updated_at: PropTypes.string,
|
|
id: PropTypes.number,
|
|
name: PropTypes.string,
|
|
email: PropTypes.string,
|
|
role: PropTypes.string,
|
|
force_password_reset: PropTypes.bool,
|
|
gravatar_url: PropTypes.string,
|
|
sso_enabled: PropTypes.bool,
|
|
global_role: PropTypes.string,
|
|
api_only: PropTypes.bool,
|
|
teams: PropTypes.arrayOf(teamInterface),
|
|
});
|
|
|
|
export interface IUser {
|
|
created_at?: string;
|
|
updated_at?: string;
|
|
id: number;
|
|
name: string;
|
|
email: string;
|
|
role: string;
|
|
force_password_reset: boolean;
|
|
gravatar_url?: string;
|
|
gravatar_url_dark?: string;
|
|
sso_enabled: boolean;
|
|
global_role: string | null;
|
|
api_only: boolean;
|
|
teams: ITeam[];
|
|
}
|
|
|
|
/**
|
|
* The shape of the request body when updating a user.
|
|
*/
|
|
export interface IUserUpdateBody {
|
|
global_role?: string | null;
|
|
teams?: ITeam[];
|
|
name?: string;
|
|
email?: string;
|
|
sso_enabled?: boolean;
|
|
}
|
|
|
|
export interface IUserFormErrors {
|
|
email?: string | null;
|
|
name?: string | null;
|
|
password?: string | null;
|
|
sso_enabled?: boolean | null;
|
|
}
|
|
|
|
export interface ICreateUserFormData {
|
|
email: string;
|
|
global_role: string | null;
|
|
name: string;
|
|
password?: string | null;
|
|
sso_enabled?: boolean | undefined;
|
|
teams: ITeam[];
|
|
}
|
|
|
|
export interface IUpdateUserFormData {
|
|
currentUserId?: number;
|
|
email?: string;
|
|
global_role?: string | null;
|
|
name?: string;
|
|
password?: string | null;
|
|
sso_enabled?: boolean;
|
|
teams?: ITeam[];
|
|
}
|
|
|
|
export interface ICreateUserWithInvitationFormData {
|
|
email: string;
|
|
invite_token: string;
|
|
name: string;
|
|
password: string;
|
|
password_confirmation: string;
|
|
}
|