From c13d4676e4e289b1dca02b0c1d4b51abff8c9cc5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Feb 2026 11:40:12 +0000 Subject: [PATCH 1/3] Initial plan From e1ed0ebb23b43a10f5b64a0a81243601f40b8083 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Feb 2026 11:43:25 +0000 Subject: [PATCH 2/3] Add UnmetAuthenticationRequirements error constant Co-authored-by: kevinchalet <6998306+kevinchalet@users.noreply.github.com> --- src/OpenIddict.Abstractions/OpenIddictConstants.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/OpenIddict.Abstractions/OpenIddictConstants.cs b/src/OpenIddict.Abstractions/OpenIddictConstants.cs index db113429b..5628d1457 100644 --- a/src/OpenIddict.Abstractions/OpenIddictConstants.cs +++ b/src/OpenIddict.Abstractions/OpenIddictConstants.cs @@ -245,6 +245,7 @@ public static class Errors public const string UnsupportedGrantType = "unsupported_grant_type"; public const string UnsupportedResponseType = "unsupported_response_type"; public const string UnsupportedTokenType = "unsupported_token_type"; + public const string UnmetAuthenticationRequirements = "unmet_authentication_requirements"; } public static class GrantTypes From a2d40bb1ccae117d14a9b328d0881c40d8e87d97 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Feb 2026 11:44:04 +0000 Subject: [PATCH 3/3] Fix alphabetical ordering of UnmetAuthenticationRequirements constant Co-authored-by: kevinchalet <6998306+kevinchalet@users.noreply.github.com> --- src/OpenIddict.Abstractions/OpenIddictConstants.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OpenIddict.Abstractions/OpenIddictConstants.cs b/src/OpenIddict.Abstractions/OpenIddictConstants.cs index 5628d1457..9f6401c70 100644 --- a/src/OpenIddict.Abstractions/OpenIddictConstants.cs +++ b/src/OpenIddict.Abstractions/OpenIddictConstants.cs @@ -242,10 +242,10 @@ public static class Errors public const string SlowDown = "slow_down"; public const string TemporarilyUnavailable = "temporarily_unavailable"; public const string UnauthorizedClient = "unauthorized_client"; + public const string UnmetAuthenticationRequirements = "unmet_authentication_requirements"; public const string UnsupportedGrantType = "unsupported_grant_type"; public const string UnsupportedResponseType = "unsupported_response_type"; public const string UnsupportedTokenType = "unsupported_token_type"; - public const string UnmetAuthenticationRequirements = "unmet_authentication_requirements"; } public static class GrantTypes