Skip to content

Commit 17b531a

Browse files
committed
docs: re-run docs
1 parent db9fd94 commit 17b531a

23 files changed

+35
-35
lines changed

docs/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Support from the community to continue maintaining and improving this module is
2828

2929
## Advanced Configuration
3030

31-
- [allowInsecureRequests](functions/allowInsecureRequests.md)
31+
- [~~allowInsecureRequests~~](functions/allowInsecureRequests.md)
3232
- [enableDecryptingResponses](functions/enableDecryptingResponses.md)
3333
- [enableDetachedSignatureResponseChecks](functions/enableDetachedSignatureResponseChecks.md)
3434
- [enableNonRepudiationChecks](functions/enableNonRepudiationChecks.md)
@@ -141,5 +141,5 @@ Support from the community to continue maintaining and improving this module is
141141
- [clockTolerance](variables/clockTolerance.md)
142142
- [customFetch](variables/customFetch.md)
143143
- [modifyAssertion](variables/modifyAssertion.md)
144-
- [skipStateCheck](variables/skipStateCheck.md)
145-
- [skipSubjectCheck](variables/skipSubjectCheck.md)
144+
- [~~skipStateCheck~~](variables/skipStateCheck.md)
145+
- [~~skipSubjectCheck~~](variables/skipSubjectCheck.md)

