mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 20:37:48 +00:00
47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
TypeScript
import { TeamMemberRoleEnum } from './constant';
|
|
import { LafAccountType, TeamMemberSchema } from './type';
|
|
|
|
export type AuthTeamRoleProps = {
|
|
teamId: string;
|
|
tmbId: string;
|
|
role?: `${TeamMemberRoleEnum}`;
|
|
};
|
|
export type CreateTeamProps = {
|
|
name: string;
|
|
avatar?: string;
|
|
defaultTeam?: boolean;
|
|
lafAccount?: LafAccountType;
|
|
};
|
|
export type UpdateTeamProps = {
|
|
teamId: string;
|
|
name?: string;
|
|
avatar?: string;
|
|
teamDomain?: string;
|
|
lafAccount?: null | LafAccountType;
|
|
};
|
|
|
|
/* ------------- member ----------- */
|
|
export type DelMemberProps = {
|
|
teamId: string;
|
|
memberId: string;
|
|
};
|
|
export type UpdateTeamMemberProps = {
|
|
teamId: string;
|
|
memberId: string;
|
|
role?: TeamMemberSchema['role'];
|
|
status?: TeamMemberSchema['status'];
|
|
};
|
|
export type InviteMemberProps = {
|
|
teamId: string;
|
|
usernames: string[];
|
|
role: `${TeamMemberRoleEnum}`;
|
|
};
|
|
export type UpdateInviteProps = {
|
|
tmbId: string;
|
|
status: TeamMemberSchema['status'];
|
|
};
|
|
export type InviteMemberResponse = Record<
|
|
'invite' | 'inValid' | 'inTeam',
|
|
{ username: string; userId: string }[]
|
|
>;
|