Smartthings set clock capability

It is possible to set the clock on a Smartthings oven using a bash script to call the currentTime capability. This uses a PAT which is now limited to 24h. This means we have to update the PAT every day, which is inconvenient to say the least! This functionality is really useful when you have 2 ovens in the same kitchen (say oven+oven/microwave) as the clocks drift within a couple of days so each appliance can be out of sync by a few minutes.

The current script does the following:

curl \
    "https://api.smartthings.com/v1/devices/[DEVICE_ID]/commands" \
    -v --no-progress-meter \
    -A "Mozilla" \
    -H "Authorization: Bearer [PERSONAL_ACCESS_TOKEN]" \
    --header "Content-Type: application/json" \
    --data '{"commands":[{"component":"main","capability":"execute","command":"execute","arguments":["/configuration/vs/0",{"x.com.samsung.da.currentTime":"'"$NOW"'"}]}]}'

This feature request is to ask if clock control could be implemented in the latest Smartthings integration.