(req: LoginCodeRequest)
| 501 | }, |
| 502 | |
| 503 | loginCode(req: LoginCodeRequest): Promise<ApiResponse<LoginCodeResponse>> { |
| 504 | return request<LoginCodeResponse>( |
| 505 | 'POST', |
| 506 | '/api/auth/cli/code', |
| 507 | { fingerprintId: req.fingerprintId }, |
| 508 | { includeAuth: false }, |
| 509 | ) |
| 510 | }, |
| 511 | |
| 512 | loginStatus( |
| 513 | req: LoginStatusRequest, |