fix(server): pin openapi genreator patch and regenerate api ()

* fix(server): pin openapi genreator patch and regenerate api

* variable
This commit is contained in:
Alex 2023-08-06 15:55:14 -05:00 committed by GitHub
commit 13df619ba9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
102 changed files with 1145 additions and 812 deletions
mobile/openapi/lib/model

View file

@ -47,10 +47,10 @@ class UpdateAssetDto {
@override
bool operator ==(Object other) => identical(this, other) || other is UpdateAssetDto &&
other.description == description &&
other.isArchived == isArchived &&
other.isFavorite == isFavorite &&
_deepEquality.equals(other.tagIds, tagIds);
other.description == description &&
other.isArchived == isArchived &&
other.isFavorite == isFavorite &&
other.tagIds == tagIds;
@override
int get hashCode =>
@ -95,8 +95,8 @@ class UpdateAssetDto {
description: mapValueOfType<String>(json, r'description'),
isArchived: mapValueOfType<bool>(json, r'isArchived'),
isFavorite: mapValueOfType<bool>(json, r'isFavorite'),
tagIds: json[r'tagIds'] is Iterable
? (json[r'tagIds'] as Iterable).cast<String>().toList(growable: false)
tagIds: json[r'tagIds'] is List
? (json[r'tagIds'] as List).cast<String>()
: const [],
);
}