v1.1.0
Added OAuth2 client-credentials support. Pass clientId/clientSecret and the SDK handles the token exchange and refresh automatically:
See the C# SDK guide and Authentication to compare both methods.
Breaking change: API key auth now requires named arguments
Supporting OAuth alongside API key auth added new constructor parameters, which shifts the positional argument order.
Positional calls that relied on apiKey being first and clientOptions being second will break. Use named arguments instead:
Existing integrations using positional arguments need to switch to named arguments.