Graphorin API reference v0.1.0
Graphorin API reference / @graphorin/security / / OAuthRegistration
Interface: OAuthRegistration
Defined in: packages/security/src/oauth/types.ts:104
Pre-registered OAuth client identifier and (optional) confidential client secret. Skipping this triggers Dynamic Client Registration the first time the client opens an authorization flow.
Stable
Properties
| Property | Modifier | Type | Description | Defined in |
|---|---|---|---|---|
clientId | readonly | string | - | packages/security/src/oauth/types.ts:105 |
clientName? | readonly | string | Human-readable name passed to the registration endpoint. | packages/security/src/oauth/types.ts:111 |
clientSecret? | readonly | SecretValue | Confidential clients only. | packages/security/src/oauth/types.ts:107 |
registeredVia? | readonly | "dcr" | "manual" | Set to 'dcr' when the registration was produced by RFC 7591. | packages/security/src/oauth/types.ts:109 |