docs/classes/Configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ let config = new client.Configuration(server, clientId, clientSecret)
5959
| ------ | ------ | ------ |
6060
| `server` | [`ServerMetadata`](../interfaces/ServerMetadata.md) | Authorization Server Metadata |
6161
| `clientId` | `string` | Client Identifier at the Authorization Server |
62-
| `metadata`? | `string` \| [`Partial`](https://www.typescriptlang.org/docs/handbook/utility-types.html#partialtype)\<[`ClientMetadata`](../interfaces/ClientMetadata.md)\> | Client Metadata, when a string is passed in it is a shorthand for passing just [ClientMetadata.client_secret](../interfaces/ClientMetadata.md#client_secret). |
62+
| `metadata`? | `string` \| [`Partial`](https://www.typescriptlang.org/docs/handbook/utility-types.html#partialtype)\<[`ClientMetadata`](../interfaces/ClientMetadata.md)\> | Client Metadata, when a string is passed in it is a shorthand for passing just [ClientMetadata.client\_secret](../interfaces/ClientMetadata.md#client_secret). |
6363
| `clientAuthentication`? | [`ClientAuth`](../type-aliases/ClientAuth.md) | Implementation of the Client's Authentication Method at the Authorization Server. |
6464

6565
#### Returns

docs/functions/TlsClientAuth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Support from the community to continue maintaining and improving this module is
1111
**`tls_client_auth`** uses the HTTP request body to send only `client_id` as
1212
`application/x-www-form-urlencoded` body parameter and the mTLS key and
1313
certificate is configured through
14-
[ClientMetadata.use_mtls_endpoint_aliases](../interfaces/ClientMetadata.md#use_mtls_endpoint_aliases) and [customFetch](../variables/customFetch.md).
14+
[ClientMetadata.use\_mtls\_endpoint\_aliases](../interfaces/ClientMetadata.md#use_mtls_endpoint_aliases) and [customFetch](../variables/customFetch.md).
1515

1616
## Returns
1717

docs/functions/buildAuthorizationUrl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ must be configured.
2020
| Parameter | Type | Description |
2121
| ------ | ------ | ------ |
2222
| `config` | [`Configuration`](../classes/Configuration.md) | - |
23-
| `parameters` | [`Record`](https://www.typescriptlang.org/docs/handbook/utility-types.html#recordkeys-type)\<`string`, `string`\> \| [`URLSearchParams`](https://developer.mozilla.org/docs/Web/API/URLSearchParams) | Authorization request parameters that will be sent to PAR |
23+
| `parameters` | [`Record`](https://www.typescriptlang.org/docs/handbook/utility-types.html#recordkeys-type)\<`string`, `string`\> \| [`URLSearchParams`](https://developer.mozilla.org/docs/Web/API/URLSearchParams) | Authorization request parameters that will be encoded in the querystring of the URL |
2424

2525
## Returns
2626

docs/functions/discovery.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ NOT RECOMMENDED as it disables the [ServerMetadata.issuer](../interfaces/ServerM
3131
| ------ | ------ | ------ |
3232
| `server` | [`URL`](https://developer.mozilla.org/docs/Web/API/URL) | URL representation of the Authorization Server's Issuer Identifier |
3333
| `clientId` | `string` | Client Identifier at the Authorization Server |
34-
| `metadata`? | `string` \| [`Partial`](https://www.typescriptlang.org/docs/handbook/utility-types.html#partialtype)\<[`ClientMetadata`](../interfaces/ClientMetadata.md)\> | Client Metadata, when a string is passed in it is a shorthand for passing just [ClientMetadata.client_secret](../interfaces/ClientMetadata.md#client_secret) |
34+
| `metadata`? | `string` \| [`Partial`](https://www.typescriptlang.org/docs/handbook/utility-types.html#partialtype)\<[`ClientMetadata`](../interfaces/ClientMetadata.md)\> | Client Metadata, when a string is passed in it is a shorthand for passing just [ClientMetadata.client\_secret](../interfaces/ClientMetadata.md#client_secret) |
3535
| `clientAuthentication`? | [`ClientAuth`](../type-aliases/ClientAuth.md) | - |
3636
| `options`? | [`DiscoveryRequestOptions`](../interfaces/DiscoveryRequestOptions.md) | |
3737

docs/functions/enableNonRepudiationChecks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Support from the community to continue maintaining and improving this module is
99
**enableNonRepudiationChecks**(`config`): `void`
1010

1111
Enables validating the JWS Signature of either a JWT [Response.body](https://developer.mozilla.org/docs/Web/API/Response/body) or
12-
[TokenEndpointResponse.id_token](../interfaces/TokenEndpointResponse.md#id_token) of a processed [Response](https://developer.mozilla.org/docs/Web/API/Response) such as
12+
[TokenEndpointResponse.id\_token](../interfaces/TokenEndpointResponse.md#id_token) of a processed [Response](https://developer.mozilla.org/docs/Web/API/Response) such as
1313
JWT UserInfo or JWT Introspection responses.
1414

1515
Note: Validating signatures of JWTs received via direct communication between

docs/functions/getDPoPHandle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ negotiating and proving proof-of-possession to sender-constrain OAuth 2.0
1313
tokens via [DPoP](https://www.rfc-editor.org/rfc/rfc9449.html) at the Authorization Server and Resource Server.
1414

1515
Support for [DPoP](https://www.rfc-editor.org/rfc/rfc9449.html) at the authorization is indicated by
16-
[ServerMetadata.dpop_signing_alg_values_supported](../interfaces/ServerMetadata.md#dpop_signing_alg_values_supported). Whether the
16+
[ServerMetadata.dpop\_signing\_alg\_values\_supported](../interfaces/ServerMetadata.md#dpop_signing_alg_values_supported). Whether the
1717
authorization server ends up sender-constraining the access token is at the
1818
server's discretion. When an access token is sender-constrained then the
1919
resulting
20-
[`token_type` will be `dpop`](../interfaces/TokenEndpointResponse.md#token_type).
20+
[\`token\_type\` will be \`dpop\`](../interfaces/TokenEndpointResponse.md#token_type).
2121

2222
This wrapper / handle also keeps track of server-issued nonces, allowing this
2323
module to automatically retry requests with a fresh nonce when the server

docs/interfaces/AuthorizationCodeGrantChecks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ Note: When `expectedNonce` or `maxAge` is used this has no effect.
4545

4646
`optional` **maxAge**: `number`
4747

48-
ID Token [`auth_time`](IDToken.md#auth_time) claim value will be checked
48+
ID Token [\`auth\_time\`](IDToken.md#auth_time) claim value will be checked
4949
to be present and conform to this `maxAge` value. Use of this option is
5050
required if you sent a `max_age` parameter in the authorization request.
51-
Default is [ClientMetadata.default_max_age](ClientMetadata.md#default_max_age) and falls back to not
51+
Default is [ClientMetadata.default\_max\_age](ClientMetadata.md#default_max_age) and falls back to not
5252
checking the claim's value beyond it being a number when present.
5353

5454
***

docs/interfaces/AuthorizationDetails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Support from the community to continue maintaining and improving this module is
88

99
## Indexable
1010

11-
\[`parameter`: `string`\]: `undefined` \| [`JsonValue`](../type-aliases/JsonValue.md)
11+
\[`parameter`: `string`\]: `undefined` \| [`JsonValue`](../type-aliases/JsonValue.md)
1212

1313
## Properties
1414

docs/interfaces/ClientMetadata.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ that has an effect on how the Client functions
1212

1313
## Indexable
1414

15-
\[`metadata`: `string`\]: `undefined` \| [`JsonValue`](../type-aliases/JsonValue.md)
15+
\[`metadata`: `string`\]: `undefined` \| [`JsonValue`](../type-aliases/JsonValue.md)
1616

1717
## Properties
1818

@@ -46,7 +46,7 @@ See [clockTolerance](../variables/clockTolerance.md).
4646

4747
JWS `alg` algorithm required for signing authorization responses. When not configured the
4848
default is to allow only algorithms listed in
49-
[`as.authorization_signing_alg_values_supported`](ServerMetadata.md#authorization_signing_alg_values_supported)
49+
[\`as.authorization\_signing\_alg\_values\_supported\`](ServerMetadata.md#authorization_signing_alg_values_supported)
5050
and fall back to `RS256` when the authorization server metadata is not set.
5151

5252
***
@@ -73,7 +73,7 @@ Default Maximum Authentication Age.
7373

7474
JWS `alg` algorithm required for signing the ID Token issued to this Client. When not
7575
configured the default is to allow only algorithms listed in
76-
[`as.id_token_signing_alg_values_supported`](ServerMetadata.md#id_token_signing_alg_values_supported)
76+
[\`as.id\_token\_signing\_alg\_values\_supported\`](ServerMetadata.md#id_token_signing_alg_values_supported)
7777
and fall back to `RS256` when the authorization server metadata is not set.
7878

7979
***
@@ -84,7 +84,7 @@ and fall back to `RS256` when the authorization server metadata is not set.
8484

8585
JWS `alg` algorithm REQUIRED for signed introspection responses. When not configured the
8686
default is to allow only algorithms listed in
87-
[`as.introspection_signing_alg_values_supported`](ServerMetadata.md#introspection_signing_alg_values_supported)
87+
[\`as.introspection\_signing\_alg\_values\_supported\`](ServerMetadata.md#introspection_signing_alg_values_supported)
8888
and fall back to `RS256` when the authorization server metadata is not set.
8989

9090
***
@@ -93,7 +93,7 @@ and fall back to `RS256` when the authorization server metadata is not set.
9393

9494
`optional` **require\_auth\_time**: `boolean`
9595

96-
Boolean value specifying whether the [`auth_time`](IDToken.md#auth_time) Claim in the ID Token
96+
Boolean value specifying whether the [\`auth\_time\`](IDToken.md#auth_time) Claim in the ID Token
9797
is REQUIRED. Default is `false`.
9898

9999
***
@@ -160,5 +160,5 @@ config[client.customFetch] = (...args) =>
160160

161161
JWS `alg` algorithm REQUIRED for signing UserInfo Responses. When not configured the default is
162162
to allow only algorithms listed in
163-
[`as.userinfo_signing_alg_values_supported`](ServerMetadata.md#userinfo_signing_alg_values_supported)
163+
[\`as.userinfo\_signing\_alg\_values\_supported\`](ServerMetadata.md#userinfo_signing_alg_values_supported)
164164
and fail otherwise.

0 commit comments

Comments
 (0)