CLIAuthSessionResponse is the response from POST /auth/cli/sessions.
| 981 | |
| 982 | // CLIAuthSessionResponse is the response from POST /auth/cli/sessions. |
| 983 | type CLIAuthSessionResponse struct { |
| 984 | SessionCode string `json:"session_code"` |
| 985 | AuthURL string `json:"auth_url"` |
| 986 | ExpiresAt string `json:"expires_at"` |
| 987 | } |
| 988 | |
| 989 | // CLIAuthSessionStatus is the response from GET /auth/cli/sessions/{code}. |
| 990 | type CLIAuthSessionStatus struct { |
nothing calls this directly
no outgoing calls
no test coverage detected