Currently, we get information about the list of computedProperties for a given file, it would be great to have some more info regarding the dependentKeys for that particular computed property.
Proposal:
We can have the computedProperties to be an array of objects:
{
"computedProperties": [
{
"propertyName": "fullName",
"dependentKeys": [
"firstName",
"lastName"
]
}
]
}
OR
as a map
{
"computedProperties": {
"fullName": [
"firstName",
"lastName"
]
}
}
Currently, we get information about the list of
computedPropertiesfor a given file, it would be great to have some more info regarding thedependentKeysfor that particular computed property.Proposal:
We can have the
computedPropertiesto be an array of objects:OR
as a map