You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it should be values: Partial<M>. That way we could be confident that if we change a parameter in any model, we would see the error, since the value would only accept values present in the model.
The text was updated successfully, but these errors were encountered:
The first parameter for update is
values: object
, where anything can be passed as a parameter, as in the line:sequelize/lib/model.d.ts
Line 1907 in 69b371d
I think it should be
values: Partial<M>
. That way we could be confident that if we change a parameter in any model, we would see the error, since the value would only accept values present in the model.The text was updated successfully, but these errors were encountered: