v1.0.13

Added OAuth2 client-credentials support via option.WithClientID/option.WithClientSecret. The SDK handles the token exchange and refresh automatically:

1client := client.NewClient(
2 option.WithClientID("..."),
3 option.WithClientSecret("..."),
4 option.WithBaseURL(sdk.Environments.Sandbox),
5)

The existing option.WithApiKey(...) option function still works unchanged — no action needed if you’re not switching auth methods. See the Go SDK guide and Authentication to compare both methods.