-
Notifications
You must be signed in to change notification settings - Fork 180
New issue
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
fix: fix output type for mutate and get payload #394
Conversation
The committers listed above are authorized under a signed CLA. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
@benjie would it be possible for you to take a look? |
this is breaking for everybody |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm unfamiliar with this code, however I note from the description:
* mutateAndGetPayload will receive an Object with a key for each
* input field, and it should return an Object with a key for each
* output field. It may return synchronously, or return a Promise.
Currently the type doesn't allow for a promise, so if this is permitted as the comment implies then the types should allow for it.
I'm unsure what the knock-on consequences of this change will be, and if it needs a semver major release.
I would go with a patch or minor Won’t break for existing use cases |
In case, I would say that doesn't have any side implication of this type definition. It just allows us to handle the 1: mutateAndGetPayload: () => {
// ...
} 2: mutateAndGetPayload: async () => {
// ...
} Which is already allowed before, but by the PR we're inserted the generic types, have been strictly removed. |
I've published this as |
No description provided.