diff --git a/pkg/fusionauth/Client.go b/pkg/fusionauth/Client.go index 492a23b..e1a088f 100644 --- a/pkg/fusionauth/Client.go +++ b/pkg/fusionauth/Client.go @@ -1,5 +1,5 @@ /* -* Copyright (c) 2019-2025, FusionAuth, All Rights Reserved +* Copyright (c) 2019-2026, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/pkg/fusionauth/Domain.go b/pkg/fusionauth/Domain.go index 6e2dc4e..c544e35 100644 --- a/pkg/fusionauth/Domain.go +++ b/pkg/fusionauth/Domain.go @@ -1,5 +1,5 @@ /* -* Copyright (c) 2019-2025, FusionAuth, All Rights Reserved +* Copyright (c) 2019-2026, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -4762,6 +4762,7 @@ const ( OAuthErrorType_AuthorizationPending OAuthErrorType = "authorization_pending" OAuthErrorType_ExpiredToken OAuthErrorType = "expired_token" OAuthErrorType_UnsupportedTokenType OAuthErrorType = "unsupported_token_type" + OAuthErrorType_InvalidDpopProof OAuthErrorType = "invalid_dpop_proof" ) /** @@ -6717,6 +6718,7 @@ type TimeBasedDeletePolicy struct { * * Draft RFC on OAuth 2.0 Message Authentication Code (MAC) Tokens * + *
  • DPoP Token type as defined by
  • * * * @author Daniel DeGroff @@ -6730,6 +6732,7 @@ func (e TokenType) String() string { const ( TokenType_Bearer TokenType = "Bearer" TokenType_MAC TokenType = "MAC" + TokenType_DPoP TokenType = "DPoP" ) /** diff --git a/pkg/fusionauth/Domain_dynamic_test.go b/pkg/fusionauth/Domain_dynamic_test.go index 1e843ee..e31c73c 100644 --- a/pkg/fusionauth/Domain_dynamic_test.go +++ b/pkg/fusionauth/Domain_dynamic_test.go @@ -1,5 +1,5 @@ /* -* Copyright (c) 2019-2025, FusionAuth, All Rights Reserved +* Copyright (c) 2019-2026, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.