Hello all, I’m reviewing some logic in our SCIMple implementation and am curious what is expected for the `update` and `patch` implementations when the client attempts to update a resource that does not exist (or is marked as `deleted`).
If I recall correctly, SCIMple used to do a `get(id)` behind the scenes to find the user or not, but this was removed when `update` and `patch` were split out. If SCIMple does not handle this behind the scenes, what should be returned from the update and patch methods to let the client know that the resource does not exist? Currently, it expects the resource, such as a `ScimUser`. Thanks!
