Private/Refresh-JwtToken.ps1

<#
.SYNOPSIS
Refresh an expired JWT session token.
 
.DESCRIPTION
Placeholder for JWT token refresh logic. Currently not implemented; removes the existing session and warns the user.
 
.EXAMPLE
PS> Refresh-JwtToken
Warns that refresh is not implemented and clears the session.
#>

function Refresh-JwtToken {
    Write-Warning "Refresh JWT is not implemented yet. Removing session..."

    # $DuneSession.Token = ...
}