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