fear(bar): add storage_display_name option

This commit is contained in:
1337cookie
2025-08-01 13:53:11 +12:00
committed by LGUG2Z
parent 41fc316a59
commit c84fa50fc9
2 changed files with 66 additions and 1 deletions

View File

@@ -8289,12 +8289,47 @@
"null"
],
"default": true
},
"storage_display_name": {
"description": "Storage display name",
"anyOf": [
{
"$ref": "#/$defs/StorageDisplayName"
},
{
"type": "null"
}
]
}
},
"required": [
"enable"
]
},
"StorageDisplayName": {
"oneOf": [
{
"description": "Display label as mount point eg. C:\\",
"type": "string",
"const": "Mount"
},
{
"description": "Display label as name eg. Local Disk",
"type": "string",
"const": "Name"
},
{
"description": "Display label as mount then name eg. C:\\ Local Disk",
"type": "string",
"const": "MountAndName"
},
{
"description": "Display label as name then mount eg. Local Disk C:\\",
"type": "string",
"const": "NameAndMount"
}
]
},
"SubscribeOptions": {
"type": "object",
"properties": {