Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/api/app-auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ Source: `src/app-auth/index.ts`

### `AppAuth`

`interface`
`interface` — Define authentication guard with session retrieval and optional SSO handlers for app requests

```ts
interface AppAuth
```

### `AppAuthConfig`

`interface`
`interface` — Define configuration settings for app authentication including app name, base URL, secrets, and trusted origins

```ts
interface AppAuthConfig
Expand All @@ -32,7 +32,7 @@ interface AppAuthEmailClient

### `AppAuthEmailConfig`

`interface`
`interface` — Define email configuration for app authentication including client, sender, verification, and warning options

```ts
interface AppAuthEmailConfig
Expand All @@ -48,7 +48,7 @@ type AppAuthInstance

### `AppAuthSchema`

`interface`
`interface` — Define the structure for application authentication data including users, sessions, accounts, and verifications

```ts
interface AppAuthSchema
Expand All @@ -64,7 +64,7 @@ interface AppAuthSession

### `AppAuthSocialConfig`

`interface`
`interface` — Define social authentication configuration options for GitHub and Google providers

```ts
interface AppAuthSocialConfig
Expand Down
Loading