Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/go_modules/golang.org/x/text-0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
livio-a committed May 6, 2024
2 parents 5e1cfbe + 5a84d8c commit f057d36
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkg/client/rp/relying_party.go
Original file line number Diff line number Diff line change
Expand Up @@ -734,11 +734,11 @@ func (t tokenEndpointCaller) TokenEndpoint() string {

type RefreshTokenRequest struct {
RefreshToken string `schema:"refresh_token"`
Scopes oidc.SpaceDelimitedArray `schema:"scope"`
ClientID string `schema:"client_id"`
ClientSecret string `schema:"client_secret"`
ClientAssertion string `schema:"client_assertion"`
ClientAssertionType string `schema:"client_assertion_type"`
Scopes oidc.SpaceDelimitedArray `schema:"scope,omitempty"`
ClientID string `schema:"client_id,omitempty"`
ClientSecret string `schema:"client_secret,omitempty"`
ClientAssertion string `schema:"client_assertion,omitempty"`
ClientAssertionType string `schema:"client_assertion_type,omitempty"`
GrantType oidc.GrantType `schema:"grant_type"`
}

Expand Down

0 comments on commit f057d36

Please sign in to comment.