OnBehalfOfCredentialAuthConfig type
Authentication configuration for OnBehalfOfCredential used in node environment
type OnBehalfOfCredentialAuthConfig = {
authorityHost: string
clientId: string
tenantId: string
} & (
| { certificateContent?: never; clientSecret: string }
| { certificateContent: string; clientSecret?: never }
)