(authCode: string)
| 113 | } |
| 114 | |
| 115 | export function parseAuthCode(authCode: string): { |
| 116 | fingerprintId: string |
| 117 | expiresAt: string |
| 118 | receivedHash: string |
| 119 | } { |
| 120 | return parseCliAuthCodeShape(authCode) |
| 121 | } |
| 122 | |
| 123 | export function validateAuthCode( |
| 124 | receivedHash: string, |
no test coverage detected