3.39.2
(fix): Fix reference.md generation for APIs with multiple root-level endpoints.
Previously, only the last root endpoint appeared in the reference documentation because addRootSection() was called inside the endpoint loop, replacing the root section each time.
The fix moves section creation before the endpoint loop, ensuring all root endpoints are included and removing the empty ## section header that was being generated.
3.39.1
(fix): Fix wire tests for paginated endpoints to expect an empty array [] instead of undefined when response.data is not present.
This aligns with the paginator’s behavior which uses ?? [] to return an empty array when the data property is undefined.