mirror of
https://github.com/immich-app/immich.git
synced 2025-11-15 23:52:38 +09:00
deps: open-api generator (#6655)
* deps: open-api generator * fix: unused sed/replace
This commit is contained in:
8
mobile/openapi/lib/api/person_api.dart
generated
8
mobile/openapi/lib/api/person_api.dart
generated
@@ -201,7 +201,7 @@ class PersonApi {
|
||||
final responseBody = await _decodeBodyBytes(response);
|
||||
return (await apiClient.deserializeAsync(responseBody, 'List<AssetResponseDto>') as List)
|
||||
.cast<AssetResponseDto>()
|
||||
.toList();
|
||||
.toList(growable: false);
|
||||
|
||||
}
|
||||
return null;
|
||||
@@ -352,7 +352,7 @@ class PersonApi {
|
||||
final responseBody = await _decodeBodyBytes(response);
|
||||
return (await apiClient.deserializeAsync(responseBody, 'List<BulkIdResponseDto>') as List)
|
||||
.cast<BulkIdResponseDto>()
|
||||
.toList();
|
||||
.toList(growable: false);
|
||||
|
||||
}
|
||||
return null;
|
||||
@@ -407,7 +407,7 @@ class PersonApi {
|
||||
final responseBody = await _decodeBodyBytes(response);
|
||||
return (await apiClient.deserializeAsync(responseBody, 'List<PersonResponseDto>') as List)
|
||||
.cast<PersonResponseDto>()
|
||||
.toList();
|
||||
.toList(growable: false);
|
||||
|
||||
}
|
||||
return null;
|
||||
@@ -457,7 +457,7 @@ class PersonApi {
|
||||
final responseBody = await _decodeBodyBytes(response);
|
||||
return (await apiClient.deserializeAsync(responseBody, 'List<BulkIdResponseDto>') as List)
|
||||
.cast<BulkIdResponseDto>()
|
||||
.toList();
|
||||
.toList(growable: false);
|
||||
|
||||
}
|
||||
return null;
|
||||
|
||||
Reference in New Issue
Block a user