In [this PR](https://github.com/twentyhq/twenty/pull/14785) we got rid of what we now call ViewFilterOperandDeprecated, a camelCase version of ViewFilterOperand, which we thought we only used in the FE. We did not notice that this enum was used to persist filters used in workflows, reflected in workflowVersion and workflowRun. As a result workflow runs were broken. [In this mitigation PR](https://github.com/twentyhq/twenty/pull/14837) (and [this one](https://github.com/twentyhq/twenty/pull/14841)) we updated the code handle both enum values from ViewFilterOperandDeprecated and ViewFilterOperand, but we still want to get rid of ViewFilterOperandDeprecated. the command in this PR replaces the occurences of enum values of ViewFilterOperandDeprecated. When this has been merged, deployed and run on the workspaces, we will be able to remove ViewFilterOperandDeprecated altogether; that will have to be done in 1.10 though not before.