type JWTPayload<Tctx = unknown> = { aud: string; ctx?: Tctx; exp: number; iat: number; iss: string; jti: string; nbf: number; sub: string;};