chore: fix federated credentials type error

This commit is contained in:
Kyle Mendell
2025-07-24 20:22:34 -05:00
parent f3c6521f2b
commit 56ee7d946f

View File

@@ -10,7 +10,7 @@ export type OidcClientFederatedIdentity = {
issuer: string;
subject?: string;
audience?: string;
jwks: string | undefined;
jwks?: string | undefined;
};
export type OidcClientCredentials = {