mirror of
https://github.com/immich-app/immich.git
synced 2025-12-29 17:25:00 +03:00
chore: lifecycle metadata (#9103)
feat(server): track endpoint lifecycle
This commit is contained in:
2
mobile/openapi/doc/AddUsersDto.md
generated
2
mobile/openapi/doc/AddUsersDto.md
generated
@@ -9,7 +9,7 @@ import 'package:openapi/api.dart';
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**albumUsers** | [**List<AlbumUserAddDto>**](AlbumUserAddDto.md) | | [default to const []]
|
||||
**sharedUserIds** | **List<String>** | Deprecated in favor of albumUsers | [optional] [default to const []]
|
||||
**sharedUserIds** | **List<String>** | This property was deprecated in v1.102.0 | [optional] [default to const []]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
||||
|
||||
2
mobile/openapi/doc/AlbumResponseDto.md
generated
2
mobile/openapi/doc/AlbumResponseDto.md
generated
@@ -24,7 +24,7 @@ Name | Type | Description | Notes
|
||||
**owner** | [**UserResponseDto**](UserResponseDto.md) | |
|
||||
**ownerId** | **String** | |
|
||||
**shared** | **bool** | |
|
||||
**sharedUsers** | [**List<UserResponseDto>**](UserResponseDto.md) | Deprecated in favor of albumUsers | [default to const []]
|
||||
**sharedUsers** | [**List<UserResponseDto>**](UserResponseDto.md) | This property was deprecated in v1.102.0 | [default to const []]
|
||||
**startDate** | [**DateTime**](DateTime.md) | | [optional]
|
||||
**updatedAt** | [**DateTime**](DateTime.md) | |
|
||||
|
||||
|
||||
2
mobile/openapi/doc/MemoryLaneResponseDto.md
generated
2
mobile/openapi/doc/MemoryLaneResponseDto.md
generated
@@ -9,7 +9,7 @@ import 'package:openapi/api.dart';
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**assets** | [**List<AssetResponseDto>**](AssetResponseDto.md) | | [default to const []]
|
||||
**title** | **String** | |
|
||||
**title** | **String** | This property was deprecated in v1.100.0 |
|
||||
**yearsAgo** | **int** | |
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
||||
4
mobile/openapi/doc/MetadataSearchDto.md
generated
4
mobile/openapi/doc/MetadataSearchDto.md
generated
@@ -36,7 +36,7 @@ Name | Type | Description | Notes
|
||||
**page** | **num** | | [optional]
|
||||
**personIds** | **List<String>** | | [optional] [default to const []]
|
||||
**previewPath** | **String** | | [optional]
|
||||
**resizePath** | **String** | | [optional]
|
||||
**resizePath** | **String** | This property was deprecated in v1.100.0 | [optional]
|
||||
**size** | **num** | | [optional]
|
||||
**state** | **String** | | [optional]
|
||||
**takenAfter** | [**DateTime**](DateTime.md) | | [optional]
|
||||
@@ -47,7 +47,7 @@ Name | Type | Description | Notes
|
||||
**type** | [**AssetTypeEnum**](AssetTypeEnum.md) | | [optional]
|
||||
**updatedAfter** | [**DateTime**](DateTime.md) | | [optional]
|
||||
**updatedBefore** | [**DateTime**](DateTime.md) | | [optional]
|
||||
**webpPath** | **String** | | [optional]
|
||||
**webpPath** | **String** | This property was deprecated in v1.100.0 | [optional]
|
||||
**withArchived** | **bool** | | [optional] [default to false]
|
||||
**withDeleted** | **bool** | | [optional]
|
||||
**withExif** | **bool** | | [optional]
|
||||
|
||||
2
mobile/openapi/lib/model/add_users_dto.dart
generated
2
mobile/openapi/lib/model/add_users_dto.dart
generated
@@ -19,7 +19,7 @@ class AddUsersDto {
|
||||
|
||||
List<AlbumUserAddDto> albumUsers;
|
||||
|
||||
/// Deprecated in favor of albumUsers
|
||||
/// This property was deprecated in v1.102.0
|
||||
List<String> sharedUserIds;
|
||||
|
||||
@override
|
||||
|
||||
2
mobile/openapi/lib/model/album_response_dto.dart
generated
2
mobile/openapi/lib/model/album_response_dto.dart
generated
@@ -84,7 +84,7 @@ class AlbumResponseDto {
|
||||
|
||||
bool shared;
|
||||
|
||||
/// Deprecated in favor of albumUsers
|
||||
/// This property was deprecated in v1.102.0
|
||||
List<UserResponseDto> sharedUsers;
|
||||
|
||||
///
|
||||
|
||||
@@ -20,6 +20,7 @@ class MemoryLaneResponseDto {
|
||||
|
||||
List<AssetResponseDto> assets;
|
||||
|
||||
/// This property was deprecated in v1.100.0
|
||||
String title;
|
||||
|
||||
int yearsAgo;
|
||||
|
||||
@@ -279,6 +279,7 @@ class MetadataSearchDto {
|
||||
///
|
||||
String? previewPath;
|
||||
|
||||
/// This property was deprecated in v1.100.0
|
||||
///
|
||||
/// Please note: This property should have been non-nullable! Since the specification file
|
||||
/// does not include a default value (using the "default:" property), however, the generated
|
||||
@@ -369,6 +370,7 @@ class MetadataSearchDto {
|
||||
///
|
||||
DateTime? updatedBefore;
|
||||
|
||||
/// This property was deprecated in v1.100.0
|
||||
///
|
||||
/// Please note: This property should have been non-nullable! Since the specification file
|
||||
/// does not include a default value (using the "default:" property), however, the generated
|
||||
|
||||
2
mobile/openapi/test/add_users_dto_test.dart
generated
2
mobile/openapi/test/add_users_dto_test.dart
generated
@@ -21,7 +21,7 @@ void main() {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// Deprecated in favor of albumUsers
|
||||
// This property was deprecated in v1.102.0
|
||||
// List<String> sharedUserIds (default value: const [])
|
||||
test('to test the property `sharedUserIds`', () async {
|
||||
// TODO
|
||||
|
||||
2
mobile/openapi/test/album_response_dto_test.dart
generated
2
mobile/openapi/test/album_response_dto_test.dart
generated
@@ -96,7 +96,7 @@ void main() {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// Deprecated in favor of albumUsers
|
||||
// This property was deprecated in v1.102.0
|
||||
// List<UserResponseDto> sharedUsers (default value: const [])
|
||||
test('to test the property `sharedUsers`', () async {
|
||||
// TODO
|
||||
|
||||
@@ -21,6 +21,7 @@ void main() {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// This property was deprecated in v1.100.0
|
||||
// String title
|
||||
test('to test the property `title`', () async {
|
||||
// TODO
|
||||
|
||||
@@ -156,6 +156,7 @@ void main() {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// This property was deprecated in v1.100.0
|
||||
// String resizePath
|
||||
test('to test the property `resizePath`', () async {
|
||||
// TODO
|
||||
@@ -211,6 +212,7 @@ void main() {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// This property was deprecated in v1.100.0
|
||||
// String webpPath
|
||||
test('to test the property `webpPath`', () async {
|
||||
// TODO
|
||||
|
||||
Reference in New Issue
Block a user