mirror of
https://github.com/immich-app/immich.git
synced 2025-04-21 07:26:25 +02:00
chore(server): patch dart openapi assertion (#2914)
* chore(server): patch dart openapi assertion * remove unused file
This commit is contained in:
parent
3e2f335a4c
commit
4311d385fc
93 changed files with 103 additions and 94 deletions
mobile/openapi/lib/model
add_assets_dto.dartadd_assets_response_dto.dartadd_users_dto.dartadmin_signup_response_dto.dartalbum_count_response_dto.dartalbum_response_dto.dartall_job_status_response_dto.dartapi_key_create_dto.dartapi_key_create_response_dto.dartapi_key_response_dto.dartapi_key_update_dto.dartasset_bulk_upload_check_dto.dartasset_bulk_upload_check_item.dartasset_bulk_upload_check_response_dto.dartasset_bulk_upload_check_result.dartasset_count_by_time_bucket.dartasset_count_by_time_bucket_response_dto.dartasset_count_by_user_id_response_dto.dartasset_file_upload_response_dto.dartasset_ids_dto.dartasset_ids_response_dto.dartasset_response_dto.dartauth_device_response_dto.dartchange_password_dto.dartcheck_duplicate_asset_dto.dartcheck_duplicate_asset_response_dto.dartcheck_existing_assets_dto.dartcheck_existing_assets_response_dto.dartcreate_album_dto.dartcreate_profile_image_response_dto.dartcreate_tag_dto.dartcreate_user_dto.dartcurated_locations_response_dto.dartcurated_objects_response_dto.dartdelete_asset_dto.dartdelete_asset_response_dto.dartdownload_files_dto.dartexif_response_dto.dartget_asset_by_time_bucket_dto.dartget_asset_count_by_time_bucket_dto.dartimport_asset_dto.dartjob_command_dto.dartjob_counts_dto.dartjob_settings_dto.dartjob_status_dto.dartlogin_credential_dto.dartlogin_response_dto.dartlogout_response_dto.dartmap_marker_response_dto.dartmemory_lane_response_dto.darto_auth_callback_dto.darto_auth_config_dto.darto_auth_config_response_dto.dartperson_response_dto.dartperson_update_dto.dartqueue_status_dto.dartremove_assets_dto.dartsearch_album_response_dto.dartsearch_asset_dto.dartsearch_asset_response_dto.dartsearch_config_response_dto.dartsearch_explore_item.dartsearch_explore_response_dto.dartsearch_facet_count_response_dto.dartsearch_facet_response_dto.dartsearch_response_dto.dartserver_info_response_dto.dartserver_ping_response.dartserver_stats_response_dto.dartserver_version_reponse_dto.dartshared_link_create_dto.dartshared_link_edit_dto.dartshared_link_response_dto.dartsign_up_dto.dartsmart_info_response_dto.dartsystem_config_dto.dartsystem_config_f_fmpeg_dto.dartsystem_config_job_dto.dartsystem_config_o_auth_dto.dartsystem_config_password_login_dto.dartsystem_config_storage_template_dto.dartsystem_config_template_storage_option_dto.darttag_response_dto.dartupdate_album_dto.dartupdate_asset_dto.dartupdate_tag_dto.dartupdate_user_dto.dartusage_by_user_dto.dartuser_count_response_dto.dartuser_response_dto.dartvalidate_access_token_response_dto.dart
server/openapi-generator/templates/mobile/serialization/native
2
mobile/openapi/lib/model/add_assets_dto.dart
generated
2
mobile/openapi/lib/model/add_assets_dto.dart
generated
|
@ -49,7 +49,7 @@ class AddAssetsDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AddAssetsDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AddAssetsDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AddAssetsDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -71,7 +71,7 @@ class AddAssetsResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AddAssetsResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AddAssetsResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AddAssetsResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/add_users_dto.dart
generated
2
mobile/openapi/lib/model/add_users_dto.dart
generated
|
@ -49,7 +49,7 @@ class AddUsersDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AddUsersDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AddUsersDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AddUsersDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -73,7 +73,7 @@ class AdminSignupResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AdminSignupResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AdminSignupResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AdminSignupResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -61,7 +61,7 @@ class AlbumCountResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AlbumCountResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AlbumCountResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AlbumCountResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/album_response_dto.dart
generated
2
mobile/openapi/lib/model/album_response_dto.dart
generated
|
@ -129,7 +129,7 @@ class AlbumResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AlbumResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AlbumResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AlbumResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -103,7 +103,7 @@ class AllJobStatusResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AllJobStatusResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AllJobStatusResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AllJobStatusResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/api_key_create_dto.dart
generated
2
mobile/openapi/lib/model/api_key_create_dto.dart
generated
|
@ -59,7 +59,7 @@ class APIKeyCreateDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "APIKeyCreateDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "APIKeyCreateDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "APIKeyCreateDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -55,7 +55,7 @@ class APIKeyCreateResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "APIKeyCreateResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "APIKeyCreateResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "APIKeyCreateResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -67,7 +67,7 @@ class APIKeyResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "APIKeyResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "APIKeyResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "APIKeyResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/api_key_update_dto.dart
generated
2
mobile/openapi/lib/model/api_key_update_dto.dart
generated
|
@ -49,7 +49,7 @@ class APIKeyUpdateDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "APIKeyUpdateDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "APIKeyUpdateDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "APIKeyUpdateDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -49,7 +49,7 @@ class AssetBulkUploadCheckDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AssetBulkUploadCheckDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AssetBulkUploadCheckDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AssetBulkUploadCheckDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -56,7 +56,7 @@ class AssetBulkUploadCheckItem {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AssetBulkUploadCheckItem[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AssetBulkUploadCheckItem[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AssetBulkUploadCheckItem[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -49,7 +49,7 @@ class AssetBulkUploadCheckResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AssetBulkUploadCheckResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AssetBulkUploadCheckResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AssetBulkUploadCheckResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -81,7 +81,7 @@ class AssetBulkUploadCheckResult {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AssetBulkUploadCheckResult[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AssetBulkUploadCheckResult[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AssetBulkUploadCheckResult[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -55,7 +55,7 @@ class AssetCountByTimeBucket {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AssetCountByTimeBucket[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AssetCountByTimeBucket[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AssetCountByTimeBucket[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -55,7 +55,7 @@ class AssetCountByTimeBucketResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AssetCountByTimeBucketResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AssetCountByTimeBucketResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AssetCountByTimeBucketResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -73,7 +73,7 @@ class AssetCountByUserIdResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AssetCountByUserIdResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AssetCountByUserIdResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AssetCountByUserIdResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -55,7 +55,7 @@ class AssetFileUploadResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AssetFileUploadResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AssetFileUploadResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AssetFileUploadResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/asset_ids_dto.dart
generated
2
mobile/openapi/lib/model/asset_ids_dto.dart
generated
|
@ -49,7 +49,7 @@ class AssetIdsDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AssetIdsDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AssetIdsDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AssetIdsDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -65,7 +65,7 @@ class AssetIdsResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AssetIdsResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AssetIdsResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AssetIdsResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/asset_response_dto.dart
generated
2
mobile/openapi/lib/model/asset_response_dto.dart
generated
|
@ -209,7 +209,7 @@ class AssetResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AssetResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AssetResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AssetResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -79,7 +79,7 @@ class AuthDeviceResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "AuthDeviceResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "AuthDeviceResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "AuthDeviceResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -55,7 +55,7 @@ class ChangePasswordDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "ChangePasswordDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "ChangePasswordDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "ChangePasswordDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -55,7 +55,7 @@ class CheckDuplicateAssetDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "CheckDuplicateAssetDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "CheckDuplicateAssetDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "CheckDuplicateAssetDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -65,7 +65,7 @@ class CheckDuplicateAssetResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "CheckDuplicateAssetResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "CheckDuplicateAssetResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "CheckDuplicateAssetResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -55,7 +55,7 @@ class CheckExistingAssetsDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "CheckExistingAssetsDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "CheckExistingAssetsDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "CheckExistingAssetsDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -49,7 +49,7 @@ class CheckExistingAssetsResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "CheckExistingAssetsResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "CheckExistingAssetsResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "CheckExistingAssetsResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/create_album_dto.dart
generated
2
mobile/openapi/lib/model/create_album_dto.dart
generated
|
@ -61,7 +61,7 @@ class CreateAlbumDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "CreateAlbumDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "CreateAlbumDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "CreateAlbumDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -55,7 +55,7 @@ class CreateProfileImageResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "CreateProfileImageResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "CreateProfileImageResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "CreateProfileImageResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/create_tag_dto.dart
generated
2
mobile/openapi/lib/model/create_tag_dto.dart
generated
|
@ -55,7 +55,7 @@ class CreateTagDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "CreateTagDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "CreateTagDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "CreateTagDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/create_user_dto.dart
generated
2
mobile/openapi/lib/model/create_user_dto.dart
generated
|
@ -87,7 +87,7 @@ class CreateUserDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "CreateUserDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "CreateUserDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "CreateUserDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -73,7 +73,7 @@ class CuratedLocationsResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "CuratedLocationsResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "CuratedLocationsResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "CuratedLocationsResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -73,7 +73,7 @@ class CuratedObjectsResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "CuratedObjectsResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "CuratedObjectsResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "CuratedObjectsResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/delete_asset_dto.dart
generated
2
mobile/openapi/lib/model/delete_asset_dto.dart
generated
|
@ -49,7 +49,7 @@ class DeleteAssetDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "DeleteAssetDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "DeleteAssetDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "DeleteAssetDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -55,7 +55,7 @@ class DeleteAssetResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "DeleteAssetResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "DeleteAssetResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "DeleteAssetResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/download_files_dto.dart
generated
2
mobile/openapi/lib/model/download_files_dto.dart
generated
|
@ -49,7 +49,7 @@ class DownloadFilesDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "DownloadFilesDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "DownloadFilesDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "DownloadFilesDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/exif_response_dto.dart
generated
2
mobile/openapi/lib/model/exif_response_dto.dart
generated
|
@ -243,7 +243,7 @@ class ExifResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "ExifResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "ExifResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "ExifResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -82,7 +82,7 @@ class GetAssetByTimeBucketDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "GetAssetByTimeBucketDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "GetAssetByTimeBucketDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "GetAssetByTimeBucketDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -82,7 +82,7 @@ class GetAssetCountByTimeBucketDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "GetAssetCountByTimeBucketDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "GetAssetCountByTimeBucketDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "GetAssetCountByTimeBucketDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/import_asset_dto.dart
generated
2
mobile/openapi/lib/model/import_asset_dto.dart
generated
|
@ -155,7 +155,7 @@ class ImportAssetDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "ImportAssetDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "ImportAssetDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "ImportAssetDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/job_command_dto.dart
generated
2
mobile/openapi/lib/model/job_command_dto.dart
generated
|
@ -55,7 +55,7 @@ class JobCommandDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "JobCommandDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "JobCommandDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "JobCommandDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/job_counts_dto.dart
generated
2
mobile/openapi/lib/model/job_counts_dto.dart
generated
|
@ -79,7 +79,7 @@ class JobCountsDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "JobCountsDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "JobCountsDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "JobCountsDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/job_settings_dto.dart
generated
2
mobile/openapi/lib/model/job_settings_dto.dart
generated
|
@ -49,7 +49,7 @@ class JobSettingsDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "JobSettingsDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "JobSettingsDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "JobSettingsDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/job_status_dto.dart
generated
2
mobile/openapi/lib/model/job_status_dto.dart
generated
|
@ -55,7 +55,7 @@ class JobStatusDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "JobStatusDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "JobStatusDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "JobStatusDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -55,7 +55,7 @@ class LoginCredentialDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "LoginCredentialDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "LoginCredentialDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "LoginCredentialDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/login_response_dto.dart
generated
2
mobile/openapi/lib/model/login_response_dto.dart
generated
|
@ -91,7 +91,7 @@ class LoginResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "LoginResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "LoginResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "LoginResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -55,7 +55,7 @@ class LogoutResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "LogoutResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "LogoutResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "LogoutResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -61,7 +61,7 @@ class MapMarkerResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "MapMarkerResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "MapMarkerResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "MapMarkerResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -55,7 +55,7 @@ class MemoryLaneResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "MemoryLaneResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "MemoryLaneResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "MemoryLaneResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -49,7 +49,7 @@ class OAuthCallbackDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "OAuthCallbackDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "OAuthCallbackDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "OAuthCallbackDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/o_auth_config_dto.dart
generated
2
mobile/openapi/lib/model/o_auth_config_dto.dart
generated
|
@ -49,7 +49,7 @@ class OAuthConfigDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "OAuthConfigDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "OAuthConfigDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "OAuthConfigDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -103,7 +103,7 @@ class OAuthConfigResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "OAuthConfigResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "OAuthConfigResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "OAuthConfigResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -61,7 +61,7 @@ class PersonResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "PersonResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "PersonResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "PersonResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/person_update_dto.dart
generated
2
mobile/openapi/lib/model/person_update_dto.dart
generated
|
@ -49,7 +49,7 @@ class PersonUpdateDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "PersonUpdateDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "PersonUpdateDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "PersonUpdateDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/queue_status_dto.dart
generated
2
mobile/openapi/lib/model/queue_status_dto.dart
generated
|
@ -55,7 +55,7 @@ class QueueStatusDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "QueueStatusDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "QueueStatusDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "QueueStatusDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/remove_assets_dto.dart
generated
2
mobile/openapi/lib/model/remove_assets_dto.dart
generated
|
@ -49,7 +49,7 @@ class RemoveAssetsDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "RemoveAssetsDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "RemoveAssetsDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "RemoveAssetsDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -67,7 +67,7 @@ class SearchAlbumResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SearchAlbumResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SearchAlbumResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SearchAlbumResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/search_asset_dto.dart
generated
2
mobile/openapi/lib/model/search_asset_dto.dart
generated
|
@ -49,7 +49,7 @@ class SearchAssetDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SearchAssetDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SearchAssetDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SearchAssetDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -67,7 +67,7 @@ class SearchAssetResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SearchAssetResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SearchAssetResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SearchAssetResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -49,7 +49,7 @@ class SearchConfigResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SearchConfigResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SearchConfigResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SearchConfigResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -55,7 +55,7 @@ class SearchExploreItem {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SearchExploreItem[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SearchExploreItem[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SearchExploreItem[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -55,7 +55,7 @@ class SearchExploreResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SearchExploreResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SearchExploreResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SearchExploreResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -55,7 +55,7 @@ class SearchFacetCountResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SearchFacetCountResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SearchFacetCountResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SearchFacetCountResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -55,7 +55,7 @@ class SearchFacetResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SearchFacetResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SearchFacetResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SearchFacetResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -55,7 +55,7 @@ class SearchResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SearchResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SearchResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SearchResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -85,7 +85,7 @@ class ServerInfoResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "ServerInfoResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "ServerInfoResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "ServerInfoResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -49,7 +49,7 @@ class ServerPingResponse {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "ServerPingResponse[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "ServerPingResponse[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "ServerPingResponse[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -67,7 +67,7 @@ class ServerStatsResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "ServerStatsResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "ServerStatsResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "ServerStatsResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -61,7 +61,7 @@ class ServerVersionReponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "ServerVersionReponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "ServerVersionReponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "ServerVersionReponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -115,7 +115,7 @@ class SharedLinkCreateDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SharedLinkCreateDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SharedLinkCreateDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SharedLinkCreateDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -117,7 +117,7 @@ class SharedLinkEditDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SharedLinkEditDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SharedLinkEditDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SharedLinkEditDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -133,7 +133,7 @@ class SharedLinkResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SharedLinkResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SharedLinkResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SharedLinkResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/sign_up_dto.dart
generated
2
mobile/openapi/lib/model/sign_up_dto.dart
generated
|
@ -67,7 +67,7 @@ class SignUpDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SignUpDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SignUpDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SignUpDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -63,7 +63,7 @@ class SmartInfoResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SmartInfoResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SmartInfoResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SmartInfoResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/system_config_dto.dart
generated
2
mobile/openapi/lib/model/system_config_dto.dart
generated
|
@ -73,7 +73,7 @@ class SystemConfigDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SystemConfigDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SystemConfigDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SystemConfigDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -97,7 +97,7 @@ class SystemConfigFFmpegDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SystemConfigFFmpegDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SystemConfigFFmpegDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SystemConfigFFmpegDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -103,7 +103,7 @@ class SystemConfigJobDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SystemConfigJobDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SystemConfigJobDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SystemConfigJobDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -103,7 +103,7 @@ class SystemConfigOAuthDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SystemConfigOAuthDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SystemConfigOAuthDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SystemConfigOAuthDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -49,7 +49,7 @@ class SystemConfigPasswordLoginDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SystemConfigPasswordLoginDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SystemConfigPasswordLoginDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SystemConfigPasswordLoginDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -49,7 +49,7 @@ class SystemConfigStorageTemplateDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SystemConfigStorageTemplateDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SystemConfigStorageTemplateDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SystemConfigStorageTemplateDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -85,7 +85,7 @@ class SystemConfigTemplateStorageOptionDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "SystemConfigTemplateStorageOptionDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "SystemConfigTemplateStorageOptionDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "SystemConfigTemplateStorageOptionDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/tag_response_dto.dart
generated
2
mobile/openapi/lib/model/tag_response_dto.dart
generated
|
@ -67,7 +67,7 @@ class TagResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "TagResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "TagResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "TagResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/update_album_dto.dart
generated
2
mobile/openapi/lib/model/update_album_dto.dart
generated
|
@ -75,7 +75,7 @@ class UpdateAlbumDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "UpdateAlbumDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "UpdateAlbumDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "UpdateAlbumDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/update_asset_dto.dart
generated
2
mobile/openapi/lib/model/update_asset_dto.dart
generated
|
@ -97,7 +97,7 @@ class UpdateAssetDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "UpdateAssetDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "UpdateAssetDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "UpdateAssetDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/update_tag_dto.dart
generated
2
mobile/openapi/lib/model/update_tag_dto.dart
generated
|
@ -59,7 +59,7 @@ class UpdateTagDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "UpdateTagDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "UpdateTagDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "UpdateTagDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/update_user_dto.dart
generated
2
mobile/openapi/lib/model/update_user_dto.dart
generated
|
@ -177,7 +177,7 @@ class UpdateUserDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "UpdateUserDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "UpdateUserDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "UpdateUserDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/usage_by_user_dto.dart
generated
2
mobile/openapi/lib/model/usage_by_user_dto.dart
generated
|
@ -79,7 +79,7 @@ class UsageByUserDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "UsageByUserDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "UsageByUserDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "UsageByUserDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -49,7 +49,7 @@ class UserCountResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "UserCountResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "UserCountResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "UserCountResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
2
mobile/openapi/lib/model/user_response_dto.dart
generated
2
mobile/openapi/lib/model/user_response_dto.dart
generated
|
@ -133,7 +133,7 @@ class UserResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "UserResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "UserResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "UserResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -49,7 +49,7 @@ class ValidateAccessTokenResponseDto {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "ValidateAccessTokenResponseDto[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "ValidateAccessTokenResponseDto[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "ValidateAccessTokenResponseDto[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -120,7 +120,7 @@ class {{{classname}}} {
|
|||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "{{{classname}}}[$key]" is missing from JSON.');
|
||||
assert(json[key] != null, 'Required key "{{{classname}}}[$key]" has a null value in JSON.');
|
||||
// assert(json[key] != null, 'Required key "{{{classname}}}[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
--- native_class.mustache 2023-01-04 09:58:25.683944036 -0500
|
||||
+++ native_class1.mustache 2023-01-04 09:59:43.856353945 -0500
|
||||
--- native_class.mustache 2023-06-22 12:00:16.480685565 -0500
|
||||
+++ native_class1.mustache 2023-06-22 12:01:41.772534371 -0500
|
||||
@@ -91,14 +91,14 @@
|
||||
{{/isDateTime}}
|
||||
{{#isNullable}}
|
||||
|
@ -17,3 +17,12 @@
|
|||
}
|
||||
{{/defaultValue}}
|
||||
{{/required}}
|
||||
@@ -120,7 +120,7 @@
|
||||
assert(() {
|
||||
requiredKeys.forEach((key) {
|
||||
assert(json.containsKey(key), 'Required key "{{{classname}}}[$key]" is missing from JSON.');
|
||||
- assert(json[key] != null, 'Required key "{{{classname}}}[$key]" has a null value in JSON.');
|
||||
+ // assert(json[key] != null, 'Required key "{{{classname}}}[$key]" has a null value in JSON.');
|
||||
});
|
||||
return true;
|
||||
}());
|
||||
|
|
Loading…
Add table
Reference in a new issue