( partition: string, clientId: string, tokenEndpoint: string, )
| 98 | // --------------------------------------------------------------------------- |
| 99 | |
| 100 | export const oauthClientDedupKey = ( |
| 101 | partition: string, |
| 102 | clientId: string, |
| 103 | tokenEndpoint: string, |
| 104 | ): string => `${partition} ${clientId} ${tokenEndpoint}`; |
| 105 | |
| 106 | // --------------------------------------------------------------------------- |
| 107 | // OAuth scope serialization — v1 `provider_state.scopes` is a JSON array; |
no outgoing calls
no test coverage detected