(
req: LoginStatusRequest,
)
| 510 | }, |
| 511 | |
| 512 | loginStatus( |
| 513 | req: LoginStatusRequest, |
| 514 | ): Promise<ApiResponse<LoginStatusResponse>> { |
| 515 | return request<LoginStatusResponse>('GET', '/api/auth/cli/status', undefined, { |
| 516 | query: { |
| 517 | fingerprintId: req.fingerprintId, |
| 518 | fingerprintHash: req.fingerprintHash, |
| 519 | expiresAt: req.expiresAt, |
| 520 | }, |
| 521 | includeAuth: false, |
| 522 | }) |
| 523 | }, |
| 524 | |
| 525 | publish( |
| 526 | data: Record<string, unknown>[], |