diff --git a/frontend/schema.graphql b/frontend/schema.graphql index 9fccc7824..27d5c6daf 100644 --- a/frontend/schema.graphql +++ b/frontend/schema.graphql @@ -1405,7 +1405,7 @@ union Session = CompatSession | Oauth2Session type SessionLimitConfig { softLimit: Int! hardLimit: Int! - hardLimitEviction: Boolean! + dangerousHardLimitEviction: Boolean! } """ diff --git a/frontend/src/gql/graphql.ts b/frontend/src/gql/graphql.ts index 236cffc68..0f3a2eab5 100644 --- a/frontend/src/gql/graphql.ts +++ b/frontend/src/gql/graphql.ts @@ -1080,8 +1080,8 @@ export type Session = CompatSession | Oauth2Session; export type SessionLimitConfig = { __typename?: 'SessionLimitConfig'; + dangerousHardLimitEviction: Scalars['Boolean']['output']; hardLimit: Scalars['Int']['output']; - hardLimitEviction: Scalars['Boolean']['output']; softLimit: Scalars['Int']['output']; };