gen client

This commit is contained in:
timonrieger
2026-05-04 17:22:50 +02:00
parent 17af4324eb
commit 49b30ea2f2
315 changed files with 4724 additions and 930 deletions
+31 -19
View File
@@ -264,93 +264,93 @@ class ServerAboutResponseDto {
if (this.build != null) {
json[r'build'] = this.build;
} else {
// json[r'build'] = null;
json[r'build'] = null;
}
if (this.buildImage != null) {
json[r'buildImage'] = this.buildImage;
} else {
// json[r'buildImage'] = null;
json[r'buildImage'] = null;
}
if (this.buildImageUrl != null) {
json[r'buildImageUrl'] = this.buildImageUrl;
} else {
// json[r'buildImageUrl'] = null;
json[r'buildImageUrl'] = null;
}
if (this.buildUrl != null) {
json[r'buildUrl'] = this.buildUrl;
} else {
// json[r'buildUrl'] = null;
json[r'buildUrl'] = null;
}
if (this.exiftool != null) {
json[r'exiftool'] = this.exiftool;
} else {
// json[r'exiftool'] = null;
json[r'exiftool'] = null;
}
if (this.ffmpeg != null) {
json[r'ffmpeg'] = this.ffmpeg;
} else {
// json[r'ffmpeg'] = null;
json[r'ffmpeg'] = null;
}
if (this.imagemagick != null) {
json[r'imagemagick'] = this.imagemagick;
} else {
// json[r'imagemagick'] = null;
json[r'imagemagick'] = null;
}
if (this.libvips != null) {
json[r'libvips'] = this.libvips;
} else {
// json[r'libvips'] = null;
json[r'libvips'] = null;
}
json[r'licensed'] = this.licensed;
if (this.nodejs != null) {
json[r'nodejs'] = this.nodejs;
} else {
// json[r'nodejs'] = null;
json[r'nodejs'] = null;
}
if (this.repository != null) {
json[r'repository'] = this.repository;
} else {
// json[r'repository'] = null;
json[r'repository'] = null;
}
if (this.repositoryUrl != null) {
json[r'repositoryUrl'] = this.repositoryUrl;
} else {
// json[r'repositoryUrl'] = null;
json[r'repositoryUrl'] = null;
}
if (this.sourceCommit != null) {
json[r'sourceCommit'] = this.sourceCommit;
} else {
// json[r'sourceCommit'] = null;
json[r'sourceCommit'] = null;
}
if (this.sourceRef != null) {
json[r'sourceRef'] = this.sourceRef;
} else {
// json[r'sourceRef'] = null;
json[r'sourceRef'] = null;
}
if (this.sourceUrl != null) {
json[r'sourceUrl'] = this.sourceUrl;
} else {
// json[r'sourceUrl'] = null;
json[r'sourceUrl'] = null;
}
if (this.thirdPartyBugFeatureUrl != null) {
json[r'thirdPartyBugFeatureUrl'] = this.thirdPartyBugFeatureUrl;
} else {
// json[r'thirdPartyBugFeatureUrl'] = null;
json[r'thirdPartyBugFeatureUrl'] = null;
}
if (this.thirdPartyDocumentationUrl != null) {
json[r'thirdPartyDocumentationUrl'] = this.thirdPartyDocumentationUrl;
} else {
// json[r'thirdPartyDocumentationUrl'] = null;
json[r'thirdPartyDocumentationUrl'] = null;
}
if (this.thirdPartySourceUrl != null) {
json[r'thirdPartySourceUrl'] = this.thirdPartySourceUrl;
} else {
// json[r'thirdPartySourceUrl'] = null;
json[r'thirdPartySourceUrl'] = null;
}
if (this.thirdPartySupportUrl != null) {
json[r'thirdPartySupportUrl'] = this.thirdPartySupportUrl;
} else {
// json[r'thirdPartySupportUrl'] = null;
json[r'thirdPartySupportUrl'] = null;
}
json[r'version'] = this.version;
json[r'versionUrl'] = this.versionUrl;
@@ -361,10 +361,22 @@ class ServerAboutResponseDto {
/// [value] if it's a [Map], null otherwise.
// ignore: prefer_constructors_over_static_methods
static ServerAboutResponseDto? fromJson(dynamic value) {
upgradeDto(value, "ServerAboutResponseDto");
if (value is Map) {
final json = value.cast<String, dynamic>();
// Ensure that the map contains the required keys.
// Note 1: the values aren't checked for validity beyond being non-null.
// Note 2: this code is stripped in release mode!
assert(() {
assert(json.containsKey(r'licensed'), 'Required key "ServerAboutResponseDto[licensed]" is missing from JSON.');
assert(json[r'licensed'] != null, 'Required key "ServerAboutResponseDto[licensed]" has a null value in JSON.');
assert(json.containsKey(r'version'), 'Required key "ServerAboutResponseDto[version]" is missing from JSON.');
assert(json[r'version'] != null, 'Required key "ServerAboutResponseDto[version]" has a null value in JSON.');
assert(json.containsKey(r'versionUrl'), 'Required key "ServerAboutResponseDto[versionUrl]" is missing from JSON.');
assert(json[r'versionUrl'] != null, 'Required key "ServerAboutResponseDto[versionUrl]" has a null value in JSON.');
return true;
}());
return ServerAboutResponseDto(
build: mapValueOfType<String>(json, r'build'),
buildImage: mapValueOfType<String>(json, r'buildImage'),