chore(server): remove unused method (#4627)

* chore(server): remove unused method

* chore: open api
This commit is contained in:
Jason Rasmussen
2023-10-24 12:59:06 -04:00
committed by GitHub
parent 5921ec9a58
commit 3021eca8e5
20 changed files with 0 additions and 869 deletions

View File

@@ -927,58 +927,6 @@
]
}
},
"/asset/check": {
"post": {
"description": "Check duplicated asset before uploading - for Web upload used",
"operationId": "checkDuplicateAsset",
"parameters": [
{
"name": "key",
"required": false,
"in": "query",
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CheckDuplicateAssetDto"
}
}
},
"required": true
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CheckDuplicateAssetResponseDto"
}
}
},
"description": ""
}
},
"security": [
{
"bearer": []
},
{
"cookie": []
},
{
"api_key": []
}
],
"tags": [
"Asset"
]
}
},
"/asset/curated-locations": {
"get": {
"operationId": "getCuratedLocations",
@@ -6269,35 +6217,6 @@
],
"type": "object"
},
"CheckDuplicateAssetDto": {
"properties": {
"deviceAssetId": {
"type": "string"
},
"deviceId": {
"type": "string"
}
},
"required": [
"deviceAssetId",
"deviceId"
],
"type": "object"
},
"CheckDuplicateAssetResponseDto": {
"properties": {
"id": {
"type": "string"
},
"isExist": {
"type": "boolean"
}
},
"required": [
"isExist"
],
"type": "object"
},
"CheckExistingAssetsDto": {
"properties": {
"deviceAssetIds": {