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

* 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
parent 3edb347666
commit 13df619ba9
102 changed files with 1145 additions and 812 deletions

View File

@@ -59,18 +59,18 @@ class SharedLinkResponseDto {
@override
bool operator ==(Object other) => identical(this, other) || other is SharedLinkResponseDto &&
other.album == album &&
other.allowDownload == allowDownload &&
other.allowUpload == allowUpload &&
_deepEquality.equals(other.assets, assets) &&
other.createdAt == createdAt &&
other.description == description &&
other.expiresAt == expiresAt &&
other.id == id &&
other.key == key &&
other.showExif == showExif &&
other.type == type &&
other.userId == userId;
other.album == album &&
other.allowDownload == allowDownload &&
other.allowUpload == allowUpload &&
other.assets == assets &&
other.createdAt == createdAt &&
other.description == description &&
other.expiresAt == expiresAt &&
other.id == id &&
other.key == key &&
other.showExif == showExif &&
other.type == type &&
other.userId == userId;
@override
int get hashCode =>
@@ -132,9 +132,9 @@ class SharedLinkResponseDto {
allowDownload: mapValueOfType<bool>(json, r'allowDownload')!,
allowUpload: mapValueOfType<bool>(json, r'allowUpload')!,
assets: AssetResponseDto.listFromJson(json[r'assets']),
createdAt: mapDateTime(json, r'createdAt', r'')!,
createdAt: mapDateTime(json, r'createdAt', '')!,
description: mapValueOfType<String>(json, r'description'),
expiresAt: mapDateTime(json, r'expiresAt', r''),
expiresAt: mapDateTime(json, r'expiresAt', ''),
id: mapValueOfType<String>(json, r'id')!,
key: mapValueOfType<String>(json, r'key')!,
showExif: mapValueOfType<bool>(json, r'showExif')!,