(accessToken: string, jwks: CachedRemoteJWKSet)
| 200 | })(); |
| 201 | |
| 202 | const verifyJwtOnce = (accessToken: string, jwks: CachedRemoteJWKSet) => |
| 203 | Effect.tryPromise({ |
| 204 | try: () => jwtVerify(accessToken, jwks, workosAccessTokenOptions), |
| 205 | catch: (cause) => new ServiceAdapterError({ cause }), |
| 206 | }); |
| 207 | |
| 208 | const verifyJwtWithRefreshRetry = ( |
| 209 | accessToken: string, |
no outgoing calls
no test coverage detected