## Bug Report ### Current behavior I can use neither `merge` nor `setValue` to unset a property in the CLI config when running in daemon mode. Let assume I have the following state that is loaded by the `ArduinoCoreClient`, and I want to unset `proxy`. ```json { "foo": "bar", "proxy": "http://blabla" } ```` I tried to update the CLI state with the followings: ```json { "network": { "proxy": undefined } } ``` ```json { "network": { } } ``` Neither `merge` nor `setValue` worked. ### Expected behavior I can unset a value. ### Environment - CLI version (output of `arduino-cli version`): 0.15.0-rc1 - OS and platform: ### Additional context <!-- (Optional) Add any other context about the problem here. --> This feature is required by https://github.com/arduino/arduino-pro-ide/issues/410