Node-red-contrib-zwave-js values

Hi Marcus,

Last thing, can I add multiple ValudIDs to a query? It seems to be an array but if I add multiple ValueIDs only the first is processed.

let ValueID1 = {
    "commandClassName": "Multilevel Sensor",
    "commandClass": 49,
    "endpoint": 0,
    "property": "Air temperature",
    "propertyName": "Air temperature"
  }
 let ValueID2 = {
    "commandClassName": "Multilevel Sensor",
    "commandClass": 49,
    "endpoint": 0,
    "property": "Illuminance",
    "propertyName": "Illuminance"
  }
 let ValueID3 = {
    "commandClassName": "Multilevel Sensor",
    "commandClass": 49,
    "endpoint": 0,
    "property": "Moisture",
    "propertyName": "Moisture"
  }

let Message = {
 payload: {
 mode: "ValueAPI",
 node: 2,
 method: "getValue",
 params: [ValueID1, ValueID2, ValueID3]
 }
}
return Message

Is this by design?
Best regards,