-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGE: SDK naming has changed for the following operations: ```patch ory. - V0alpha2Api.AdminRevokeOAuth2ConsentSessions(cmd.Context()). + OAuth2Api.RevokeOAuth2ConsentSessions(context.Background()). Client(clientId).Execute() ory. - V0alpha2Api.AdminListOAuth2SubjectConsentSessions(cmd.Context(), id). + OAuth2Api.RevokeOAuth2ConsentSessions(context.Background()). Client(clientId).Execute() ory. - V0alpha2Api.AdminListOAuth2SubjectConsentSessions(context.Background()). + OAuth2Api.ListOAuth2ConsentSessions(context.Background()). Subject(subjectId).Execute() ory. - V0alpha2Api.AdminRevokeOAuth2LoginSessions(context.Background()). + OAuth2Api.RevokeOAuth2LoginSessions(context.Background()). Subject(subjectId).Execute() ory. - V0alpha2Api.AdminGetOAuth2LoginRequest(context.Background()). + OAuth2Api.GetOAuth2LoginRequest(context.Background()). LoginChallenge(challenge).Execute() ory. - V0alpha2Api.AdminAcceptOAuth2LoginRequest(context.Background()). + OAuth2Api.AcceptOAuth2LoginRequest(context.Background()). AcceptOAuth2LoginRequest(body). LoginChallenge(challenge).Execute() ory. - V0alpha2Api.AdminRejectOAuth2LoginRequest(context.Background()). + OAuth2Api.RejectOAuth2LoginRequest(context.Background()). RejectOAuth2Request(body). LoginChallenge(challenge).Execute() ory. - V0alpha2Api.AdminGetOAuth2ConsentRequest(context.Background()). + OAuth2Api.GetOAuth2ConsentRequest(context.Background()). ConsentChallenge(challenge).Execute() ory. - V0alpha2Api.AdminAcceptOAuth2ConsentRequest(context.Background()). + OAuth2Api.AcceptOAuth2ConsentRequest(context.Background()). AcceptOAuth2ConsentRequest(body). ConsentChallenge(challenge).Execute() ory. - V0alpha2Api.AdminRejectOAuth2ConsentRequest(context.Background()). + OAuth2Api.RejectOAuth2ConsentRequest(context.Background()). RejectOAuth2Request(). ConsentChallenge(challenge).Execute() ory. - V0alpha2Api.AdminAcceptOAuth2LogoutRequest(context.Background()). + OAuth2Api.AcceptOAuth2LogoutRequest(context.Background()). LogoutChallenge(challenge). Execute() ory. - V0alpha2Api.AdminRejectOAuth2LogoutRequest(context.Background()). + OAuth2Api.RejectOAuth2LogoutRequest(context.Background()). LogoutChallenge(challenge). Execute() ory. V0alpha2Api.AdminGetOAuth2LogoutRequest(context.Background()). + OAuth2Api.GetOAuth2LogoutRequest(context.Background()). LogoutChallenge(challenge). Execute() - var AlreadyHandledError HandledOAuth2LoginRequest + var AlreadyHandledError ErrorOAuth2LoginRequestAlreadyHandled - var AlreadyHandledError HandledOAuth2LoginRequest + var AlreadyHandledError ErrorOAuth2ConsentRequestAlreadyHandled - var OAuth2SuccessResponse SuccessfulOAuth2RequestResponse + var OAuth2SuccessResponse OAuth2RedirectTo ```
- Loading branch information
Showing
45 changed files
with
5,101 additions
and
6,542 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7188,7 +7188,7 @@ Signed-off-by: Michael DeRazon <[email protected]> Signed-off-by: arekkas | |
- Add flags for newly introduced oidc client settings | ||
([c4b902d](https://github.com/ory/hydra/commit/c4b902d8f86fa4ef03704fc16d17e921e5710e61)), | ||
closes [#938](https://github.com/ory/hydra/issues/938) | ||
- Add ListUserConsentSessions to OAuth2API interface | ||
- Add ListUserConsentSessions to.OAuth2Api.interface | ||
([#977](https://github.com/ory/hydra/issues/977)) | ||
([1bd8ab7](https://github.com/ory/hydra/commit/1bd8ab7d6bfe224e33f700959416b5c5e726bdbc)) | ||
- Add logout api endpoint ([#984](https://github.com/ory/hydra/issues/984)) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,7 @@ To delete OAuth 2.0 Clients with the owner of "[email protected]", run: | |
) | ||
|
||
for _, c := range args { | ||
_, err := m.Oauth2Api.DeleteOAuth2Client(cmd.Context(), c).Execute() //nolint:bodyclose | ||
_, err := m.OAuth2Api.DeleteOAuth2Client(cmd.Context(), c).Execute() //nolint:bodyclose | ||
if err != nil { | ||
failed[c] = cmdx.PrintOpenAPIError(cmd, err) | ||
continue | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.