Given: ```python d1 = {1: "a", 2: "b"} d2 = {1: "b", 2: "v"} patch = jsonpatch.make_patch(d1, d2) patch.to_string() '[{"value": "b", "op": "replace", "path": "/1"}, {"value": "v", "op": "replace", "path": "/2"}]' ``` How can I get the patch that would have `test` instead of `replace`?