mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 06:31:58 +00:00
fix(deps): update dependency @nestjs/swagger to v8 (#13881)
* fix(deps): update dependency @nestjs/swagger to v8 * chore: generate open api --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
This commit is contained in:
parent
b88f98bf66
commit
6b08e82cf7
8 changed files with 263 additions and 64 deletions
BIN
mobile/openapi/README.md
generated
BIN
mobile/openapi/README.md
generated
Binary file not shown.
BIN
mobile/openapi/lib/model/album_user_add_dto.dart
generated
BIN
mobile/openapi/lib/model/album_user_add_dto.dart
generated
Binary file not shown.
BIN
mobile/openapi/lib/model/create_library_dto.dart
generated
BIN
mobile/openapi/lib/model/create_library_dto.dart
generated
Binary file not shown.
BIN
mobile/openapi/lib/model/update_library_dto.dart
generated
BIN
mobile/openapi/lib/model/update_library_dto.dart
generated
Binary file not shown.
BIN
mobile/openapi/lib/model/validate_library_dto.dart
generated
BIN
mobile/openapi/lib/model/validate_library_dto.dart
generated
Binary file not shown.
|
@ -1424,7 +1424,6 @@
|
||||||
},
|
},
|
||||||
"/assets/bulk-upload-check": {
|
"/assets/bulk-upload-check": {
|
||||||
"post": {
|
"post": {
|
||||||
"description": "Checks if assets exist by checksums",
|
|
||||||
"operationId": "checkBulkUpload",
|
"operationId": "checkBulkUpload",
|
||||||
"parameters": [],
|
"parameters": [],
|
||||||
"requestBody": {
|
"requestBody": {
|
||||||
|
@ -1460,6 +1459,7 @@
|
||||||
"api_key": []
|
"api_key": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"summary": "Checks if assets exist by checksums",
|
||||||
"tags": [
|
"tags": [
|
||||||
"Assets"
|
"Assets"
|
||||||
]
|
]
|
||||||
|
@ -1467,7 +1467,6 @@
|
||||||
},
|
},
|
||||||
"/assets/device/{deviceId}": {
|
"/assets/device/{deviceId}": {
|
||||||
"get": {
|
"get": {
|
||||||
"description": "Get all asset of a device that are in the database, ID only.",
|
|
||||||
"operationId": "getAllUserAssetsByDeviceId",
|
"operationId": "getAllUserAssetsByDeviceId",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
|
@ -1505,6 +1504,7 @@
|
||||||
"api_key": []
|
"api_key": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"summary": "Get all asset of a device that are in the database, ID only.",
|
||||||
"tags": [
|
"tags": [
|
||||||
"Assets"
|
"Assets"
|
||||||
]
|
]
|
||||||
|
@ -1512,7 +1512,6 @@
|
||||||
},
|
},
|
||||||
"/assets/exist": {
|
"/assets/exist": {
|
||||||
"post": {
|
"post": {
|
||||||
"description": "Checks if multiple assets exist on the server and returns all existing - used by background backup",
|
|
||||||
"operationId": "checkExistingAssets",
|
"operationId": "checkExistingAssets",
|
||||||
"parameters": [],
|
"parameters": [],
|
||||||
"requestBody": {
|
"requestBody": {
|
||||||
|
@ -1548,6 +1547,7 @@
|
||||||
"api_key": []
|
"api_key": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"summary": "Checks if multiple assets exist on the server and returns all existing - used by background backup",
|
||||||
"tags": [
|
"tags": [
|
||||||
"Assets"
|
"Assets"
|
||||||
]
|
]
|
||||||
|
@ -1903,7 +1903,6 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"put": {
|
"put": {
|
||||||
"description": "Replace the asset with new file, without changing its id",
|
|
||||||
"operationId": "replaceAsset",
|
"operationId": "replaceAsset",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
|
@ -1957,6 +1956,7 @@
|
||||||
"api_key": []
|
"api_key": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"summary": "Replace the asset with new file, without changing its id",
|
||||||
"tags": [
|
"tags": [
|
||||||
"Assets"
|
"Assets"
|
||||||
],
|
],
|
||||||
|
@ -7492,6 +7492,7 @@
|
||||||
"items": {
|
"items": {
|
||||||
"$ref": "#/components/schemas/Permission"
|
"$ref": "#/components/schemas/Permission"
|
||||||
},
|
},
|
||||||
|
"minItems": 1,
|
||||||
"type": "array"
|
"type": "array"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -7572,8 +7573,12 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"type": {
|
"type": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/ReactionType"
|
"$ref": "#/components/schemas/ReactionType"
|
||||||
}
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"albumId",
|
"albumId",
|
||||||
|
@ -7599,7 +7604,11 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"type": {
|
"type": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/ReactionType"
|
"$ref": "#/components/schemas/ReactionType"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"user": {
|
"user": {
|
||||||
"$ref": "#/components/schemas/UserResponseDto"
|
"$ref": "#/components/schemas/UserResponseDto"
|
||||||
|
@ -7631,6 +7640,7 @@
|
||||||
"items": {
|
"items": {
|
||||||
"$ref": "#/components/schemas/AlbumUserAddDto"
|
"$ref": "#/components/schemas/AlbumUserAddDto"
|
||||||
},
|
},
|
||||||
|
"minItems": 1,
|
||||||
"type": "array"
|
"type": "array"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -7699,7 +7709,11 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"order": {
|
"order": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/AssetOrder"
|
"$ref": "#/components/schemas/AssetOrder"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"owner": {
|
"owner": {
|
||||||
"$ref": "#/components/schemas/UserResponseDto"
|
"$ref": "#/components/schemas/UserResponseDto"
|
||||||
|
@ -7759,7 +7773,12 @@
|
||||||
"AlbumUserAddDto": {
|
"AlbumUserAddDto": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"role": {
|
"role": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/AlbumUserRole"
|
"$ref": "#/components/schemas/AlbumUserRole"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"default": "editor"
|
||||||
},
|
},
|
||||||
"userId": {
|
"userId": {
|
||||||
"format": "uuid",
|
"format": "uuid",
|
||||||
|
@ -7774,7 +7793,11 @@
|
||||||
"AlbumUserCreateDto": {
|
"AlbumUserCreateDto": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"role": {
|
"role": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/AlbumUserRole"
|
"$ref": "#/components/schemas/AlbumUserRole"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"userId": {
|
"userId": {
|
||||||
"format": "uuid",
|
"format": "uuid",
|
||||||
|
@ -7790,7 +7813,11 @@
|
||||||
"AlbumUserResponseDto": {
|
"AlbumUserResponseDto": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"role": {
|
"role": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/AlbumUserRole"
|
"$ref": "#/components/schemas/AlbumUserRole"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"user": {
|
"user": {
|
||||||
"$ref": "#/components/schemas/UserResponseDto"
|
"$ref": "#/components/schemas/UserResponseDto"
|
||||||
|
@ -8087,8 +8114,12 @@
|
||||||
"nullable": true
|
"nullable": true
|
||||||
},
|
},
|
||||||
"sourceType": {
|
"sourceType": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/SourceType"
|
"$ref": "#/components/schemas/SourceType"
|
||||||
}
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"boundingBoxX1",
|
"boundingBoxX1",
|
||||||
|
@ -8158,8 +8189,12 @@
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
},
|
},
|
||||||
"sourceType": {
|
"sourceType": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/SourceType"
|
"$ref": "#/components/schemas/SourceType"
|
||||||
}
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"boundingBoxX1",
|
"boundingBoxX1",
|
||||||
|
@ -8254,8 +8289,12 @@
|
||||||
"type": "array"
|
"type": "array"
|
||||||
},
|
},
|
||||||
"name": {
|
"name": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/AssetJobName"
|
"$ref": "#/components/schemas/AssetJobName"
|
||||||
}
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"assetIds",
|
"assetIds",
|
||||||
|
@ -8352,8 +8391,12 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/AssetMediaStatus"
|
"$ref": "#/components/schemas/AssetMediaStatus"
|
||||||
}
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"id",
|
"id",
|
||||||
|
@ -8490,7 +8533,11 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"type": {
|
"type": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/AssetTypeEnum"
|
"$ref": "#/components/schemas/AssetTypeEnum"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"unassignedFaces": {
|
"unassignedFaces": {
|
||||||
"items": {
|
"items": {
|
||||||
|
@ -8603,8 +8650,12 @@
|
||||||
"AvatarResponse": {
|
"AvatarResponse": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"color": {
|
"color": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/UserAvatarColor"
|
"$ref": "#/components/schemas/UserAvatarColor"
|
||||||
}
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"color"
|
"color"
|
||||||
|
@ -8614,8 +8665,12 @@
|
||||||
"AvatarUpdate": {
|
"AvatarUpdate": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"color": {
|
"color": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/UserAvatarColor"
|
"$ref": "#/components/schemas/UserAvatarColor"
|
||||||
}
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
|
@ -8705,6 +8760,7 @@
|
||||||
"items": {
|
"items": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"minItems": 1,
|
||||||
"type": "array"
|
"type": "array"
|
||||||
},
|
},
|
||||||
"deviceId": {
|
"deviceId": {
|
||||||
|
@ -8771,13 +8827,17 @@
|
||||||
"items": {
|
"items": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"type": "array"
|
"maxItems": 128,
|
||||||
|
"type": "array",
|
||||||
|
"uniqueItems": true
|
||||||
},
|
},
|
||||||
"importPaths": {
|
"importPaths": {
|
||||||
"items": {
|
"items": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"type": "array"
|
"maxItems": 128,
|
||||||
|
"type": "array",
|
||||||
|
"uniqueItems": true
|
||||||
},
|
},
|
||||||
"name": {
|
"name": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
@ -9246,10 +9306,18 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"entityType": {
|
"entityType": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/PathEntityType"
|
"$ref": "#/components/schemas/PathEntityType"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"pathType": {
|
"pathType": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/PathType"
|
"$ref": "#/components/schemas/PathType"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"pathValue": {
|
"pathValue": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
@ -9311,7 +9379,11 @@
|
||||||
"JobCommandDto": {
|
"JobCommandDto": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"command": {
|
"command": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/JobCommand"
|
"$ref": "#/components/schemas/JobCommand"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"force": {
|
"force": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
@ -9356,8 +9428,12 @@
|
||||||
"JobCreateDto": {
|
"JobCreateDto": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"name": {
|
"name": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/ManualJobName"
|
"$ref": "#/components/schemas/ManualJobName"
|
||||||
}
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"name"
|
"name"
|
||||||
|
@ -9544,6 +9620,7 @@
|
||||||
"properties": {
|
"properties": {
|
||||||
"email": {
|
"email": {
|
||||||
"example": "testuser@email.com",
|
"example": "testuser@email.com",
|
||||||
|
"format": "email",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"password": {
|
"password": {
|
||||||
|
@ -9717,8 +9794,12 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"type": {
|
"type": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/MemoryType"
|
"$ref": "#/components/schemas/MemoryType"
|
||||||
}
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"data",
|
"data",
|
||||||
|
@ -9782,7 +9863,11 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"type": {
|
"type": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/MemoryType"
|
"$ref": "#/components/schemas/MemoryType"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"updatedAt": {
|
"updatedAt": {
|
||||||
"format": "date-time",
|
"format": "date-time",
|
||||||
|
@ -9911,7 +9996,11 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"order": {
|
"order": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/AssetOrder"
|
"$ref": "#/components/schemas/AssetOrder"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"originalFileName": {
|
"originalFileName": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
@ -9962,7 +10051,11 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"type": {
|
"type": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/AssetTypeEnum"
|
"$ref": "#/components/schemas/AssetTypeEnum"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"updatedAfter": {
|
"updatedAfter": {
|
||||||
"format": "date-time",
|
"format": "date-time",
|
||||||
|
@ -10046,7 +10139,11 @@
|
||||||
"PartnerResponseDto": {
|
"PartnerResponseDto": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"avatarColor": {
|
"avatarColor": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/UserAvatarColor"
|
"$ref": "#/components/schemas/UserAvatarColor"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"email": {
|
"email": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
@ -10564,7 +10661,11 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"type": {
|
"type": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/AssetTypeEnum"
|
"$ref": "#/components/schemas/AssetTypeEnum"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"updatedAfter": {
|
"updatedAfter": {
|
||||||
"format": "date-time",
|
"format": "date-time",
|
||||||
|
@ -11232,8 +11333,12 @@
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
"type": {
|
"type": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/SharedLinkType"
|
"$ref": "#/components/schemas/SharedLinkType"
|
||||||
}
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"type"
|
"type"
|
||||||
|
@ -11317,7 +11422,11 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"type": {
|
"type": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/SharedLinkType"
|
"$ref": "#/components/schemas/SharedLinkType"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"userId": {
|
"userId": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
@ -11350,6 +11459,7 @@
|
||||||
"properties": {
|
"properties": {
|
||||||
"email": {
|
"email": {
|
||||||
"example": "testuser@email.com",
|
"example": "testuser@email.com",
|
||||||
|
"format": "email",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"name": {
|
"name": {
|
||||||
|
@ -11466,7 +11576,11 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"type": {
|
"type": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/AssetTypeEnum"
|
"$ref": "#/components/schemas/AssetTypeEnum"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"updatedAfter": {
|
"updatedAfter": {
|
||||||
"format": "date-time",
|
"format": "date-time",
|
||||||
|
@ -11507,6 +11621,7 @@
|
||||||
"format": "uuid",
|
"format": "uuid",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"minItems": 2,
|
||||||
"type": "array"
|
"type": "array"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -11647,7 +11762,11 @@
|
||||||
"SystemConfigFFmpegDto": {
|
"SystemConfigFFmpegDto": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"accel": {
|
"accel": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/TranscodeHWAccel"
|
"$ref": "#/components/schemas/TranscodeHWAccel"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"accelDecode": {
|
"accelDecode": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
@ -11676,7 +11795,11 @@
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
},
|
},
|
||||||
"cqMode": {
|
"cqMode": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/CQMode"
|
"$ref": "#/components/schemas/CQMode"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"crf": {
|
"crf": {
|
||||||
"maximum": 51,
|
"maximum": 51,
|
||||||
|
@ -11702,13 +11825,21 @@
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
},
|
},
|
||||||
"targetAudioCodec": {
|
"targetAudioCodec": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/AudioCodec"
|
"$ref": "#/components/schemas/AudioCodec"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"targetResolution": {
|
"targetResolution": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"targetVideoCodec": {
|
"targetVideoCodec": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/VideoCodec"
|
"$ref": "#/components/schemas/VideoCodec"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"temporalAQ": {
|
"temporalAQ": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
@ -11718,10 +11849,18 @@
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
},
|
},
|
||||||
"tonemap": {
|
"tonemap": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/ToneMapping"
|
"$ref": "#/components/schemas/ToneMapping"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"transcode": {
|
"transcode": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/TranscodePolicy"
|
"$ref": "#/components/schemas/TranscodePolicy"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"twoPass": {
|
"twoPass": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
@ -11766,7 +11905,11 @@
|
||||||
"SystemConfigGeneratedImageDto": {
|
"SystemConfigGeneratedImageDto": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"format": {
|
"format": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/ImageFormat"
|
"$ref": "#/components/schemas/ImageFormat"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"quality": {
|
"quality": {
|
||||||
"maximum": 100,
|
"maximum": 100,
|
||||||
|
@ -11788,7 +11931,11 @@
|
||||||
"SystemConfigImageDto": {
|
"SystemConfigImageDto": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"colorspace": {
|
"colorspace": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/Colorspace"
|
"$ref": "#/components/schemas/Colorspace"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"extractEmbedded": {
|
"extractEmbedded": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
@ -11906,8 +12053,12 @@
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
"level": {
|
"level": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/LogLevel"
|
"$ref": "#/components/schemas/LogLevel"
|
||||||
}
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"enabled",
|
"enabled",
|
||||||
|
@ -11935,6 +12086,7 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"urls": {
|
"urls": {
|
||||||
|
"format": "uri",
|
||||||
"items": {
|
"items": {
|
||||||
"format": "uri",
|
"format": "uri",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
@ -11955,12 +12107,14 @@
|
||||||
"SystemConfigMapDto": {
|
"SystemConfigMapDto": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"darkStyle": {
|
"darkStyle": {
|
||||||
|
"format": "uri",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"enabled": {
|
"enabled": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
"lightStyle": {
|
"lightStyle": {
|
||||||
|
"format": "uri",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -12035,6 +12189,7 @@
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
"mobileRedirectUri": {
|
"mobileRedirectUri": {
|
||||||
|
"format": "uri",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"profileSigningAlgorithm": {
|
"profileSigningAlgorithm": {
|
||||||
|
@ -12097,6 +12252,7 @@
|
||||||
"SystemConfigServerDto": {
|
"SystemConfigServerDto": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"externalDomain": {
|
"externalDomain": {
|
||||||
|
"format": "uri",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"loginPageMessage": {
|
"loginPageMessage": {
|
||||||
|
@ -12353,6 +12509,7 @@
|
||||||
"TagCreateDto": {
|
"TagCreateDto": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"color": {
|
"color": {
|
||||||
|
"pattern": "^#?([0-9A-F]{3}|[0-9A-F]{4}|[0-9A-F]{6}|[0-9A-F]{8})$",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"name": {
|
"name": {
|
||||||
|
@ -12408,6 +12565,7 @@
|
||||||
"properties": {
|
"properties": {
|
||||||
"color": {
|
"color": {
|
||||||
"nullable": true,
|
"nullable": true,
|
||||||
|
"pattern": "^#?([0-9A-F]{3}|[0-9A-F]{4}|[0-9A-F]{6}|[0-9A-F]{8})$",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -12570,16 +12728,24 @@
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
"order": {
|
"order": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/AssetOrder"
|
"$ref": "#/components/schemas/AssetOrder"
|
||||||
}
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"UpdateAlbumUserDto": {
|
"UpdateAlbumUserDto": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"role": {
|
"role": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/AlbumUserRole"
|
"$ref": "#/components/schemas/AlbumUserRole"
|
||||||
}
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"role"
|
"role"
|
||||||
|
@ -12625,13 +12791,17 @@
|
||||||
"items": {
|
"items": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"type": "array"
|
"maxItems": 128,
|
||||||
|
"type": "array",
|
||||||
|
"uniqueItems": true
|
||||||
},
|
},
|
||||||
"importPaths": {
|
"importPaths": {
|
||||||
"items": {
|
"items": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"type": "array"
|
"maxItems": 128,
|
||||||
|
"type": "array",
|
||||||
|
"uniqueItems": true
|
||||||
},
|
},
|
||||||
"name": {
|
"name": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
@ -12697,6 +12867,7 @@
|
||||||
"UserAdminCreateDto": {
|
"UserAdminCreateDto": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"email": {
|
"email": {
|
||||||
|
"format": "email",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"name": {
|
"name": {
|
||||||
|
@ -12740,7 +12911,11 @@
|
||||||
"UserAdminResponseDto": {
|
"UserAdminResponseDto": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"avatarColor": {
|
"avatarColor": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/UserAvatarColor"
|
"$ref": "#/components/schemas/UserAvatarColor"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"createdAt": {
|
"createdAt": {
|
||||||
"format": "date-time",
|
"format": "date-time",
|
||||||
|
@ -12795,7 +12970,11 @@
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/UserStatus"
|
"$ref": "#/components/schemas/UserStatus"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"storageLabel": {
|
"storageLabel": {
|
||||||
"nullable": true,
|
"nullable": true,
|
||||||
|
@ -12830,6 +13009,7 @@
|
||||||
"UserAdminUpdateDto": {
|
"UserAdminUpdateDto": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"email": {
|
"email": {
|
||||||
|
"format": "email",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"name": {
|
"name": {
|
||||||
|
@ -12967,7 +13147,11 @@
|
||||||
"UserResponseDto": {
|
"UserResponseDto": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"avatarColor": {
|
"avatarColor": {
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
"$ref": "#/components/schemas/UserAvatarColor"
|
"$ref": "#/components/schemas/UserAvatarColor"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"email": {
|
"email": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
@ -13007,6 +13191,7 @@
|
||||||
"UserUpdateMeDto": {
|
"UserUpdateMeDto": {
|
||||||
"properties": {
|
"properties": {
|
||||||
"email": {
|
"email": {
|
||||||
|
"format": "email",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"name": {
|
"name": {
|
||||||
|
@ -13035,13 +13220,17 @@
|
||||||
"items": {
|
"items": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"type": "array"
|
"maxItems": 128,
|
||||||
|
"type": "array",
|
||||||
|
"uniqueItems": true
|
||||||
},
|
},
|
||||||
"importPaths": {
|
"importPaths": {
|
||||||
"items": {
|
"items": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"type": "array"
|
"maxItems": 128,
|
||||||
|
"type": "array",
|
||||||
|
"uniqueItems": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"type": "object"
|
"type": "object"
|
||||||
|
|
36
server/package-lock.json
generated
36
server/package-lock.json
generated
|
@ -16,7 +16,7 @@
|
||||||
"@nestjs/platform-express": "^10.2.2",
|
"@nestjs/platform-express": "^10.2.2",
|
||||||
"@nestjs/platform-socket.io": "^10.2.2",
|
"@nestjs/platform-socket.io": "^10.2.2",
|
||||||
"@nestjs/schedule": "^4.0.0",
|
"@nestjs/schedule": "^4.0.0",
|
||||||
"@nestjs/swagger": "^7.1.8",
|
"@nestjs/swagger": "^8.0.0",
|
||||||
"@nestjs/typeorm": "^10.0.0",
|
"@nestjs/typeorm": "^10.0.0",
|
||||||
"@nestjs/websockets": "^10.2.2",
|
"@nestjs/websockets": "^10.2.2",
|
||||||
"@opentelemetry/auto-instrumentations-node": "^0.54.0",
|
"@opentelemetry/auto-instrumentations-node": "^0.54.0",
|
||||||
|
@ -2099,9 +2099,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@nestjs/mapped-types": {
|
"node_modules/@nestjs/mapped-types": {
|
||||||
"version": "2.0.5",
|
"version": "2.0.6",
|
||||||
"resolved": "https://registry.npmjs.org/@nestjs/mapped-types/-/mapped-types-2.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/@nestjs/mapped-types/-/mapped-types-2.0.6.tgz",
|
||||||
"integrity": "sha512-bSJv4pd6EY99NX9CjBIyn4TVDoSit82DUZlL4I3bqNfy5Gt+gXTa86i3I/i0iIV9P4hntcGM5GyO+FhZAhxtyg==",
|
"integrity": "sha512-84ze+CPfp1OWdpRi1/lOu59hOhTz38eVzJvRKrg9ykRFwDz+XleKfMsG0gUqNZYFa6v53XYzeD+xItt8uDW7NQ==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
|
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
|
||||||
|
@ -2197,17 +2197,17 @@
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@nestjs/swagger": {
|
"node_modules/@nestjs/swagger": {
|
||||||
"version": "7.4.2",
|
"version": "8.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/@nestjs/swagger/-/swagger-7.4.2.tgz",
|
"resolved": "https://registry.npmjs.org/@nestjs/swagger/-/swagger-8.1.0.tgz",
|
||||||
"integrity": "sha512-Mu6TEn1M/owIvAx2B4DUQObQXqo2028R2s9rSZ/hJEgBK95+doTwS0DjmVA2wTeZTyVtXOoN7CsoM5pONBzvKQ==",
|
"integrity": "sha512-8hzH+r/31XshzXHC9vww4T0xjDAxMzvOaT1xAOvvY1LtXTWyNRCUP2iQsCYJOnnMrR+vydWjvRZiuB3hdvaHxA==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@microsoft/tsdoc": "^0.15.0",
|
"@microsoft/tsdoc": "^0.15.0",
|
||||||
"@nestjs/mapped-types": "2.0.5",
|
"@nestjs/mapped-types": "2.0.6",
|
||||||
"js-yaml": "4.1.0",
|
"js-yaml": "4.1.0",
|
||||||
"lodash": "4.17.21",
|
"lodash": "4.17.21",
|
||||||
"path-to-regexp": "3.3.0",
|
"path-to-regexp": "3.3.0",
|
||||||
"swagger-ui-dist": "5.17.14"
|
"swagger-ui-dist": "5.18.2"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@fastify/static": "^6.0.0 || ^7.0.0",
|
"@fastify/static": "^6.0.0 || ^7.0.0",
|
||||||
|
@ -4464,6 +4464,13 @@
|
||||||
"win32"
|
"win32"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"node_modules/@scarf/scarf": {
|
||||||
|
"version": "1.4.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@scarf/scarf/-/scarf-1.4.0.tgz",
|
||||||
|
"integrity": "sha512-xxeapPiUXdZAE3che6f3xogoJPeZgig6omHEy1rIY5WVsB3H2BHNnZH+gHG6x91SCWyQCzWGsuL2Hh3ClO5/qQ==",
|
||||||
|
"hasInstallScript": true,
|
||||||
|
"license": "Apache-2.0"
|
||||||
|
},
|
||||||
"node_modules/@selderee/plugin-htmlparser2": {
|
"node_modules/@selderee/plugin-htmlparser2": {
|
||||||
"version": "0.11.0",
|
"version": "0.11.0",
|
||||||
"resolved": "https://registry.npmjs.org/@selderee/plugin-htmlparser2/-/plugin-htmlparser2-0.11.0.tgz",
|
"resolved": "https://registry.npmjs.org/@selderee/plugin-htmlparser2/-/plugin-htmlparser2-0.11.0.tgz",
|
||||||
|
@ -13764,10 +13771,13 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/swagger-ui-dist": {
|
"node_modules/swagger-ui-dist": {
|
||||||
"version": "5.17.14",
|
"version": "5.18.2",
|
||||||
"resolved": "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-5.17.14.tgz",
|
"resolved": "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-5.18.2.tgz",
|
||||||
"integrity": "sha512-CVbSfaLpstV65OnSjbXfVd6Sta3q3F7Cj/yYuvHMp1P90LztOLs6PfUnKEVAeiIVQt9u2SaPwv0LiH/OyMjHRw==",
|
"integrity": "sha512-J+y4mCw/zXh1FOj5wGJvnAajq6XgHOyywsa9yITmwxIlJbMqITq3gYRZHaeqLVH/eV/HOPphE6NjF+nbSNC5Zw==",
|
||||||
"license": "Apache-2.0"
|
"license": "Apache-2.0",
|
||||||
|
"dependencies": {
|
||||||
|
"@scarf/scarf": "=1.4.0"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"node_modules/symbol-observable": {
|
"node_modules/symbol-observable": {
|
||||||
"version": "4.0.0",
|
"version": "4.0.0",
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
"@nestjs/platform-express": "^10.2.2",
|
"@nestjs/platform-express": "^10.2.2",
|
||||||
"@nestjs/platform-socket.io": "^10.2.2",
|
"@nestjs/platform-socket.io": "^10.2.2",
|
||||||
"@nestjs/schedule": "^4.0.0",
|
"@nestjs/schedule": "^4.0.0",
|
||||||
"@nestjs/swagger": "^7.1.8",
|
"@nestjs/swagger": "^8.0.0",
|
||||||
"@nestjs/typeorm": "^10.0.0",
|
"@nestjs/typeorm": "^10.0.0",
|
||||||
"@nestjs/websockets": "^10.2.2",
|
"@nestjs/websockets": "^10.2.2",
|
||||||
"@opentelemetry/auto-instrumentations-node": "^0.54.0",
|
"@opentelemetry/auto-instrumentations-node": "^0.54.0",
|
||||||
|
|
Loading…
Reference in a new issue