Skip to content

Commit

Permalink
Add OrganizationID field to AuthenticateWithRefreshTokenOpts (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
mthadley authored Aug 7, 2024
1 parent 92918d0 commit eaf7ca6
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkg/usermanagement/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -258,10 +258,11 @@ type AuthenticateWithCodeOpts struct {
}

type AuthenticateWithRefreshTokenOpts struct {
ClientID string `json:"client_id"`
RefreshToken string `json:"refresh_token"`
IPAddress string `json:"ip_address,omitempty"`
UserAgent string `json:"user_agent,omitempty"`
ClientID string `json:"client_id"`
RefreshToken string `json:"refresh_token"`
OrganizationID string `json:"organization_id,omitempty"`
IPAddress string `json:"ip_address,omitempty"`
UserAgent string `json:"user_agent,omitempty"`
}

type AuthenticateWithMagicAuthOpts struct {
Expand Down

0 comments on commit eaf7ca6

Please sign in to comment.