Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/fusionauth/Client.go
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 4 additions & 1 deletion pkg/fusionauth/Domain.go
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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"
)

/**
Expand Down Expand Up @@ -6717,6 +6718,7 @@ type TimeBasedDeletePolicy struct {
* <a href="https://tools.ietf.org/html/draft-ietf-oauth-v2-http-mac-05">
* Draft RFC on OAuth 2.0 Message Authentication Code (MAC) Tokens</a>
* </li>
* <li>DPoP Token type as defined by <a href="https://datatracker.ietf.org/doc/html/rfc9449"></li>
* </ul>
*
* @author Daniel DeGroff
Expand All @@ -6730,6 +6732,7 @@ func (e TokenType) String() string {
const (
TokenType_Bearer TokenType = "Bearer"
TokenType_MAC TokenType = "MAC"
TokenType_DPoP TokenType = "DPoP"
)

/**
Expand Down
2 changes: 1 addition & 1 deletion pkg/fusionauth/Domain_dynamic_test.go
Original file line number Diff line number Diff line change
@@ -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.
Expand Down