chore: lifecycle metadata (#9103)

feat(server): track endpoint lifecycle
This commit is contained in:
Jason Rasmussen
2024-04-29 09:48:28 -04:00
committed by GitHub
parent 6eb5d2e95e
commit 59caf1fce4
22 changed files with 171 additions and 19 deletions

View File

@@ -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)

View File

@@ -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) | |

View File

@@ -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)

View File

@@ -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]

View File

@@ -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

View File

@@ -84,7 +84,7 @@ class AlbumResponseDto {
bool shared;
/// Deprecated in favor of albumUsers
/// This property was deprecated in v1.102.0
List<UserResponseDto> sharedUsers;
///

View File

@@ -20,6 +20,7 @@ class MemoryLaneResponseDto {
List<AssetResponseDto> assets;
/// This property was deprecated in v1.100.0
String title;
int yearsAgo;

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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