Merge branch 'main' into dependabot/go_modules/golang.org/x/text-0.15.0

This commit is contained in:
Livio Spring 2024-05-06 08:41:06 +02:00 committed by GitHub
commit f057d36a5b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -734,11 +734,11 @@ func (t tokenEndpointCaller) TokenEndpoint() string {
type RefreshTokenRequest struct { type RefreshTokenRequest struct {
RefreshToken string `schema:"refresh_token"` RefreshToken string `schema:"refresh_token"`
Scopes oidc.SpaceDelimitedArray `schema:"scope"` Scopes oidc.SpaceDelimitedArray `schema:"scope,omitempty"`
ClientID string `schema:"client_id"` ClientID string `schema:"client_id,omitempty"`
ClientSecret string `schema:"client_secret"` ClientSecret string `schema:"client_secret,omitempty"`
ClientAssertion string `schema:"client_assertion"` ClientAssertion string `schema:"client_assertion,omitempty"`
ClientAssertionType string `schema:"client_assertion_type"` ClientAssertionType string `schema:"client_assertion_type,omitempty"`
GrantType oidc.GrantType `schema:"grant_type"` GrantType oidc.GrantType `schema:"grant_type"`
} }