generate openapi

This commit is contained in:
mgabor
2024-04-12 13:49:06 +02:00
parent 06028a283b
commit 44a086c2f9
12 changed files with 227 additions and 20 deletions

View File

@@ -7065,11 +7065,32 @@
],
"type": "object"
},
"AlbumPermissionResponseDto": {
"properties": {
"readonly": {
"type": "boolean"
},
"user": {
"$ref": "#/components/schemas/UserResponseDto"
}
},
"required": [
"readonly",
"user"
],
"type": "object"
},
"AlbumResponseDto": {
"properties": {
"albumName": {
"type": "string"
},
"albumPermissions": {
"items": {
"$ref": "#/components/schemas/AlbumPermissionResponseDto"
},
"type": "array"
},
"albumThumbnailAssetId": {
"nullable": true,
"type": "string"
@@ -7120,6 +7141,8 @@
"type": "boolean"
},
"sharedUsers": {
"deprecated": true,
"description": "Deprecated in favor of albumPermissions",
"items": {
"$ref": "#/components/schemas/UserResponseDto"
},
@@ -7136,6 +7159,7 @@
},
"required": [
"albumName",
"albumPermissions",
"albumThumbnailAssetId",
"assetCount",
"assets",