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 } }} ``` --- 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 + } } } ```