Skip to content

Commit 131d2e0

Browse files
committed
docs: add link replacement for OAuth Application
Currently the link to `OAuthApplicationNamespace` at https://clerk.com/docs/js-frontend/reference/objects/clerk#oauthapplication routes to a 404 In conjunction with the pending docs PR: clerk/clerk-docs#3315 This will fix that link to point at the new page at `reference/types/oauth-application`
1 parent 7e3174a commit 131d2e0

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.typedoc/__tests__/__snapshots__/clerk-properties.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
| <a id="issignedin"></a> `isSignedIn` | `boolean` | Indicates whether the current user has a valid signed-in client session. |
1010
| <a id="isstandardbrowser"></a> `isStandardBrowser` | <code>undefined \| boolean</code> | Indicates whether the instance is being loaded in a standard browser environment. Set to `false` on native platforms where cookies cannot be set. When `undefined`, Clerk assumes a standard browser. |
1111
| <a id="loaded"></a> `loaded` | `boolean` | Indicates whether the `Clerk` object is ready for use. Set to `false` when the `status` is `"loading"`. Set to `true` when the `status` is `"ready"` or `"degraded"`. |
12-
| <a id="oauthapplication"></a> `oauthApplication` | [`OAuthApplicationNamespace`](../o-auth-application-namespace.mdx) | OAuth application helpers (e.g. consent metadata for custom consent UIs). |
12+
| <a id="oauthapplication"></a> `oauthApplication` | [`OAuthApplicationNamespace`](/docs/reference/types/oauth-application) | OAuth application helpers (e.g. consent metadata for custom consent UIs). |
1313
| <a id="organization"></a> `organization` | <code>undefined \| null \| [OrganizationResource](/docs/reference/objects/organization)</code> | A shortcut to the last active `Session.user.organizationMemberships` which holds an instance of a `Organization` object. If the session is `null` or `undefined`, the user field will match. |
1414
| <a id="proxyurl"></a> `proxyUrl` | <code>undefined \| string</code> | **Required for applications that run behind a reverse proxy**. Your Clerk app's proxy URL. Can be either a relative path (`/__clerk`) or a full URL (`https://<your-domain>/__clerk`). |
1515
| <a id="publishablekey"></a> `publishableKey` | `string` | Your Clerk [Publishable Key](!publishable-key). |

.typedoc/custom-plugin.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ const LINK_REPLACEMENTS = [
7070
['organization-domain-resource', '/docs/reference/types/organization-domain-resource'],
7171
['organization-invitation-resource', '/docs/reference/types/organization-invitation'],
7272
['organization-membership-request-resource', '/docs/reference/types/organization-membership-request'],
73+
['o-auth-application-namespace', '/docs/reference/types/oauth-application'],
7374
['o-auth-consent-info', '/docs/reference/types/oauth-consent-info'],
7475
['o-auth-consent-scope', '/docs/reference/types/oauth-consent-scope'],
7576
['o-auth-strategy', '/docs/reference/types/sso#o-auth-strategy'],

0 commit comments

Comments
 (0)