The internal Client class seems to have two optional parameters baseParams? and requestHeaders?. The public API of SearchApplicationClient requires params to be present. As they're not checked if they're present and the underyling client doesn't require params I guess it makes more sense to adapt the params to be optional as this feels a bit inconvenient when using the client, but maybe I've got something wrong here.
I've also added missing tests for the SearchApplicationClient with this PR.
The internal
Client
class seems to have two optional parametersbaseParams?
andrequestHeaders?
. The public API ofSearchApplicationClient
requiresparams
to be present. As they're not checked if they're present and the underyling client doesn't require params I guess it makes more sense to adapt theparams
to be optional as this feels a bit inconvenient when using the client, but maybe I've got something wrong here.I've also added missing tests for the
SearchApplicationClient
with this PR.