refactor: ensure detect install is consistently named

This commit is contained in:
izzy
2025-12-03 11:10:33 +00:00
parent f9d2a9707d
commit 305bf60f97
7 changed files with 44 additions and 44 deletions

View File

@@ -613,7 +613,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MaintenanceIntegrityResponseDto"
"$ref": "#/components/schemas/MaintenanceDetectInstallResponseDto"
}
}
},
@@ -17218,11 +17218,11 @@
],
"type": "object"
},
"MaintenanceIntegrityResponseDto": {
"MaintenanceDetectInstallResponseDto": {
"properties": {
"storage": {
"items": {
"$ref": "#/components/schemas/MaintenanceStorageFolderIntegrityDto"
"$ref": "#/components/schemas/MaintenanceDetectInstallStorageFolderDto"
},
"type": "array"
}
@@ -17232,6 +17232,33 @@
],
"type": "object"
},
"MaintenanceDetectInstallStorageFolderDto": {
"properties": {
"files": {
"type": "number"
},
"folder": {
"allOf": [
{
"$ref": "#/components/schemas/StorageFolder"
}
]
},
"readable": {
"type": "boolean"
},
"writable": {
"type": "boolean"
}
},
"required": [
"files",
"folder",
"readable",
"writable"
],
"type": "object"
},
"MaintenanceListBackupsResponseDto": {
"properties": {
"backups": {
@@ -17282,33 +17309,6 @@
],
"type": "object"
},
"MaintenanceStorageFolderIntegrityDto": {
"properties": {
"files": {
"type": "number"
},
"folder": {
"allOf": [
{
"$ref": "#/components/schemas/StorageFolder"
}
]
},
"readable": {
"type": "boolean"
},
"writable": {
"type": "boolean"
}
},
"required": [
"files",
"folder",
"readable",
"writable"
],
"type": "object"
},
"MaintenanceUploadBackupDto": {
"properties": {
"file": {