These changes prevent sending the orderBy query parameter in remaining search helpers if an empty string is provided (currently triggering an issue with the API).
They also correct what appears to be a typo on the RetrieveMetricMetadataResponseModel struct that occurred during the OpenAPI-based helper generation. As far as I can tell this field has never been named "result" in the product. This includes a potential breaking change by updating the Result field name to Results to match the other models and response. I opted for this change to meet the signatures of the other result models and since it's not been functional I'm not sure how breaking it can actually be considered.
These changes prevent sending the
orderBy
query parameter in remaining search helpers if an empty string is provided (currently triggering an issue with the API).They also correct what appears to be a typo on the
RetrieveMetricMetadataResponseModel
struct that occurred during the OpenAPI-based helper generation. As far as I can tell this field has never been named "result" in the product. This includes a potential breaking change by updating theResult
field name toResults
to match the other models and response. I opted for this change to meet the signatures of the other result models and since it's not been functional I'm not sure how breaking it can actually be considered.