2.68.4
(fix): Fix argument ordering for endpoints that have both a request body and a path parameter with a
client default. Such path parameters are optional in the generated method signature and are placed
after the request body, so the generated snippets, wire tests, and dynamic snippets now order their
arguments to match (placing required path parameters before the body and optional ones after, and
using named arguments in dynamic snippets where ordering is otherwise ambiguous).
2.68.3
(fix): Fixed C# generation failures for APIs that declare a model type named Test.
The generated test project no longer emits a {Namespace}.Test namespace that
collides with the model type, so serialization tests compile. Also taught the
OneOf equality comparer to treat undiscriminated-union string-enum members with
the same wire value as equal, since the concrete member type is not recoverable
when deserializing.