* Introspection response from the OAuth token endpoint.
| 156 | * Introspection response from the OAuth token endpoint. |
| 157 | */ |
| 158 | interface OAuthIntrospectionResponse { |
| 159 | active: boolean; |
| 160 | api_key: string; |
| 161 | scope: string; |
| 162 | client_id: string; |
| 163 | team_id: string; |
| 164 | exp: number; |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * Resolve an OAuth access token (fco_…) to the underlying API key via |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…