chore(server): openapi generation (#9585)

This commit is contained in:
Alex
2024-05-18 13:50:28 -05:00
committed by GitHub
parent 60427f18ce
commit 1ad04f0b17
15 changed files with 214 additions and 9 deletions

View File

@@ -11,6 +11,7 @@ Name | Type | Description | Notes
**checksum** | **String** | base64 encoded sha1 hash |
**deviceAssetId** | **String** | |
**deviceId** | **String** | |
**duplicateId** | **String** | | [optional]
**duration** | **String** | |
**exifInfo** | [**ExifResponseDto**](ExifResponseDto.md) | | [optional]
**fileCreatedAt** | [**DateTime**](DateTime.md) | |

View File

@@ -13,7 +13,7 @@ Method | HTTP request | Description
# **getAssetDuplicates**
> List<AssetResponseDto> getAssetDuplicates()
> List<DuplicateResponseDto> getAssetDuplicates()
@@ -50,7 +50,7 @@ This endpoint does not need any parameter.
### Return type
[**List<AssetResponseDto>**](AssetResponseDto.md)
[**List<DuplicateResponseDto>**](DuplicateResponseDto.md)
### Authorization

View File

@@ -0,0 +1,16 @@
# openapi.model.DuplicateResponseDto
## Load the model package
```dart
import 'package:openapi/api.dart';
```
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**assets** | [**List<AssetResponseDto>**](AssetResponseDto.md) | | [default to const []]
**duplicateId** | **String** | |
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)