diff --git a/src/auth/mutations.ts b/src/auth/mutations.ts index 6791e4b0d..5138d6c2f 100644 --- a/src/auth/mutations.ts +++ b/src/auth/mutations.ts @@ -15,8 +15,6 @@ export const fragmentUser = gql` email firstName lastName - isStaff - note permissions { code name diff --git a/src/auth/types/SetPassword.ts b/src/auth/types/SetPassword.ts index 708560696..9a4c04509 100644 --- a/src/auth/types/SetPassword.ts +++ b/src/auth/types/SetPassword.ts @@ -31,8 +31,6 @@ export interface SetPassword_setPassword_user { email: string; firstName: string; lastName: string; - isStaff: boolean; - note: string | null; permissions: (SetPassword_setPassword_user_permissions | null)[] | null; avatar: SetPassword_setPassword_user_avatar | null; } diff --git a/src/auth/types/TokenAuth.ts b/src/auth/types/TokenAuth.ts index 3cae7fada..fa49d6998 100644 --- a/src/auth/types/TokenAuth.ts +++ b/src/auth/types/TokenAuth.ts @@ -31,8 +31,6 @@ export interface TokenAuth_tokenCreate_user { email: string; firstName: string; lastName: string; - isStaff: boolean; - note: string | null; permissions: (TokenAuth_tokenCreate_user_permissions | null)[] | null; avatar: TokenAuth_tokenCreate_user_avatar | null; } diff --git a/src/auth/types/User.ts b/src/auth/types/User.ts index 6609b9897..60ddc5c9c 100644 --- a/src/auth/types/User.ts +++ b/src/auth/types/User.ts @@ -25,8 +25,6 @@ export interface User { email: string; firstName: string; lastName: string; - isStaff: boolean; - note: string | null; permissions: (User_permissions | null)[] | null; avatar: User_avatar | null; } diff --git a/src/auth/types/VerifyToken.ts b/src/auth/types/VerifyToken.ts index 10e83496e..9daf9abf7 100644 --- a/src/auth/types/VerifyToken.ts +++ b/src/auth/types/VerifyToken.ts @@ -25,8 +25,6 @@ export interface VerifyToken_tokenVerify_user { email: string; firstName: string; lastName: string; - isStaff: boolean; - note: string | null; permissions: (VerifyToken_tokenVerify_user_permissions | null)[] | null; avatar: VerifyToken_tokenVerify_user_avatar | null; }