We've added two new endpoints for updating projects, providing more idiomatic semantics aligned with HTTP conventions:
PUT /v1/projects/{projectId}fully replaces a project's settings. Fields that are not provided are reset to their defaults.PATCH /v1/projects/{projectId}only updates the fields included in the request, leaving any other settings untouched.
The existing POST /v1/projects/{projectId} endpoint is now deprecated. It will continue to work, but we recommend migrating to PUT for full replacement or PATCH for partial updates.
