From d907c646b22208c93daf51bde631589b54c68adb Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Tue, 21 Apr 2026 13:03:14 +0200 Subject: [PATCH 1/2] docs: fix delegation outside of google/github Signed-off-by: David Dal Busco --- docs/build/authentication/github.mdx | 10 +++++----- docs/build/authentication/google.mdx | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/build/authentication/github.mdx b/docs/build/authentication/github.mdx index 98aad85f..216f7d90 100644 --- a/docs/build/authentication/github.mdx +++ b/docs/build/authentication/github.mdx @@ -190,11 +190,11 @@ Example configuration: ```typescript authentication: { github: { - clientId: "1234567890-abcde12345fghijklmno.apps.googleusercontent.com" - }, - delegation: { - allowedTargets: ["", ""], - sessionDuration: BigInt(7 * 24 * 60 * 60 * 1_000_000_000) // 7 days + clientId: "1234567890-abcde12345fghijklmno.apps.googleusercontent.com", + delegation: { + allowedTargets: ["", ""], + sessionDuration: BigInt(7 * 24 * 60 * 60 * 1_000_000_000) // 7 days + } } } ``` diff --git a/docs/build/authentication/google.mdx b/docs/build/authentication/google.mdx index 070a2f05..b5453e0c 100644 --- a/docs/build/authentication/google.mdx +++ b/docs/build/authentication/google.mdx @@ -199,11 +199,11 @@ Example configuration: ```typescript authentication: { google: { - clientId: "1234567890-abcde12345fghijklmno.apps.googleusercontent.com" - }, - delegation: { - allowedTargets: ["", ""], - sessionDuration: BigInt(7 * 24 * 60 * 60 * 1_000_000_000) // 7 days + clientId: "1234567890-abcde12345fghijklmno.apps.googleusercontent.com", + delegation: { + allowedTargets: ["", ""], + sessionDuration: BigInt(7 * 24 * 60 * 60 * 1_000_000_000) // 7 days + } } } ``` From 75e6e57fa30d9c15bf33290a62496875f744768f Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Apr 2026 11:05:27 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=93=84=20Update=20LLMs.txt=20snapshot?= =?UTF-8?q?=20for=20PR=20review?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .llms-snapshots/llms-full.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.llms-snapshots/llms-full.txt b/.llms-snapshots/llms-full.txt index 1aa9d47b..fed8e5c1 100644 --- a/.llms-snapshots/llms-full.txt +++ b/.llms-snapshots/llms-full.txt @@ -1204,7 +1204,7 @@ The `delegation` section defines how long sessions last and which modules authen Example configuration: ``` -authentication: { github: { clientId: "1234567890-abcde12345fghijklmno.apps.googleusercontent.com" }, delegation: { allowedTargets: ["", ""], sessionDuration: BigInt(7 * 24 * 60 * 60 * 1_000_000_000) // 7 days }} +authentication: { github: { clientId: "1234567890-abcde12345fghijklmno.apps.googleusercontent.com", delegation: { allowedTargets: ["", ""], sessionDuration: BigInt(7 * 24 * 60 * 60 * 1_000_000_000) // 7 days } }} ``` --- @@ -1419,7 +1419,7 @@ The `delegation` section defines how long sessions last and which modules authen Example configuration: ``` -authentication: { google: { clientId: "1234567890-abcde12345fghijklmno.apps.googleusercontent.com" }, delegation: { allowedTargets: ["", ""], sessionDuration: BigInt(7 * 24 * 60 * 60 * 1_000_000_000) // 7 days }} +authentication: { google: { clientId: "1234567890-abcde12345fghijklmno.apps.googleusercontent.com", delegation: { allowedTargets: ["", ""], sessionDuration: BigInt(7 * 24 * 60 * 60 * 1_000_000_000) // 7 days } }} ``` ---