(providerType: string)
| 28 | type SupportedProviderType = (typeof SUPPORTED_PROVIDERS)[number]; |
| 29 | |
| 30 | const isSupportedProvider = (providerType: string): providerType is SupportedProviderType => |
| 31 | SUPPORTED_PROVIDERS.includes(providerType as SupportedProviderType); |
| 32 | |
| 33 | // @see: https://datatracker.ietf.org/doc/html/rfc6749#section-5.1 |
| 34 | const OAuthTokenResponseSchema = z.object({ |
no outgoing calls
no test coverage detected