From 6d3082e9dcd22cd3f35455decb87ac306d7c01c5 Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Wed, 6 May 2026 09:53:02 -0500 Subject: [PATCH] Automatic updates --- frontend/schema.graphql | 2 +- frontend/src/gql/graphql.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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']; };