This commit is contained in:
mertalev
2025-05-19 15:20:18 -04:00
parent f16bdb2a01
commit f5d9bebd84
7 changed files with 272 additions and 0 deletions
+75
View File
@@ -2732,6 +2732,66 @@
]
}
},
"/duplicates/bulk/deduplicate": {
"post": {
"operationId": "deduplicateAll",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DeduplicateAllDto"
}
}
},
"required": true
},
"responses": {
"201": {
"description": ""
}
},
"security": [
{
"bearer": []
},
{
"cookie": []
},
{
"api_key": []
}
],
"tags": [
"Duplicates"
]
}
},
"/duplicates/bulk/keep": {
"post": {
"operationId": "keepAll",
"parameters": [],
"responses": {
"201": {
"description": ""
}
},
"security": [
{
"bearer": []
},
{
"cookie": []
},
{
"api_key": []
}
],
"tags": [
"Duplicates"
]
}
},
"/faces": {
"get": {
"operationId": "getFaces",
@@ -9655,6 +9715,21 @@
],
"type": "object"
},
"DeduplicateAllDto": {
"properties": {
"assetIdsToKeep": {
"items": {
"format": "uuid",
"type": "string"
},
"type": "array"
}
},
"required": [
"assetIdsToKeep"
],
"type": "object"
},
"DownloadArchiveInfo": {
"properties": {
"assetIds": {