3.68.0
(feat): Add alwaysSendAuth config option that forces the generated SDK to include
auth headers on all endpoints, even those marked with auth: false in the
API definition. This is useful when using the same API definition for both
server (where auth is handled by a gateway) and client SDK generation.
3.67.0
(feat): Add retryStatusCodes generator config option with legacy and recommended modes.
legacy (default) preserves current behavior (retries 408, 429, and all 5xx).
recommended retries only 408, 429, 502, 503, and 504, avoiding idempotency
issues with non-transient server errors like 500.