We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide a general summary of the issue in the Title above
Perform should pass
Profile defines input field units enum {C, F, K} (optional enum, can be null) but when you specify units as null during perform call:
await profile .getUseCase('GetCurrentWeatherInCity') .perform({ city: null, units: null }, { provider: 'wttr-in' });
SDK throws error:
InputValidationError { kind: 'InputValidationError', message: 'Input validation failed:\nPath: input.units\nError: Invalid enum value: null', errors: [ { kind: 'enumValue', context: [Object] } ], name: 'InputValidationError' }
Not obligatory, but suggest a fix/reason for the bug
Provide a link to a live example, or an unambiguous set of steps to reproduce this bug. Include code to reproduce, if relevant
Include as many relevant details about the environment you experienced the bug in. Preferably include:
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Provide a general summary of the issue in the Title above
Expected Behavior
Perform should pass
Current Behavior
Profile defines input field units enum {C, F, K} (optional enum, can be null) but when you specify units as null during perform call:
SDK throws error:
Possible Solution
Not obligatory, but suggest a fix/reason for the bug
Steps to Reproduce
Provide a link to a live example, or an unambiguous set of steps to reproduce this bug. Include code to reproduce, if relevant
Your Environment
Include as many relevant details about the environment you experienced the bug in. Preferably include:
The text was updated successfully, but these errors were encountered: