UNPKG

@smash-sdk/iam

Version:
37 lines (36 loc) 877 B
export interface UpdateTeamInput { teamId: string; name?: string; description?: string; config?: { authentication?: { mode: "Anonymous" | "Authentified"; rules?: { type: "Wildcard" | "Email"; value: string; }[]; }; }; } export interface UpdateTeamOutput { team: { id: string; name?: string; domain?: string; config: { authentication: { mode: "Anonymous" | "Authentified"; rules?: { type: "Wildcard" | "Email"; value: string; }[]; }; }; created: string; modified: string; usersCount: number; groupsCount: number; description?: string; groupsUsersCount: number; }; }