| 50 | |
| 51 | /// Data passed in a hidden, signed field when submitting the authorisation form |
| 52 | interface SignInFormData { |
| 53 | purpose: 'authorize', |
| 54 | clientId: string, |
| 55 | scope: string, |
| 56 | redirectUri: string |
| 57 | } |
| 58 | |
| 59 | /// Data passed in the 'code' field when the token is fetched by the client |
| 60 | interface TokenRequestData { |
nothing calls this directly
no outgoing calls
no test coverage detected