immich 1.2.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- immich/.openapi-generator/FILES +372 -0
- immich/.openapi-generator/VERSION +1 -0
- immich/.openapi-generator-ignore +48 -0
- immich/__init__.py +3 -0
- immich/client/__init__.py +1162 -0
- immich/client/api/__init__.py +39 -0
- immich/client/api/activities_api.py +1092 -0
- immich/client/api/albums_api.py +3228 -0
- immich/client/api/api_keys_api.py +1484 -0
- immich/client/api/assets_api.py +5834 -0
- immich/client/api/authentication_admin_api.py +254 -0
- immich/client/api/authentication_api.py +3881 -0
- immich/client/api/deprecated_api.py +2199 -0
- immich/client/api/download_api.py +603 -0
- immich/client/api/duplicates_api.py +743 -0
- immich/client/api/faces_api.py +1053 -0
- immich/client/api/jobs_api.py +783 -0
- immich/client/api/libraries_api.py +2004 -0
- immich/client/api/maintenance_admin_api.py +533 -0
- immich/client/api/map_api.py +640 -0
- immich/client/api/memories_api.py +2250 -0
- immich/client/api/notifications_admin_api.py +808 -0
- immich/client/api/notifications_api.py +1564 -0
- immich/client/api/partners_api.py +1278 -0
- immich/client/api/people_api.py +2905 -0
- immich/client/api/plugins_api.py +730 -0
- immich/client/api/queues_api.py +1292 -0
- immich/client/api/search_api.py +3198 -0
- immich/client/api/server_api.py +3466 -0
- immich/client/api/sessions_api.py +1472 -0
- immich/client/api/shared_links_api.py +2177 -0
- immich/client/api/stacks_api.py +1769 -0
- immich/client/api/sync_api.py +1512 -0
- immich/client/api/system_config_api.py +967 -0
- immich/client/api/system_metadata_api.py +964 -0
- immich/client/api/tags_api.py +2296 -0
- immich/client/api/timeline_api.py +1193 -0
- immich/client/api/trash_api.py +739 -0
- immich/client/api/users_admin_api.py +2607 -0
- immich/client/api/users_api.py +3577 -0
- immich/client/api/views_api.py +503 -0
- immich/client/api/workflows_api.py +1257 -0
- immich/client/api_client.py +756 -0
- immich/client/api_response.py +20 -0
- immich/client/configuration.py +638 -0
- immich/client/exceptions.py +222 -0
- immich/client/models/__init__.py +424 -0
- immich/client/models/activity_create_dto.py +94 -0
- immich/client/models/activity_response_dto.py +121 -0
- immich/client/models/activity_statistics_response_dto.py +85 -0
- immich/client/models/add_users_dto.py +101 -0
- immich/client/models/admin_onboarding_update_dto.py +82 -0
- immich/client/models/album_response_dto.py +199 -0
- immich/client/models/album_statistics_response_dto.py +90 -0
- immich/client/models/album_user_add_dto.py +87 -0
- immich/client/models/album_user_create_dto.py +87 -0
- immich/client/models/album_user_response_dto.py +95 -0
- immich/client/models/album_user_role.py +34 -0
- immich/client/models/albums_add_assets_dto.py +86 -0
- immich/client/models/albums_add_assets_response_dto.py +86 -0
- immich/client/models/albums_response.py +83 -0
- immich/client/models/albums_update.py +85 -0
- immich/client/models/api_key_create_dto.py +87 -0
- immich/client/models/api_key_create_response_dto.py +94 -0
- immich/client/models/api_key_response_dto.py +102 -0
- immich/client/models/api_key_update_dto.py +87 -0
- immich/client/models/asset_bulk_delete_dto.py +84 -0
- immich/client/models/asset_bulk_update_dto.py +143 -0
- immich/client/models/asset_bulk_upload_check_dto.py +98 -0
- immich/client/models/asset_bulk_upload_check_item.py +85 -0
- immich/client/models/asset_bulk_upload_check_response_dto.py +101 -0
- immich/client/models/asset_bulk_upload_check_result.py +126 -0
- immich/client/models/asset_copy_dto.py +113 -0
- immich/client/models/asset_delta_sync_dto.py +87 -0
- immich/client/models/asset_delta_sync_response_dto.py +102 -0
- immich/client/models/asset_face_create_dto.py +110 -0
- immich/client/models/asset_face_delete_dto.py +82 -0
- immich/client/models/asset_face_response_dto.py +125 -0
- immich/client/models/asset_face_update_dto.py +96 -0
- immich/client/models/asset_face_update_item.py +86 -0
- immich/client/models/asset_face_without_person_response_dto.py +111 -0
- immich/client/models/asset_full_sync_dto.py +95 -0
- immich/client/models/asset_ids_dto.py +83 -0
- immich/client/models/asset_ids_response_dto.py +109 -0
- immich/client/models/asset_job_name.py +36 -0
- immich/client/models/asset_jobs_dto.py +87 -0
- immich/client/models/asset_media_response_dto.py +84 -0
- immich/client/models/asset_media_size.py +35 -0
- immich/client/models/asset_media_status.py +35 -0
- immich/client/models/asset_metadata_key.py +33 -0
- immich/client/models/asset_metadata_response_dto.py +92 -0
- immich/client/models/asset_metadata_upsert_dto.py +101 -0
- immich/client/models/asset_metadata_upsert_item_dto.py +84 -0
- immich/client/models/asset_ocr_response_dto.py +145 -0
- immich/client/models/asset_order.py +34 -0
- immich/client/models/asset_response_dto.py +291 -0
- immich/client/models/asset_stack_response_dto.py +90 -0
- immich/client/models/asset_stats_response_dto.py +90 -0
- immich/client/models/asset_type_enum.py +36 -0
- immich/client/models/asset_visibility.py +36 -0
- immich/client/models/audio_codec.py +36 -0
- immich/client/models/auth_status_response_dto.py +100 -0
- immich/client/models/avatar_update.py +83 -0
- immich/client/models/bulk_id_error_reason.py +36 -0
- immich/client/models/bulk_id_response_dto.py +102 -0
- immich/client/models/bulk_ids_dto.py +83 -0
- immich/client/models/cast_response.py +88 -0
- immich/client/models/cast_update.py +82 -0
- immich/client/models/change_password_dto.py +101 -0
- immich/client/models/check_existing_assets_dto.py +91 -0
- immich/client/models/check_existing_assets_response_dto.py +82 -0
- immich/client/models/clip_config.py +85 -0
- immich/client/models/colorspace.py +34 -0
- immich/client/models/contributor_count_response_dto.py +85 -0
- immich/client/models/cq_mode.py +35 -0
- immich/client/models/create_album_dto.py +112 -0
- immich/client/models/create_library_dto.py +103 -0
- immich/client/models/create_profile_image_response_dto.py +95 -0
- immich/client/models/database_backup_config.py +94 -0
- immich/client/models/download_archive_info.py +85 -0
- immich/client/models/download_info_dto.py +96 -0
- immich/client/models/download_response.py +90 -0
- immich/client/models/download_response_dto.py +100 -0
- immich/client/models/download_update.py +93 -0
- immich/client/models/duplicate_detection_config.py +89 -0
- immich/client/models/duplicate_response_dto.py +98 -0
- immich/client/models/email_notifications_response.py +90 -0
- immich/client/models/email_notifications_update.py +90 -0
- immich/client/models/exif_response_dto.py +284 -0
- immich/client/models/face_dto.py +83 -0
- immich/client/models/facial_recognition_config.py +107 -0
- immich/client/models/folders_response.py +92 -0
- immich/client/models/folders_update.py +85 -0
- immich/client/models/image_format.py +34 -0
- immich/client/models/job_create_dto.py +83 -0
- immich/client/models/job_name.py +87 -0
- immich/client/models/job_settings_dto.py +83 -0
- immich/client/models/library_response_dto.py +118 -0
- immich/client/models/library_stats_response_dto.py +92 -0
- immich/client/models/license_key_dto.py +98 -0
- immich/client/models/license_response_dto.py +101 -0
- immich/client/models/log_level.py +38 -0
- immich/client/models/login_credential_dto.py +85 -0
- immich/client/models/login_response_dto.py +109 -0
- immich/client/models/logout_response_dto.py +85 -0
- immich/client/models/machine_learning_availability_checks_dto.py +90 -0
- immich/client/models/maintenance_action.py +34 -0
- immich/client/models/maintenance_auth_dto.py +82 -0
- immich/client/models/maintenance_login_dto.py +82 -0
- immich/client/models/manual_job_name.py +38 -0
- immich/client/models/map_marker_response_dto.py +111 -0
- immich/client/models/map_reverse_geocode_response_dto.py +105 -0
- immich/client/models/memories_response.py +92 -0
- immich/client/models/memories_update.py +86 -0
- immich/client/models/memory_create_dto.py +112 -0
- immich/client/models/memory_response_dto.py +142 -0
- immich/client/models/memory_search_order.py +35 -0
- immich/client/models/memory_statistics_response_dto.py +82 -0
- immich/client/models/memory_type.py +33 -0
- immich/client/models/memory_update_dto.py +91 -0
- immich/client/models/merge_person_dto.py +83 -0
- immich/client/models/metadata_search_dto.py +277 -0
- immich/client/models/notification_create_dto.py +120 -0
- immich/client/models/notification_delete_all_dto.py +83 -0
- immich/client/models/notification_dto.py +112 -0
- immich/client/models/notification_level.py +36 -0
- immich/client/models/notification_type.py +38 -0
- immich/client/models/notification_update_all_dto.py +90 -0
- immich/client/models/notification_update_dto.py +88 -0
- immich/client/models/o_auth_authorize_response_dto.py +82 -0
- immich/client/models/o_auth_callback_dto.py +90 -0
- immich/client/models/o_auth_config_dto.py +90 -0
- immich/client/models/o_auth_token_endpoint_auth_method.py +34 -0
- immich/client/models/ocr_config.py +109 -0
- immich/client/models/on_this_day_dto.py +86 -0
- immich/client/models/onboarding_dto.py +82 -0
- immich/client/models/onboarding_response_dto.py +82 -0
- immich/client/models/partner_create_dto.py +83 -0
- immich/client/models/partner_direction.py +34 -0
- immich/client/models/partner_response_dto.py +108 -0
- immich/client/models/partner_update_dto.py +82 -0
- immich/client/models/people_response.py +92 -0
- immich/client/models/people_response_dto.py +104 -0
- immich/client/models/people_update.py +85 -0
- immich/client/models/people_update_dto.py +96 -0
- immich/client/models/people_update_item.py +128 -0
- immich/client/models/permission.py +177 -0
- immich/client/models/person_create_dto.py +117 -0
- immich/client/models/person_response_dto.py +115 -0
- immich/client/models/person_statistics_response_dto.py +82 -0
- immich/client/models/person_update_dto.py +125 -0
- immich/client/models/person_with_faces_response_dto.py +133 -0
- immich/client/models/pin_code_change_dto.py +90 -0
- immich/client/models/pin_code_reset_dto.py +85 -0
- immich/client/models/pin_code_setup_dto.py +82 -0
- immich/client/models/places_response_dto.py +100 -0
- immich/client/models/plugin_action_response_dto.py +112 -0
- immich/client/models/plugin_context_type.py +35 -0
- immich/client/models/plugin_filter_response_dto.py +112 -0
- immich/client/models/plugin_response_dto.py +139 -0
- immich/client/models/plugin_trigger_response_dto.py +87 -0
- immich/client/models/plugin_trigger_type.py +34 -0
- immich/client/models/purchase_response.py +88 -0
- immich/client/models/purchase_update.py +92 -0
- immich/client/models/queue_command.py +37 -0
- immich/client/models/queue_command_dto.py +86 -0
- immich/client/models/queue_delete_dto.py +85 -0
- immich/client/models/queue_job_response_dto.py +93 -0
- immich/client/models/queue_job_status.py +38 -0
- immich/client/models/queue_name.py +49 -0
- immich/client/models/queue_response_dto.py +97 -0
- immich/client/models/queue_response_legacy_dto.py +100 -0
- immich/client/models/queue_statistics_dto.py +103 -0
- immich/client/models/queue_status_legacy_dto.py +85 -0
- immich/client/models/queue_update_dto.py +82 -0
- immich/client/models/queues_response_legacy_dto.py +242 -0
- immich/client/models/random_search_dto.py +234 -0
- immich/client/models/ratings_response.py +84 -0
- immich/client/models/ratings_update.py +82 -0
- immich/client/models/reaction_level.py +34 -0
- immich/client/models/reaction_type.py +34 -0
- immich/client/models/reverse_geocoding_state_response_dto.py +101 -0
- immich/client/models/search_album_response_dto.py +114 -0
- immich/client/models/search_asset_response_dto.py +127 -0
- immich/client/models/search_explore_item.py +94 -0
- immich/client/models/search_explore_response_dto.py +98 -0
- immich/client/models/search_facet_count_response_dto.py +85 -0
- immich/client/models/search_facet_response_dto.py +103 -0
- immich/client/models/search_response_dto.py +100 -0
- immich/client/models/search_statistics_response_dto.py +82 -0
- immich/client/models/search_suggestion_type.py +38 -0
- immich/client/models/server_about_response_dto.py +156 -0
- immich/client/models/server_apk_links_dto.py +97 -0
- immich/client/models/server_config_dto.py +118 -0
- immich/client/models/server_features_dto.py +130 -0
- immich/client/models/server_media_types_response_dto.py +90 -0
- immich/client/models/server_ping_response.py +87 -0
- immich/client/models/server_stats_response_dto.py +119 -0
- immich/client/models/server_storage_response_dto.py +108 -0
- immich/client/models/server_theme_dto.py +82 -0
- immich/client/models/server_version_history_response_dto.py +91 -0
- immich/client/models/server_version_response_dto.py +90 -0
- immich/client/models/session_create_dto.py +96 -0
- immich/client/models/session_create_response_dto.py +120 -0
- immich/client/models/session_response_dto.py +117 -0
- immich/client/models/session_unlock_dto.py +85 -0
- immich/client/models/session_update_dto.py +84 -0
- immich/client/models/set_maintenance_mode_dto.py +83 -0
- immich/client/models/shared_link_create_dto.py +142 -0
- immich/client/models/shared_link_edit_dto.py +134 -0
- immich/client/models/shared_link_response_dto.py +173 -0
- immich/client/models/shared_link_type.py +34 -0
- immich/client/models/shared_links_response.py +92 -0
- immich/client/models/shared_links_update.py +85 -0
- immich/client/models/sign_up_dto.py +90 -0
- immich/client/models/smart_search_dto.py +245 -0
- immich/client/models/source_type.py +35 -0
- immich/client/models/stack_create_dto.py +86 -0
- immich/client/models/stack_response_dto.py +100 -0
- immich/client/models/stack_update_dto.py +83 -0
- immich/client/models/statistics_search_dto.py +217 -0
- immich/client/models/sync_ack_delete_dto.py +83 -0
- immich/client/models/sync_ack_dto.py +84 -0
- immich/client/models/sync_ack_set_dto.py +83 -0
- immich/client/models/sync_album_delete_v1.py +82 -0
- immich/client/models/sync_album_to_asset_delete_v1.py +85 -0
- immich/client/models/sync_album_to_asset_v1.py +85 -0
- immich/client/models/sync_album_user_delete_v1.py +85 -0
- immich/client/models/sync_album_user_v1.py +91 -0
- immich/client/models/sync_album_v1.py +122 -0
- immich/client/models/sync_asset_delete_v1.py +82 -0
- immich/client/models/sync_asset_exif_v1.py +296 -0
- immich/client/models/sync_asset_face_delete_v1.py +82 -0
- immich/client/models/sync_asset_face_v1.py +120 -0
- immich/client/models/sync_asset_metadata_delete_v1.py +86 -0
- immich/client/models/sync_asset_metadata_v1.py +91 -0
- immich/client/models/sync_asset_v1.py +187 -0
- immich/client/models/sync_auth_user_v1.py +154 -0
- immich/client/models/sync_entity_type.py +79 -0
- immich/client/models/sync_memory_asset_delete_v1.py +85 -0
- immich/client/models/sync_memory_asset_v1.py +85 -0
- immich/client/models/sync_memory_delete_v1.py +82 -0
- immich/client/models/sync_memory_v1.py +143 -0
- immich/client/models/sync_partner_delete_v1.py +88 -0
- immich/client/models/sync_partner_v1.py +90 -0
- immich/client/models/sync_person_delete_v1.py +82 -0
- immich/client/models/sync_person_v1.py +131 -0
- immich/client/models/sync_request_type.py +52 -0
- immich/client/models/sync_stack_delete_v1.py +82 -0
- immich/client/models/sync_stack_v1.py +101 -0
- immich/client/models/sync_stream_dto.py +86 -0
- immich/client/models/sync_user_delete_v1.py +82 -0
- immich/client/models/sync_user_metadata_delete_v1.py +84 -0
- immich/client/models/sync_user_metadata_v1.py +91 -0
- immich/client/models/sync_user_v1.py +118 -0
- immich/client/models/system_config_backups_dto.py +92 -0
- immich/client/models/system_config_dto.py +302 -0
- immich/client/models/system_config_f_fmpeg_dto.py +156 -0
- immich/client/models/system_config_faces_dto.py +82 -0
- immich/client/models/system_config_generated_fullsize_image_dto.py +92 -0
- immich/client/models/system_config_generated_image_dto.py +92 -0
- immich/client/models/system_config_image_dto.py +124 -0
- immich/client/models/system_config_job_dto.py +194 -0
- immich/client/models/system_config_library_dto.py +104 -0
- immich/client/models/system_config_library_scan_dto.py +85 -0
- immich/client/models/system_config_library_watch_dto.py +82 -0
- immich/client/models/system_config_logging_dto.py +86 -0
- immich/client/models/system_config_machine_learning_dto.py +147 -0
- immich/client/models/system_config_map_dto.py +90 -0
- immich/client/models/system_config_metadata_dto.py +92 -0
- immich/client/models/system_config_new_version_check_dto.py +82 -0
- immich/client/models/system_config_nightly_tasks_dto.py +103 -0
- immich/client/models/system_config_notifications_dto.py +92 -0
- immich/client/models/system_config_o_auth_dto.py +155 -0
- immich/client/models/system_config_password_login_dto.py +82 -0
- immich/client/models/system_config_reverse_geocoding_dto.py +82 -0
- immich/client/models/system_config_server_dto.py +94 -0
- immich/client/models/system_config_smtp_dto.py +100 -0
- immich/client/models/system_config_smtp_transport_dto.py +107 -0
- immich/client/models/system_config_storage_template_dto.py +94 -0
- immich/client/models/system_config_template_emails_dto.py +94 -0
- immich/client/models/system_config_template_storage_option_dto.py +109 -0
- immich/client/models/system_config_templates_dto.py +94 -0
- immich/client/models/system_config_theme_dto.py +82 -0
- immich/client/models/system_config_trash_dto.py +86 -0
- immich/client/models/system_config_user_dto.py +83 -0
- immich/client/models/tag_bulk_assets_dto.py +86 -0
- immich/client/models/tag_bulk_assets_response_dto.py +82 -0
- immich/client/models/tag_create_dto.py +111 -0
- immich/client/models/tag_response_dto.py +107 -0
- immich/client/models/tag_update_dto.py +87 -0
- immich/client/models/tag_upsert_dto.py +82 -0
- immich/client/models/tags_response.py +92 -0
- immich/client/models/tags_update.py +85 -0
- immich/client/models/template_dto.py +82 -0
- immich/client/models/template_response_dto.py +83 -0
- immich/client/models/test_email_response_dto.py +82 -0
- immich/client/models/time_bucket_asset_response_dto.py +195 -0
- immich/client/models/time_buckets_response_dto.py +88 -0
- immich/client/models/tone_mapping.py +36 -0
- immich/client/models/transcode_hw_accel.py +37 -0
- immich/client/models/transcode_policy.py +37 -0
- immich/client/models/trash_response_dto.py +82 -0
- immich/client/models/update_album_dto.py +106 -0
- immich/client/models/update_album_user_dto.py +83 -0
- immich/client/models/update_asset_dto.py +135 -0
- immich/client/models/update_library_dto.py +95 -0
- immich/client/models/usage_by_user_dto.py +117 -0
- immich/client/models/user_admin_create_dto.py +136 -0
- immich/client/models/user_admin_delete_dto.py +82 -0
- immich/client/models/user_admin_response_dto.py +176 -0
- immich/client/models/user_admin_update_dto.py +141 -0
- immich/client/models/user_avatar_color.py +42 -0
- immich/client/models/user_license.py +91 -0
- immich/client/models/user_metadata_key.py +35 -0
- immich/client/models/user_preferences_response_dto.py +186 -0
- immich/client/models/user_preferences_update_dto.py +197 -0
- immich/client/models/user_response_dto.py +105 -0
- immich/client/models/user_status.py +35 -0
- immich/client/models/user_update_me_dto.py +98 -0
- immich/client/models/validate_access_token_response_dto.py +82 -0
- immich/client/models/validate_library_dto.py +93 -0
- immich/client/models/validate_library_import_path_response_dto.py +92 -0
- immich/client/models/validate_library_response_dto.py +103 -0
- immich/client/models/version_check_state_response_dto.py +98 -0
- immich/client/models/video_codec.py +36 -0
- immich/client/models/video_container.py +36 -0
- immich/client/models/workflow_action_item_dto.py +89 -0
- immich/client/models/workflow_action_response_dto.py +105 -0
- immich/client/models/workflow_create_dto.py +128 -0
- immich/client/models/workflow_filter_item_dto.py +89 -0
- immich/client/models/workflow_filter_response_dto.py +105 -0
- immich/client/models/workflow_response_dto.py +144 -0
- immich/client/models/workflow_update_dto.py +128 -0
- immich/client/py.typed +0 -0
- immich/client/rest.py +199 -0
- immich/client_wrapper/__init__.py +15 -0
- immich/client_wrapper/assets_api_wrapped.py +87 -0
- immich/client_wrapper/download_api_wrapped.py +111 -0
- immich/client_wrapper/users_api_wrapped.py +41 -0
- immich/py.typed +0 -0
- immich/sdk.py +365 -0
- immich/utils.py +100 -0
- immich-1.2.1.dist-info/METADATA +166 -0
- immich-1.2.1.dist-info/RECORD +387 -0
- immich-1.2.1.dist-info/WHEEL +4 -0
- immich-1.2.1.dist-info/licenses/LICENSE +9 -0
|
@@ -0,0 +1,1162 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
Immich
|
|
7
|
+
|
|
8
|
+
Immich API
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 2.4.1
|
|
11
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
|
+
|
|
13
|
+
Do not edit the class manually.
|
|
14
|
+
""" # noqa: E501
|
|
15
|
+
|
|
16
|
+
__version__ = "1.0.0"
|
|
17
|
+
|
|
18
|
+
# Define package exports
|
|
19
|
+
__all__ = [
|
|
20
|
+
"APIKeysApi",
|
|
21
|
+
"ActivitiesApi",
|
|
22
|
+
"AlbumsApi",
|
|
23
|
+
"AssetsApi",
|
|
24
|
+
"AuthenticationApi",
|
|
25
|
+
"AuthenticationAdminApi",
|
|
26
|
+
"DeprecatedApi",
|
|
27
|
+
"DownloadApi",
|
|
28
|
+
"DuplicatesApi",
|
|
29
|
+
"FacesApi",
|
|
30
|
+
"JobsApi",
|
|
31
|
+
"LibrariesApi",
|
|
32
|
+
"MaintenanceAdminApi",
|
|
33
|
+
"MapApi",
|
|
34
|
+
"MemoriesApi",
|
|
35
|
+
"NotificationsApi",
|
|
36
|
+
"NotificationsAdminApi",
|
|
37
|
+
"PartnersApi",
|
|
38
|
+
"PeopleApi",
|
|
39
|
+
"PluginsApi",
|
|
40
|
+
"QueuesApi",
|
|
41
|
+
"SearchApi",
|
|
42
|
+
"ServerApi",
|
|
43
|
+
"SessionsApi",
|
|
44
|
+
"SharedLinksApi",
|
|
45
|
+
"StacksApi",
|
|
46
|
+
"SyncApi",
|
|
47
|
+
"SystemConfigApi",
|
|
48
|
+
"SystemMetadataApi",
|
|
49
|
+
"TagsApi",
|
|
50
|
+
"TimelineApi",
|
|
51
|
+
"TrashApi",
|
|
52
|
+
"UsersApi",
|
|
53
|
+
"UsersAdminApi",
|
|
54
|
+
"ViewsApi",
|
|
55
|
+
"WorkflowsApi",
|
|
56
|
+
"ApiResponse",
|
|
57
|
+
"ApiClient",
|
|
58
|
+
"Configuration",
|
|
59
|
+
"OpenApiException",
|
|
60
|
+
"ApiTypeError",
|
|
61
|
+
"ApiValueError",
|
|
62
|
+
"ApiKeyError",
|
|
63
|
+
"ApiAttributeError",
|
|
64
|
+
"ApiException",
|
|
65
|
+
"APIKeyCreateDto",
|
|
66
|
+
"APIKeyCreateResponseDto",
|
|
67
|
+
"APIKeyResponseDto",
|
|
68
|
+
"APIKeyUpdateDto",
|
|
69
|
+
"ActivityCreateDto",
|
|
70
|
+
"ActivityResponseDto",
|
|
71
|
+
"ActivityStatisticsResponseDto",
|
|
72
|
+
"AddUsersDto",
|
|
73
|
+
"AdminOnboardingUpdateDto",
|
|
74
|
+
"AlbumResponseDto",
|
|
75
|
+
"AlbumStatisticsResponseDto",
|
|
76
|
+
"AlbumUserAddDto",
|
|
77
|
+
"AlbumUserCreateDto",
|
|
78
|
+
"AlbumUserResponseDto",
|
|
79
|
+
"AlbumUserRole",
|
|
80
|
+
"AlbumsAddAssetsDto",
|
|
81
|
+
"AlbumsAddAssetsResponseDto",
|
|
82
|
+
"AlbumsResponse",
|
|
83
|
+
"AlbumsUpdate",
|
|
84
|
+
"AssetBulkDeleteDto",
|
|
85
|
+
"AssetBulkUpdateDto",
|
|
86
|
+
"AssetBulkUploadCheckDto",
|
|
87
|
+
"AssetBulkUploadCheckItem",
|
|
88
|
+
"AssetBulkUploadCheckResponseDto",
|
|
89
|
+
"AssetBulkUploadCheckResult",
|
|
90
|
+
"AssetCopyDto",
|
|
91
|
+
"AssetDeltaSyncDto",
|
|
92
|
+
"AssetDeltaSyncResponseDto",
|
|
93
|
+
"AssetFaceCreateDto",
|
|
94
|
+
"AssetFaceDeleteDto",
|
|
95
|
+
"AssetFaceResponseDto",
|
|
96
|
+
"AssetFaceUpdateDto",
|
|
97
|
+
"AssetFaceUpdateItem",
|
|
98
|
+
"AssetFaceWithoutPersonResponseDto",
|
|
99
|
+
"AssetFullSyncDto",
|
|
100
|
+
"AssetIdsDto",
|
|
101
|
+
"AssetIdsResponseDto",
|
|
102
|
+
"AssetJobName",
|
|
103
|
+
"AssetJobsDto",
|
|
104
|
+
"AssetMediaResponseDto",
|
|
105
|
+
"AssetMediaSize",
|
|
106
|
+
"AssetMediaStatus",
|
|
107
|
+
"AssetMetadataKey",
|
|
108
|
+
"AssetMetadataResponseDto",
|
|
109
|
+
"AssetMetadataUpsertDto",
|
|
110
|
+
"AssetMetadataUpsertItemDto",
|
|
111
|
+
"AssetOcrResponseDto",
|
|
112
|
+
"AssetOrder",
|
|
113
|
+
"AssetResponseDto",
|
|
114
|
+
"AssetStackResponseDto",
|
|
115
|
+
"AssetStatsResponseDto",
|
|
116
|
+
"AssetTypeEnum",
|
|
117
|
+
"AssetVisibility",
|
|
118
|
+
"AudioCodec",
|
|
119
|
+
"AuthStatusResponseDto",
|
|
120
|
+
"AvatarUpdate",
|
|
121
|
+
"BulkIdErrorReason",
|
|
122
|
+
"BulkIdResponseDto",
|
|
123
|
+
"BulkIdsDto",
|
|
124
|
+
"CLIPConfig",
|
|
125
|
+
"CQMode",
|
|
126
|
+
"CastResponse",
|
|
127
|
+
"CastUpdate",
|
|
128
|
+
"ChangePasswordDto",
|
|
129
|
+
"CheckExistingAssetsDto",
|
|
130
|
+
"CheckExistingAssetsResponseDto",
|
|
131
|
+
"Colorspace",
|
|
132
|
+
"ContributorCountResponseDto",
|
|
133
|
+
"CreateAlbumDto",
|
|
134
|
+
"CreateLibraryDto",
|
|
135
|
+
"CreateProfileImageResponseDto",
|
|
136
|
+
"DatabaseBackupConfig",
|
|
137
|
+
"DownloadArchiveInfo",
|
|
138
|
+
"DownloadInfoDto",
|
|
139
|
+
"DownloadResponse",
|
|
140
|
+
"DownloadResponseDto",
|
|
141
|
+
"DownloadUpdate",
|
|
142
|
+
"DuplicateDetectionConfig",
|
|
143
|
+
"DuplicateResponseDto",
|
|
144
|
+
"EmailNotificationsResponse",
|
|
145
|
+
"EmailNotificationsUpdate",
|
|
146
|
+
"ExifResponseDto",
|
|
147
|
+
"FaceDto",
|
|
148
|
+
"FacialRecognitionConfig",
|
|
149
|
+
"FoldersResponse",
|
|
150
|
+
"FoldersUpdate",
|
|
151
|
+
"ImageFormat",
|
|
152
|
+
"JobCreateDto",
|
|
153
|
+
"JobName",
|
|
154
|
+
"JobSettingsDto",
|
|
155
|
+
"LibraryResponseDto",
|
|
156
|
+
"LibraryStatsResponseDto",
|
|
157
|
+
"LicenseKeyDto",
|
|
158
|
+
"LicenseResponseDto",
|
|
159
|
+
"LogLevel",
|
|
160
|
+
"LoginCredentialDto",
|
|
161
|
+
"LoginResponseDto",
|
|
162
|
+
"LogoutResponseDto",
|
|
163
|
+
"MachineLearningAvailabilityChecksDto",
|
|
164
|
+
"MaintenanceAction",
|
|
165
|
+
"MaintenanceAuthDto",
|
|
166
|
+
"MaintenanceLoginDto",
|
|
167
|
+
"ManualJobName",
|
|
168
|
+
"MapMarkerResponseDto",
|
|
169
|
+
"MapReverseGeocodeResponseDto",
|
|
170
|
+
"MemoriesResponse",
|
|
171
|
+
"MemoriesUpdate",
|
|
172
|
+
"MemoryCreateDto",
|
|
173
|
+
"MemoryResponseDto",
|
|
174
|
+
"MemorySearchOrder",
|
|
175
|
+
"MemoryStatisticsResponseDto",
|
|
176
|
+
"MemoryType",
|
|
177
|
+
"MemoryUpdateDto",
|
|
178
|
+
"MergePersonDto",
|
|
179
|
+
"MetadataSearchDto",
|
|
180
|
+
"NotificationCreateDto",
|
|
181
|
+
"NotificationDeleteAllDto",
|
|
182
|
+
"NotificationDto",
|
|
183
|
+
"NotificationLevel",
|
|
184
|
+
"NotificationType",
|
|
185
|
+
"NotificationUpdateAllDto",
|
|
186
|
+
"NotificationUpdateDto",
|
|
187
|
+
"OAuthAuthorizeResponseDto",
|
|
188
|
+
"OAuthCallbackDto",
|
|
189
|
+
"OAuthConfigDto",
|
|
190
|
+
"OAuthTokenEndpointAuthMethod",
|
|
191
|
+
"OcrConfig",
|
|
192
|
+
"OnThisDayDto",
|
|
193
|
+
"OnboardingDto",
|
|
194
|
+
"OnboardingResponseDto",
|
|
195
|
+
"PartnerCreateDto",
|
|
196
|
+
"PartnerDirection",
|
|
197
|
+
"PartnerResponseDto",
|
|
198
|
+
"PartnerUpdateDto",
|
|
199
|
+
"PeopleResponse",
|
|
200
|
+
"PeopleResponseDto",
|
|
201
|
+
"PeopleUpdate",
|
|
202
|
+
"PeopleUpdateDto",
|
|
203
|
+
"PeopleUpdateItem",
|
|
204
|
+
"Permission",
|
|
205
|
+
"PersonCreateDto",
|
|
206
|
+
"PersonResponseDto",
|
|
207
|
+
"PersonStatisticsResponseDto",
|
|
208
|
+
"PersonUpdateDto",
|
|
209
|
+
"PersonWithFacesResponseDto",
|
|
210
|
+
"PinCodeChangeDto",
|
|
211
|
+
"PinCodeResetDto",
|
|
212
|
+
"PinCodeSetupDto",
|
|
213
|
+
"PlacesResponseDto",
|
|
214
|
+
"PluginActionResponseDto",
|
|
215
|
+
"PluginContextType",
|
|
216
|
+
"PluginFilterResponseDto",
|
|
217
|
+
"PluginResponseDto",
|
|
218
|
+
"PluginTriggerResponseDto",
|
|
219
|
+
"PluginTriggerType",
|
|
220
|
+
"PurchaseResponse",
|
|
221
|
+
"PurchaseUpdate",
|
|
222
|
+
"QueueCommand",
|
|
223
|
+
"QueueCommandDto",
|
|
224
|
+
"QueueDeleteDto",
|
|
225
|
+
"QueueJobResponseDto",
|
|
226
|
+
"QueueJobStatus",
|
|
227
|
+
"QueueName",
|
|
228
|
+
"QueueResponseDto",
|
|
229
|
+
"QueueResponseLegacyDto",
|
|
230
|
+
"QueueStatisticsDto",
|
|
231
|
+
"QueueStatusLegacyDto",
|
|
232
|
+
"QueueUpdateDto",
|
|
233
|
+
"QueuesResponseLegacyDto",
|
|
234
|
+
"RandomSearchDto",
|
|
235
|
+
"RatingsResponse",
|
|
236
|
+
"RatingsUpdate",
|
|
237
|
+
"ReactionLevel",
|
|
238
|
+
"ReactionType",
|
|
239
|
+
"ReverseGeocodingStateResponseDto",
|
|
240
|
+
"SearchAlbumResponseDto",
|
|
241
|
+
"SearchAssetResponseDto",
|
|
242
|
+
"SearchExploreItem",
|
|
243
|
+
"SearchExploreResponseDto",
|
|
244
|
+
"SearchFacetCountResponseDto",
|
|
245
|
+
"SearchFacetResponseDto",
|
|
246
|
+
"SearchResponseDto",
|
|
247
|
+
"SearchStatisticsResponseDto",
|
|
248
|
+
"SearchSuggestionType",
|
|
249
|
+
"ServerAboutResponseDto",
|
|
250
|
+
"ServerApkLinksDto",
|
|
251
|
+
"ServerConfigDto",
|
|
252
|
+
"ServerFeaturesDto",
|
|
253
|
+
"ServerMediaTypesResponseDto",
|
|
254
|
+
"ServerPingResponse",
|
|
255
|
+
"ServerStatsResponseDto",
|
|
256
|
+
"ServerStorageResponseDto",
|
|
257
|
+
"ServerThemeDto",
|
|
258
|
+
"ServerVersionHistoryResponseDto",
|
|
259
|
+
"ServerVersionResponseDto",
|
|
260
|
+
"SessionCreateDto",
|
|
261
|
+
"SessionCreateResponseDto",
|
|
262
|
+
"SessionResponseDto",
|
|
263
|
+
"SessionUnlockDto",
|
|
264
|
+
"SessionUpdateDto",
|
|
265
|
+
"SetMaintenanceModeDto",
|
|
266
|
+
"SharedLinkCreateDto",
|
|
267
|
+
"SharedLinkEditDto",
|
|
268
|
+
"SharedLinkResponseDto",
|
|
269
|
+
"SharedLinkType",
|
|
270
|
+
"SharedLinksResponse",
|
|
271
|
+
"SharedLinksUpdate",
|
|
272
|
+
"SignUpDto",
|
|
273
|
+
"SmartSearchDto",
|
|
274
|
+
"SourceType",
|
|
275
|
+
"StackCreateDto",
|
|
276
|
+
"StackResponseDto",
|
|
277
|
+
"StackUpdateDto",
|
|
278
|
+
"StatisticsSearchDto",
|
|
279
|
+
"SyncAckDeleteDto",
|
|
280
|
+
"SyncAckDto",
|
|
281
|
+
"SyncAckSetDto",
|
|
282
|
+
"SyncAlbumDeleteV1",
|
|
283
|
+
"SyncAlbumToAssetDeleteV1",
|
|
284
|
+
"SyncAlbumToAssetV1",
|
|
285
|
+
"SyncAlbumUserDeleteV1",
|
|
286
|
+
"SyncAlbumUserV1",
|
|
287
|
+
"SyncAlbumV1",
|
|
288
|
+
"SyncAssetDeleteV1",
|
|
289
|
+
"SyncAssetExifV1",
|
|
290
|
+
"SyncAssetFaceDeleteV1",
|
|
291
|
+
"SyncAssetFaceV1",
|
|
292
|
+
"SyncAssetMetadataDeleteV1",
|
|
293
|
+
"SyncAssetMetadataV1",
|
|
294
|
+
"SyncAssetV1",
|
|
295
|
+
"SyncAuthUserV1",
|
|
296
|
+
"SyncEntityType",
|
|
297
|
+
"SyncMemoryAssetDeleteV1",
|
|
298
|
+
"SyncMemoryAssetV1",
|
|
299
|
+
"SyncMemoryDeleteV1",
|
|
300
|
+
"SyncMemoryV1",
|
|
301
|
+
"SyncPartnerDeleteV1",
|
|
302
|
+
"SyncPartnerV1",
|
|
303
|
+
"SyncPersonDeleteV1",
|
|
304
|
+
"SyncPersonV1",
|
|
305
|
+
"SyncRequestType",
|
|
306
|
+
"SyncStackDeleteV1",
|
|
307
|
+
"SyncStackV1",
|
|
308
|
+
"SyncStreamDto",
|
|
309
|
+
"SyncUserDeleteV1",
|
|
310
|
+
"SyncUserMetadataDeleteV1",
|
|
311
|
+
"SyncUserMetadataV1",
|
|
312
|
+
"SyncUserV1",
|
|
313
|
+
"SystemConfigBackupsDto",
|
|
314
|
+
"SystemConfigDto",
|
|
315
|
+
"SystemConfigFFmpegDto",
|
|
316
|
+
"SystemConfigFacesDto",
|
|
317
|
+
"SystemConfigGeneratedFullsizeImageDto",
|
|
318
|
+
"SystemConfigGeneratedImageDto",
|
|
319
|
+
"SystemConfigImageDto",
|
|
320
|
+
"SystemConfigJobDto",
|
|
321
|
+
"SystemConfigLibraryDto",
|
|
322
|
+
"SystemConfigLibraryScanDto",
|
|
323
|
+
"SystemConfigLibraryWatchDto",
|
|
324
|
+
"SystemConfigLoggingDto",
|
|
325
|
+
"SystemConfigMachineLearningDto",
|
|
326
|
+
"SystemConfigMapDto",
|
|
327
|
+
"SystemConfigMetadataDto",
|
|
328
|
+
"SystemConfigNewVersionCheckDto",
|
|
329
|
+
"SystemConfigNightlyTasksDto",
|
|
330
|
+
"SystemConfigNotificationsDto",
|
|
331
|
+
"SystemConfigOAuthDto",
|
|
332
|
+
"SystemConfigPasswordLoginDto",
|
|
333
|
+
"SystemConfigReverseGeocodingDto",
|
|
334
|
+
"SystemConfigServerDto",
|
|
335
|
+
"SystemConfigSmtpDto",
|
|
336
|
+
"SystemConfigSmtpTransportDto",
|
|
337
|
+
"SystemConfigStorageTemplateDto",
|
|
338
|
+
"SystemConfigTemplateEmailsDto",
|
|
339
|
+
"SystemConfigTemplateStorageOptionDto",
|
|
340
|
+
"SystemConfigTemplatesDto",
|
|
341
|
+
"SystemConfigThemeDto",
|
|
342
|
+
"SystemConfigTrashDto",
|
|
343
|
+
"SystemConfigUserDto",
|
|
344
|
+
"TagBulkAssetsDto",
|
|
345
|
+
"TagBulkAssetsResponseDto",
|
|
346
|
+
"TagCreateDto",
|
|
347
|
+
"TagResponseDto",
|
|
348
|
+
"TagUpdateDto",
|
|
349
|
+
"TagUpsertDto",
|
|
350
|
+
"TagsResponse",
|
|
351
|
+
"TagsUpdate",
|
|
352
|
+
"TemplateDto",
|
|
353
|
+
"TemplateResponseDto",
|
|
354
|
+
"TestEmailResponseDto",
|
|
355
|
+
"TimeBucketAssetResponseDto",
|
|
356
|
+
"TimeBucketsResponseDto",
|
|
357
|
+
"ToneMapping",
|
|
358
|
+
"TranscodeHWAccel",
|
|
359
|
+
"TranscodePolicy",
|
|
360
|
+
"TrashResponseDto",
|
|
361
|
+
"UpdateAlbumDto",
|
|
362
|
+
"UpdateAlbumUserDto",
|
|
363
|
+
"UpdateAssetDto",
|
|
364
|
+
"UpdateLibraryDto",
|
|
365
|
+
"UsageByUserDto",
|
|
366
|
+
"UserAdminCreateDto",
|
|
367
|
+
"UserAdminDeleteDto",
|
|
368
|
+
"UserAdminResponseDto",
|
|
369
|
+
"UserAdminUpdateDto",
|
|
370
|
+
"UserAvatarColor",
|
|
371
|
+
"UserLicense",
|
|
372
|
+
"UserMetadataKey",
|
|
373
|
+
"UserPreferencesResponseDto",
|
|
374
|
+
"UserPreferencesUpdateDto",
|
|
375
|
+
"UserResponseDto",
|
|
376
|
+
"UserStatus",
|
|
377
|
+
"UserUpdateMeDto",
|
|
378
|
+
"ValidateAccessTokenResponseDto",
|
|
379
|
+
"ValidateLibraryDto",
|
|
380
|
+
"ValidateLibraryImportPathResponseDto",
|
|
381
|
+
"ValidateLibraryResponseDto",
|
|
382
|
+
"VersionCheckStateResponseDto",
|
|
383
|
+
"VideoCodec",
|
|
384
|
+
"VideoContainer",
|
|
385
|
+
"WorkflowActionItemDto",
|
|
386
|
+
"WorkflowActionResponseDto",
|
|
387
|
+
"WorkflowCreateDto",
|
|
388
|
+
"WorkflowFilterItemDto",
|
|
389
|
+
"WorkflowFilterResponseDto",
|
|
390
|
+
"WorkflowResponseDto",
|
|
391
|
+
"WorkflowUpdateDto",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
# import apis into sdk package
|
|
395
|
+
from immich.client.api.api_keys_api import APIKeysApi as APIKeysApi
|
|
396
|
+
from immich.client.api.activities_api import ActivitiesApi as ActivitiesApi
|
|
397
|
+
from immich.client.api.albums_api import AlbumsApi as AlbumsApi
|
|
398
|
+
from immich.client.api.assets_api import AssetsApi as AssetsApi
|
|
399
|
+
from immich.client.api.authentication_api import AuthenticationApi as AuthenticationApi
|
|
400
|
+
from immich.client.api.authentication_admin_api import (
|
|
401
|
+
AuthenticationAdminApi as AuthenticationAdminApi,
|
|
402
|
+
)
|
|
403
|
+
from immich.client.api.deprecated_api import DeprecatedApi as DeprecatedApi
|
|
404
|
+
from immich.client.api.download_api import DownloadApi as DownloadApi
|
|
405
|
+
from immich.client.api.duplicates_api import DuplicatesApi as DuplicatesApi
|
|
406
|
+
from immich.client.api.faces_api import FacesApi as FacesApi
|
|
407
|
+
from immich.client.api.jobs_api import JobsApi as JobsApi
|
|
408
|
+
from immich.client.api.libraries_api import LibrariesApi as LibrariesApi
|
|
409
|
+
from immich.client.api.maintenance_admin_api import (
|
|
410
|
+
MaintenanceAdminApi as MaintenanceAdminApi,
|
|
411
|
+
)
|
|
412
|
+
from immich.client.api.map_api import MapApi as MapApi
|
|
413
|
+
from immich.client.api.memories_api import MemoriesApi as MemoriesApi
|
|
414
|
+
from immich.client.api.notifications_api import NotificationsApi as NotificationsApi
|
|
415
|
+
from immich.client.api.notifications_admin_api import (
|
|
416
|
+
NotificationsAdminApi as NotificationsAdminApi,
|
|
417
|
+
)
|
|
418
|
+
from immich.client.api.partners_api import PartnersApi as PartnersApi
|
|
419
|
+
from immich.client.api.people_api import PeopleApi as PeopleApi
|
|
420
|
+
from immich.client.api.plugins_api import PluginsApi as PluginsApi
|
|
421
|
+
from immich.client.api.queues_api import QueuesApi as QueuesApi
|
|
422
|
+
from immich.client.api.search_api import SearchApi as SearchApi
|
|
423
|
+
from immich.client.api.server_api import ServerApi as ServerApi
|
|
424
|
+
from immich.client.api.sessions_api import SessionsApi as SessionsApi
|
|
425
|
+
from immich.client.api.shared_links_api import SharedLinksApi as SharedLinksApi
|
|
426
|
+
from immich.client.api.stacks_api import StacksApi as StacksApi
|
|
427
|
+
from immich.client.api.sync_api import SyncApi as SyncApi
|
|
428
|
+
from immich.client.api.system_config_api import SystemConfigApi as SystemConfigApi
|
|
429
|
+
from immich.client.api.system_metadata_api import SystemMetadataApi as SystemMetadataApi
|
|
430
|
+
from immich.client.api.tags_api import TagsApi as TagsApi
|
|
431
|
+
from immich.client.api.timeline_api import TimelineApi as TimelineApi
|
|
432
|
+
from immich.client.api.trash_api import TrashApi as TrashApi
|
|
433
|
+
from immich.client.api.users_api import UsersApi as UsersApi
|
|
434
|
+
from immich.client.api.users_admin_api import UsersAdminApi as UsersAdminApi
|
|
435
|
+
from immich.client.api.views_api import ViewsApi as ViewsApi
|
|
436
|
+
from immich.client.api.workflows_api import WorkflowsApi as WorkflowsApi
|
|
437
|
+
|
|
438
|
+
# import ApiClient
|
|
439
|
+
from immich.client.api_response import ApiResponse as ApiResponse
|
|
440
|
+
from immich.client.api_client import ApiClient as ApiClient
|
|
441
|
+
from immich.client.configuration import Configuration as Configuration
|
|
442
|
+
from immich.client.exceptions import OpenApiException as OpenApiException
|
|
443
|
+
from immich.client.exceptions import ApiTypeError as ApiTypeError
|
|
444
|
+
from immich.client.exceptions import ApiValueError as ApiValueError
|
|
445
|
+
from immich.client.exceptions import ApiKeyError as ApiKeyError
|
|
446
|
+
from immich.client.exceptions import ApiAttributeError as ApiAttributeError
|
|
447
|
+
from immich.client.exceptions import ApiException as ApiException
|
|
448
|
+
|
|
449
|
+
# import models into sdk package
|
|
450
|
+
from immich.client.models.api_key_create_dto import APIKeyCreateDto as APIKeyCreateDto
|
|
451
|
+
from immich.client.models.api_key_create_response_dto import (
|
|
452
|
+
APIKeyCreateResponseDto as APIKeyCreateResponseDto,
|
|
453
|
+
)
|
|
454
|
+
from immich.client.models.api_key_response_dto import (
|
|
455
|
+
APIKeyResponseDto as APIKeyResponseDto,
|
|
456
|
+
)
|
|
457
|
+
from immich.client.models.api_key_update_dto import APIKeyUpdateDto as APIKeyUpdateDto
|
|
458
|
+
from immich.client.models.activity_create_dto import (
|
|
459
|
+
ActivityCreateDto as ActivityCreateDto,
|
|
460
|
+
)
|
|
461
|
+
from immich.client.models.activity_response_dto import (
|
|
462
|
+
ActivityResponseDto as ActivityResponseDto,
|
|
463
|
+
)
|
|
464
|
+
from immich.client.models.activity_statistics_response_dto import (
|
|
465
|
+
ActivityStatisticsResponseDto as ActivityStatisticsResponseDto,
|
|
466
|
+
)
|
|
467
|
+
from immich.client.models.add_users_dto import AddUsersDto as AddUsersDto
|
|
468
|
+
from immich.client.models.admin_onboarding_update_dto import (
|
|
469
|
+
AdminOnboardingUpdateDto as AdminOnboardingUpdateDto,
|
|
470
|
+
)
|
|
471
|
+
from immich.client.models.album_response_dto import AlbumResponseDto as AlbumResponseDto
|
|
472
|
+
from immich.client.models.album_statistics_response_dto import (
|
|
473
|
+
AlbumStatisticsResponseDto as AlbumStatisticsResponseDto,
|
|
474
|
+
)
|
|
475
|
+
from immich.client.models.album_user_add_dto import AlbumUserAddDto as AlbumUserAddDto
|
|
476
|
+
from immich.client.models.album_user_create_dto import (
|
|
477
|
+
AlbumUserCreateDto as AlbumUserCreateDto,
|
|
478
|
+
)
|
|
479
|
+
from immich.client.models.album_user_response_dto import (
|
|
480
|
+
AlbumUserResponseDto as AlbumUserResponseDto,
|
|
481
|
+
)
|
|
482
|
+
from immich.client.models.album_user_role import AlbumUserRole as AlbumUserRole
|
|
483
|
+
from immich.client.models.albums_add_assets_dto import (
|
|
484
|
+
AlbumsAddAssetsDto as AlbumsAddAssetsDto,
|
|
485
|
+
)
|
|
486
|
+
from immich.client.models.albums_add_assets_response_dto import (
|
|
487
|
+
AlbumsAddAssetsResponseDto as AlbumsAddAssetsResponseDto,
|
|
488
|
+
)
|
|
489
|
+
from immich.client.models.albums_response import AlbumsResponse as AlbumsResponse
|
|
490
|
+
from immich.client.models.albums_update import AlbumsUpdate as AlbumsUpdate
|
|
491
|
+
from immich.client.models.asset_bulk_delete_dto import (
|
|
492
|
+
AssetBulkDeleteDto as AssetBulkDeleteDto,
|
|
493
|
+
)
|
|
494
|
+
from immich.client.models.asset_bulk_update_dto import (
|
|
495
|
+
AssetBulkUpdateDto as AssetBulkUpdateDto,
|
|
496
|
+
)
|
|
497
|
+
from immich.client.models.asset_bulk_upload_check_dto import (
|
|
498
|
+
AssetBulkUploadCheckDto as AssetBulkUploadCheckDto,
|
|
499
|
+
)
|
|
500
|
+
from immich.client.models.asset_bulk_upload_check_item import (
|
|
501
|
+
AssetBulkUploadCheckItem as AssetBulkUploadCheckItem,
|
|
502
|
+
)
|
|
503
|
+
from immich.client.models.asset_bulk_upload_check_response_dto import (
|
|
504
|
+
AssetBulkUploadCheckResponseDto as AssetBulkUploadCheckResponseDto,
|
|
505
|
+
)
|
|
506
|
+
from immich.client.models.asset_bulk_upload_check_result import (
|
|
507
|
+
AssetBulkUploadCheckResult as AssetBulkUploadCheckResult,
|
|
508
|
+
)
|
|
509
|
+
from immich.client.models.asset_copy_dto import AssetCopyDto as AssetCopyDto
|
|
510
|
+
from immich.client.models.asset_delta_sync_dto import (
|
|
511
|
+
AssetDeltaSyncDto as AssetDeltaSyncDto,
|
|
512
|
+
)
|
|
513
|
+
from immich.client.models.asset_delta_sync_response_dto import (
|
|
514
|
+
AssetDeltaSyncResponseDto as AssetDeltaSyncResponseDto,
|
|
515
|
+
)
|
|
516
|
+
from immich.client.models.asset_face_create_dto import (
|
|
517
|
+
AssetFaceCreateDto as AssetFaceCreateDto,
|
|
518
|
+
)
|
|
519
|
+
from immich.client.models.asset_face_delete_dto import (
|
|
520
|
+
AssetFaceDeleteDto as AssetFaceDeleteDto,
|
|
521
|
+
)
|
|
522
|
+
from immich.client.models.asset_face_response_dto import (
|
|
523
|
+
AssetFaceResponseDto as AssetFaceResponseDto,
|
|
524
|
+
)
|
|
525
|
+
from immich.client.models.asset_face_update_dto import (
|
|
526
|
+
AssetFaceUpdateDto as AssetFaceUpdateDto,
|
|
527
|
+
)
|
|
528
|
+
from immich.client.models.asset_face_update_item import (
|
|
529
|
+
AssetFaceUpdateItem as AssetFaceUpdateItem,
|
|
530
|
+
)
|
|
531
|
+
from immich.client.models.asset_face_without_person_response_dto import (
|
|
532
|
+
AssetFaceWithoutPersonResponseDto as AssetFaceWithoutPersonResponseDto,
|
|
533
|
+
)
|
|
534
|
+
from immich.client.models.asset_full_sync_dto import (
|
|
535
|
+
AssetFullSyncDto as AssetFullSyncDto,
|
|
536
|
+
)
|
|
537
|
+
from immich.client.models.asset_ids_dto import AssetIdsDto as AssetIdsDto
|
|
538
|
+
from immich.client.models.asset_ids_response_dto import (
|
|
539
|
+
AssetIdsResponseDto as AssetIdsResponseDto,
|
|
540
|
+
)
|
|
541
|
+
from immich.client.models.asset_job_name import AssetJobName as AssetJobName
|
|
542
|
+
from immich.client.models.asset_jobs_dto import AssetJobsDto as AssetJobsDto
|
|
543
|
+
from immich.client.models.asset_media_response_dto import (
|
|
544
|
+
AssetMediaResponseDto as AssetMediaResponseDto,
|
|
545
|
+
)
|
|
546
|
+
from immich.client.models.asset_media_size import AssetMediaSize as AssetMediaSize
|
|
547
|
+
from immich.client.models.asset_media_status import AssetMediaStatus as AssetMediaStatus
|
|
548
|
+
from immich.client.models.asset_metadata_key import AssetMetadataKey as AssetMetadataKey
|
|
549
|
+
from immich.client.models.asset_metadata_response_dto import (
|
|
550
|
+
AssetMetadataResponseDto as AssetMetadataResponseDto,
|
|
551
|
+
)
|
|
552
|
+
from immich.client.models.asset_metadata_upsert_dto import (
|
|
553
|
+
AssetMetadataUpsertDto as AssetMetadataUpsertDto,
|
|
554
|
+
)
|
|
555
|
+
from immich.client.models.asset_metadata_upsert_item_dto import (
|
|
556
|
+
AssetMetadataUpsertItemDto as AssetMetadataUpsertItemDto,
|
|
557
|
+
)
|
|
558
|
+
from immich.client.models.asset_ocr_response_dto import (
|
|
559
|
+
AssetOcrResponseDto as AssetOcrResponseDto,
|
|
560
|
+
)
|
|
561
|
+
from immich.client.models.asset_order import AssetOrder as AssetOrder
|
|
562
|
+
from immich.client.models.asset_response_dto import AssetResponseDto as AssetResponseDto
|
|
563
|
+
from immich.client.models.asset_stack_response_dto import (
|
|
564
|
+
AssetStackResponseDto as AssetStackResponseDto,
|
|
565
|
+
)
|
|
566
|
+
from immich.client.models.asset_stats_response_dto import (
|
|
567
|
+
AssetStatsResponseDto as AssetStatsResponseDto,
|
|
568
|
+
)
|
|
569
|
+
from immich.client.models.asset_type_enum import AssetTypeEnum as AssetTypeEnum
|
|
570
|
+
from immich.client.models.asset_visibility import AssetVisibility as AssetVisibility
|
|
571
|
+
from immich.client.models.audio_codec import AudioCodec as AudioCodec
|
|
572
|
+
from immich.client.models.auth_status_response_dto import (
|
|
573
|
+
AuthStatusResponseDto as AuthStatusResponseDto,
|
|
574
|
+
)
|
|
575
|
+
from immich.client.models.avatar_update import AvatarUpdate as AvatarUpdate
|
|
576
|
+
from immich.client.models.bulk_id_error_reason import (
|
|
577
|
+
BulkIdErrorReason as BulkIdErrorReason,
|
|
578
|
+
)
|
|
579
|
+
from immich.client.models.bulk_id_response_dto import (
|
|
580
|
+
BulkIdResponseDto as BulkIdResponseDto,
|
|
581
|
+
)
|
|
582
|
+
from immich.client.models.bulk_ids_dto import BulkIdsDto as BulkIdsDto
|
|
583
|
+
from immich.client.models.clip_config import CLIPConfig as CLIPConfig
|
|
584
|
+
from immich.client.models.cq_mode import CQMode as CQMode
|
|
585
|
+
from immich.client.models.cast_response import CastResponse as CastResponse
|
|
586
|
+
from immich.client.models.cast_update import CastUpdate as CastUpdate
|
|
587
|
+
from immich.client.models.change_password_dto import (
|
|
588
|
+
ChangePasswordDto as ChangePasswordDto,
|
|
589
|
+
)
|
|
590
|
+
from immich.client.models.check_existing_assets_dto import (
|
|
591
|
+
CheckExistingAssetsDto as CheckExistingAssetsDto,
|
|
592
|
+
)
|
|
593
|
+
from immich.client.models.check_existing_assets_response_dto import (
|
|
594
|
+
CheckExistingAssetsResponseDto as CheckExistingAssetsResponseDto,
|
|
595
|
+
)
|
|
596
|
+
from immich.client.models.colorspace import Colorspace as Colorspace
|
|
597
|
+
from immich.client.models.contributor_count_response_dto import (
|
|
598
|
+
ContributorCountResponseDto as ContributorCountResponseDto,
|
|
599
|
+
)
|
|
600
|
+
from immich.client.models.create_album_dto import CreateAlbumDto as CreateAlbumDto
|
|
601
|
+
from immich.client.models.create_library_dto import CreateLibraryDto as CreateLibraryDto
|
|
602
|
+
from immich.client.models.create_profile_image_response_dto import (
|
|
603
|
+
CreateProfileImageResponseDto as CreateProfileImageResponseDto,
|
|
604
|
+
)
|
|
605
|
+
from immich.client.models.database_backup_config import (
|
|
606
|
+
DatabaseBackupConfig as DatabaseBackupConfig,
|
|
607
|
+
)
|
|
608
|
+
from immich.client.models.download_archive_info import (
|
|
609
|
+
DownloadArchiveInfo as DownloadArchiveInfo,
|
|
610
|
+
)
|
|
611
|
+
from immich.client.models.download_info_dto import DownloadInfoDto as DownloadInfoDto
|
|
612
|
+
from immich.client.models.download_response import DownloadResponse as DownloadResponse
|
|
613
|
+
from immich.client.models.download_response_dto import (
|
|
614
|
+
DownloadResponseDto as DownloadResponseDto,
|
|
615
|
+
)
|
|
616
|
+
from immich.client.models.download_update import DownloadUpdate as DownloadUpdate
|
|
617
|
+
from immich.client.models.duplicate_detection_config import (
|
|
618
|
+
DuplicateDetectionConfig as DuplicateDetectionConfig,
|
|
619
|
+
)
|
|
620
|
+
from immich.client.models.duplicate_response_dto import (
|
|
621
|
+
DuplicateResponseDto as DuplicateResponseDto,
|
|
622
|
+
)
|
|
623
|
+
from immich.client.models.email_notifications_response import (
|
|
624
|
+
EmailNotificationsResponse as EmailNotificationsResponse,
|
|
625
|
+
)
|
|
626
|
+
from immich.client.models.email_notifications_update import (
|
|
627
|
+
EmailNotificationsUpdate as EmailNotificationsUpdate,
|
|
628
|
+
)
|
|
629
|
+
from immich.client.models.exif_response_dto import ExifResponseDto as ExifResponseDto
|
|
630
|
+
from immich.client.models.face_dto import FaceDto as FaceDto
|
|
631
|
+
from immich.client.models.facial_recognition_config import (
|
|
632
|
+
FacialRecognitionConfig as FacialRecognitionConfig,
|
|
633
|
+
)
|
|
634
|
+
from immich.client.models.folders_response import FoldersResponse as FoldersResponse
|
|
635
|
+
from immich.client.models.folders_update import FoldersUpdate as FoldersUpdate
|
|
636
|
+
from immich.client.models.image_format import ImageFormat as ImageFormat
|
|
637
|
+
from immich.client.models.job_create_dto import JobCreateDto as JobCreateDto
|
|
638
|
+
from immich.client.models.job_name import JobName as JobName
|
|
639
|
+
from immich.client.models.job_settings_dto import JobSettingsDto as JobSettingsDto
|
|
640
|
+
from immich.client.models.library_response_dto import (
|
|
641
|
+
LibraryResponseDto as LibraryResponseDto,
|
|
642
|
+
)
|
|
643
|
+
from immich.client.models.library_stats_response_dto import (
|
|
644
|
+
LibraryStatsResponseDto as LibraryStatsResponseDto,
|
|
645
|
+
)
|
|
646
|
+
from immich.client.models.license_key_dto import LicenseKeyDto as LicenseKeyDto
|
|
647
|
+
from immich.client.models.license_response_dto import (
|
|
648
|
+
LicenseResponseDto as LicenseResponseDto,
|
|
649
|
+
)
|
|
650
|
+
from immich.client.models.log_level import LogLevel as LogLevel
|
|
651
|
+
from immich.client.models.login_credential_dto import (
|
|
652
|
+
LoginCredentialDto as LoginCredentialDto,
|
|
653
|
+
)
|
|
654
|
+
from immich.client.models.login_response_dto import LoginResponseDto as LoginResponseDto
|
|
655
|
+
from immich.client.models.logout_response_dto import (
|
|
656
|
+
LogoutResponseDto as LogoutResponseDto,
|
|
657
|
+
)
|
|
658
|
+
from immich.client.models.machine_learning_availability_checks_dto import (
|
|
659
|
+
MachineLearningAvailabilityChecksDto as MachineLearningAvailabilityChecksDto,
|
|
660
|
+
)
|
|
661
|
+
from immich.client.models.maintenance_action import (
|
|
662
|
+
MaintenanceAction as MaintenanceAction,
|
|
663
|
+
)
|
|
664
|
+
from immich.client.models.maintenance_auth_dto import (
|
|
665
|
+
MaintenanceAuthDto as MaintenanceAuthDto,
|
|
666
|
+
)
|
|
667
|
+
from immich.client.models.maintenance_login_dto import (
|
|
668
|
+
MaintenanceLoginDto as MaintenanceLoginDto,
|
|
669
|
+
)
|
|
670
|
+
from immich.client.models.manual_job_name import ManualJobName as ManualJobName
|
|
671
|
+
from immich.client.models.map_marker_response_dto import (
|
|
672
|
+
MapMarkerResponseDto as MapMarkerResponseDto,
|
|
673
|
+
)
|
|
674
|
+
from immich.client.models.map_reverse_geocode_response_dto import (
|
|
675
|
+
MapReverseGeocodeResponseDto as MapReverseGeocodeResponseDto,
|
|
676
|
+
)
|
|
677
|
+
from immich.client.models.memories_response import MemoriesResponse as MemoriesResponse
|
|
678
|
+
from immich.client.models.memories_update import MemoriesUpdate as MemoriesUpdate
|
|
679
|
+
from immich.client.models.memory_create_dto import MemoryCreateDto as MemoryCreateDto
|
|
680
|
+
from immich.client.models.memory_response_dto import (
|
|
681
|
+
MemoryResponseDto as MemoryResponseDto,
|
|
682
|
+
)
|
|
683
|
+
from immich.client.models.memory_search_order import (
|
|
684
|
+
MemorySearchOrder as MemorySearchOrder,
|
|
685
|
+
)
|
|
686
|
+
from immich.client.models.memory_statistics_response_dto import (
|
|
687
|
+
MemoryStatisticsResponseDto as MemoryStatisticsResponseDto,
|
|
688
|
+
)
|
|
689
|
+
from immich.client.models.memory_type import MemoryType as MemoryType
|
|
690
|
+
from immich.client.models.memory_update_dto import MemoryUpdateDto as MemoryUpdateDto
|
|
691
|
+
from immich.client.models.merge_person_dto import MergePersonDto as MergePersonDto
|
|
692
|
+
from immich.client.models.metadata_search_dto import (
|
|
693
|
+
MetadataSearchDto as MetadataSearchDto,
|
|
694
|
+
)
|
|
695
|
+
from immich.client.models.notification_create_dto import (
|
|
696
|
+
NotificationCreateDto as NotificationCreateDto,
|
|
697
|
+
)
|
|
698
|
+
from immich.client.models.notification_delete_all_dto import (
|
|
699
|
+
NotificationDeleteAllDto as NotificationDeleteAllDto,
|
|
700
|
+
)
|
|
701
|
+
from immich.client.models.notification_dto import NotificationDto as NotificationDto
|
|
702
|
+
from immich.client.models.notification_level import (
|
|
703
|
+
NotificationLevel as NotificationLevel,
|
|
704
|
+
)
|
|
705
|
+
from immich.client.models.notification_type import NotificationType as NotificationType
|
|
706
|
+
from immich.client.models.notification_update_all_dto import (
|
|
707
|
+
NotificationUpdateAllDto as NotificationUpdateAllDto,
|
|
708
|
+
)
|
|
709
|
+
from immich.client.models.notification_update_dto import (
|
|
710
|
+
NotificationUpdateDto as NotificationUpdateDto,
|
|
711
|
+
)
|
|
712
|
+
from immich.client.models.o_auth_authorize_response_dto import (
|
|
713
|
+
OAuthAuthorizeResponseDto as OAuthAuthorizeResponseDto,
|
|
714
|
+
)
|
|
715
|
+
from immich.client.models.o_auth_callback_dto import (
|
|
716
|
+
OAuthCallbackDto as OAuthCallbackDto,
|
|
717
|
+
)
|
|
718
|
+
from immich.client.models.o_auth_config_dto import OAuthConfigDto as OAuthConfigDto
|
|
719
|
+
from immich.client.models.o_auth_token_endpoint_auth_method import (
|
|
720
|
+
OAuthTokenEndpointAuthMethod as OAuthTokenEndpointAuthMethod,
|
|
721
|
+
)
|
|
722
|
+
from immich.client.models.ocr_config import OcrConfig as OcrConfig
|
|
723
|
+
from immich.client.models.on_this_day_dto import OnThisDayDto as OnThisDayDto
|
|
724
|
+
from immich.client.models.onboarding_dto import OnboardingDto as OnboardingDto
|
|
725
|
+
from immich.client.models.onboarding_response_dto import (
|
|
726
|
+
OnboardingResponseDto as OnboardingResponseDto,
|
|
727
|
+
)
|
|
728
|
+
from immich.client.models.partner_create_dto import PartnerCreateDto as PartnerCreateDto
|
|
729
|
+
from immich.client.models.partner_direction import PartnerDirection as PartnerDirection
|
|
730
|
+
from immich.client.models.partner_response_dto import (
|
|
731
|
+
PartnerResponseDto as PartnerResponseDto,
|
|
732
|
+
)
|
|
733
|
+
from immich.client.models.partner_update_dto import PartnerUpdateDto as PartnerUpdateDto
|
|
734
|
+
from immich.client.models.people_response import PeopleResponse as PeopleResponse
|
|
735
|
+
from immich.client.models.people_response_dto import (
|
|
736
|
+
PeopleResponseDto as PeopleResponseDto,
|
|
737
|
+
)
|
|
738
|
+
from immich.client.models.people_update import PeopleUpdate as PeopleUpdate
|
|
739
|
+
from immich.client.models.people_update_dto import PeopleUpdateDto as PeopleUpdateDto
|
|
740
|
+
from immich.client.models.people_update_item import PeopleUpdateItem as PeopleUpdateItem
|
|
741
|
+
from immich.client.models.permission import Permission as Permission
|
|
742
|
+
from immich.client.models.person_create_dto import PersonCreateDto as PersonCreateDto
|
|
743
|
+
from immich.client.models.person_response_dto import (
|
|
744
|
+
PersonResponseDto as PersonResponseDto,
|
|
745
|
+
)
|
|
746
|
+
from immich.client.models.person_statistics_response_dto import (
|
|
747
|
+
PersonStatisticsResponseDto as PersonStatisticsResponseDto,
|
|
748
|
+
)
|
|
749
|
+
from immich.client.models.person_update_dto import PersonUpdateDto as PersonUpdateDto
|
|
750
|
+
from immich.client.models.person_with_faces_response_dto import (
|
|
751
|
+
PersonWithFacesResponseDto as PersonWithFacesResponseDto,
|
|
752
|
+
)
|
|
753
|
+
from immich.client.models.pin_code_change_dto import (
|
|
754
|
+
PinCodeChangeDto as PinCodeChangeDto,
|
|
755
|
+
)
|
|
756
|
+
from immich.client.models.pin_code_reset_dto import PinCodeResetDto as PinCodeResetDto
|
|
757
|
+
from immich.client.models.pin_code_setup_dto import PinCodeSetupDto as PinCodeSetupDto
|
|
758
|
+
from immich.client.models.places_response_dto import (
|
|
759
|
+
PlacesResponseDto as PlacesResponseDto,
|
|
760
|
+
)
|
|
761
|
+
from immich.client.models.plugin_action_response_dto import (
|
|
762
|
+
PluginActionResponseDto as PluginActionResponseDto,
|
|
763
|
+
)
|
|
764
|
+
from immich.client.models.plugin_context_type import (
|
|
765
|
+
PluginContextType as PluginContextType,
|
|
766
|
+
)
|
|
767
|
+
from immich.client.models.plugin_filter_response_dto import (
|
|
768
|
+
PluginFilterResponseDto as PluginFilterResponseDto,
|
|
769
|
+
)
|
|
770
|
+
from immich.client.models.plugin_response_dto import (
|
|
771
|
+
PluginResponseDto as PluginResponseDto,
|
|
772
|
+
)
|
|
773
|
+
from immich.client.models.plugin_trigger_response_dto import (
|
|
774
|
+
PluginTriggerResponseDto as PluginTriggerResponseDto,
|
|
775
|
+
)
|
|
776
|
+
from immich.client.models.plugin_trigger_type import (
|
|
777
|
+
PluginTriggerType as PluginTriggerType,
|
|
778
|
+
)
|
|
779
|
+
from immich.client.models.purchase_response import PurchaseResponse as PurchaseResponse
|
|
780
|
+
from immich.client.models.purchase_update import PurchaseUpdate as PurchaseUpdate
|
|
781
|
+
from immich.client.models.queue_command import QueueCommand as QueueCommand
|
|
782
|
+
from immich.client.models.queue_command_dto import QueueCommandDto as QueueCommandDto
|
|
783
|
+
from immich.client.models.queue_delete_dto import QueueDeleteDto as QueueDeleteDto
|
|
784
|
+
from immich.client.models.queue_job_response_dto import (
|
|
785
|
+
QueueJobResponseDto as QueueJobResponseDto,
|
|
786
|
+
)
|
|
787
|
+
from immich.client.models.queue_job_status import QueueJobStatus as QueueJobStatus
|
|
788
|
+
from immich.client.models.queue_name import QueueName as QueueName
|
|
789
|
+
from immich.client.models.queue_response_dto import QueueResponseDto as QueueResponseDto
|
|
790
|
+
from immich.client.models.queue_response_legacy_dto import (
|
|
791
|
+
QueueResponseLegacyDto as QueueResponseLegacyDto,
|
|
792
|
+
)
|
|
793
|
+
from immich.client.models.queue_statistics_dto import (
|
|
794
|
+
QueueStatisticsDto as QueueStatisticsDto,
|
|
795
|
+
)
|
|
796
|
+
from immich.client.models.queue_status_legacy_dto import (
|
|
797
|
+
QueueStatusLegacyDto as QueueStatusLegacyDto,
|
|
798
|
+
)
|
|
799
|
+
from immich.client.models.queue_update_dto import QueueUpdateDto as QueueUpdateDto
|
|
800
|
+
from immich.client.models.queues_response_legacy_dto import (
|
|
801
|
+
QueuesResponseLegacyDto as QueuesResponseLegacyDto,
|
|
802
|
+
)
|
|
803
|
+
from immich.client.models.random_search_dto import RandomSearchDto as RandomSearchDto
|
|
804
|
+
from immich.client.models.ratings_response import RatingsResponse as RatingsResponse
|
|
805
|
+
from immich.client.models.ratings_update import RatingsUpdate as RatingsUpdate
|
|
806
|
+
from immich.client.models.reaction_level import ReactionLevel as ReactionLevel
|
|
807
|
+
from immich.client.models.reaction_type import ReactionType as ReactionType
|
|
808
|
+
from immich.client.models.reverse_geocoding_state_response_dto import (
|
|
809
|
+
ReverseGeocodingStateResponseDto as ReverseGeocodingStateResponseDto,
|
|
810
|
+
)
|
|
811
|
+
from immich.client.models.search_album_response_dto import (
|
|
812
|
+
SearchAlbumResponseDto as SearchAlbumResponseDto,
|
|
813
|
+
)
|
|
814
|
+
from immich.client.models.search_asset_response_dto import (
|
|
815
|
+
SearchAssetResponseDto as SearchAssetResponseDto,
|
|
816
|
+
)
|
|
817
|
+
from immich.client.models.search_explore_item import (
|
|
818
|
+
SearchExploreItem as SearchExploreItem,
|
|
819
|
+
)
|
|
820
|
+
from immich.client.models.search_explore_response_dto import (
|
|
821
|
+
SearchExploreResponseDto as SearchExploreResponseDto,
|
|
822
|
+
)
|
|
823
|
+
from immich.client.models.search_facet_count_response_dto import (
|
|
824
|
+
SearchFacetCountResponseDto as SearchFacetCountResponseDto,
|
|
825
|
+
)
|
|
826
|
+
from immich.client.models.search_facet_response_dto import (
|
|
827
|
+
SearchFacetResponseDto as SearchFacetResponseDto,
|
|
828
|
+
)
|
|
829
|
+
from immich.client.models.search_response_dto import (
|
|
830
|
+
SearchResponseDto as SearchResponseDto,
|
|
831
|
+
)
|
|
832
|
+
from immich.client.models.search_statistics_response_dto import (
|
|
833
|
+
SearchStatisticsResponseDto as SearchStatisticsResponseDto,
|
|
834
|
+
)
|
|
835
|
+
from immich.client.models.search_suggestion_type import (
|
|
836
|
+
SearchSuggestionType as SearchSuggestionType,
|
|
837
|
+
)
|
|
838
|
+
from immich.client.models.server_about_response_dto import (
|
|
839
|
+
ServerAboutResponseDto as ServerAboutResponseDto,
|
|
840
|
+
)
|
|
841
|
+
from immich.client.models.server_apk_links_dto import (
|
|
842
|
+
ServerApkLinksDto as ServerApkLinksDto,
|
|
843
|
+
)
|
|
844
|
+
from immich.client.models.server_config_dto import ServerConfigDto as ServerConfigDto
|
|
845
|
+
from immich.client.models.server_features_dto import (
|
|
846
|
+
ServerFeaturesDto as ServerFeaturesDto,
|
|
847
|
+
)
|
|
848
|
+
from immich.client.models.server_media_types_response_dto import (
|
|
849
|
+
ServerMediaTypesResponseDto as ServerMediaTypesResponseDto,
|
|
850
|
+
)
|
|
851
|
+
from immich.client.models.server_ping_response import (
|
|
852
|
+
ServerPingResponse as ServerPingResponse,
|
|
853
|
+
)
|
|
854
|
+
from immich.client.models.server_stats_response_dto import (
|
|
855
|
+
ServerStatsResponseDto as ServerStatsResponseDto,
|
|
856
|
+
)
|
|
857
|
+
from immich.client.models.server_storage_response_dto import (
|
|
858
|
+
ServerStorageResponseDto as ServerStorageResponseDto,
|
|
859
|
+
)
|
|
860
|
+
from immich.client.models.server_theme_dto import ServerThemeDto as ServerThemeDto
|
|
861
|
+
from immich.client.models.server_version_history_response_dto import (
|
|
862
|
+
ServerVersionHistoryResponseDto as ServerVersionHistoryResponseDto,
|
|
863
|
+
)
|
|
864
|
+
from immich.client.models.server_version_response_dto import (
|
|
865
|
+
ServerVersionResponseDto as ServerVersionResponseDto,
|
|
866
|
+
)
|
|
867
|
+
from immich.client.models.session_create_dto import SessionCreateDto as SessionCreateDto
|
|
868
|
+
from immich.client.models.session_create_response_dto import (
|
|
869
|
+
SessionCreateResponseDto as SessionCreateResponseDto,
|
|
870
|
+
)
|
|
871
|
+
from immich.client.models.session_response_dto import (
|
|
872
|
+
SessionResponseDto as SessionResponseDto,
|
|
873
|
+
)
|
|
874
|
+
from immich.client.models.session_unlock_dto import SessionUnlockDto as SessionUnlockDto
|
|
875
|
+
from immich.client.models.session_update_dto import SessionUpdateDto as SessionUpdateDto
|
|
876
|
+
from immich.client.models.set_maintenance_mode_dto import (
|
|
877
|
+
SetMaintenanceModeDto as SetMaintenanceModeDto,
|
|
878
|
+
)
|
|
879
|
+
from immich.client.models.shared_link_create_dto import (
|
|
880
|
+
SharedLinkCreateDto as SharedLinkCreateDto,
|
|
881
|
+
)
|
|
882
|
+
from immich.client.models.shared_link_edit_dto import (
|
|
883
|
+
SharedLinkEditDto as SharedLinkEditDto,
|
|
884
|
+
)
|
|
885
|
+
from immich.client.models.shared_link_response_dto import (
|
|
886
|
+
SharedLinkResponseDto as SharedLinkResponseDto,
|
|
887
|
+
)
|
|
888
|
+
from immich.client.models.shared_link_type import SharedLinkType as SharedLinkType
|
|
889
|
+
from immich.client.models.shared_links_response import (
|
|
890
|
+
SharedLinksResponse as SharedLinksResponse,
|
|
891
|
+
)
|
|
892
|
+
from immich.client.models.shared_links_update import (
|
|
893
|
+
SharedLinksUpdate as SharedLinksUpdate,
|
|
894
|
+
)
|
|
895
|
+
from immich.client.models.sign_up_dto import SignUpDto as SignUpDto
|
|
896
|
+
from immich.client.models.smart_search_dto import SmartSearchDto as SmartSearchDto
|
|
897
|
+
from immich.client.models.source_type import SourceType as SourceType
|
|
898
|
+
from immich.client.models.stack_create_dto import StackCreateDto as StackCreateDto
|
|
899
|
+
from immich.client.models.stack_response_dto import StackResponseDto as StackResponseDto
|
|
900
|
+
from immich.client.models.stack_update_dto import StackUpdateDto as StackUpdateDto
|
|
901
|
+
from immich.client.models.statistics_search_dto import (
|
|
902
|
+
StatisticsSearchDto as StatisticsSearchDto,
|
|
903
|
+
)
|
|
904
|
+
from immich.client.models.sync_ack_delete_dto import (
|
|
905
|
+
SyncAckDeleteDto as SyncAckDeleteDto,
|
|
906
|
+
)
|
|
907
|
+
from immich.client.models.sync_ack_dto import SyncAckDto as SyncAckDto
|
|
908
|
+
from immich.client.models.sync_ack_set_dto import SyncAckSetDto as SyncAckSetDto
|
|
909
|
+
from immich.client.models.sync_album_delete_v1 import (
|
|
910
|
+
SyncAlbumDeleteV1 as SyncAlbumDeleteV1,
|
|
911
|
+
)
|
|
912
|
+
from immich.client.models.sync_album_to_asset_delete_v1 import (
|
|
913
|
+
SyncAlbumToAssetDeleteV1 as SyncAlbumToAssetDeleteV1,
|
|
914
|
+
)
|
|
915
|
+
from immich.client.models.sync_album_to_asset_v1 import (
|
|
916
|
+
SyncAlbumToAssetV1 as SyncAlbumToAssetV1,
|
|
917
|
+
)
|
|
918
|
+
from immich.client.models.sync_album_user_delete_v1 import (
|
|
919
|
+
SyncAlbumUserDeleteV1 as SyncAlbumUserDeleteV1,
|
|
920
|
+
)
|
|
921
|
+
from immich.client.models.sync_album_user_v1 import SyncAlbumUserV1 as SyncAlbumUserV1
|
|
922
|
+
from immich.client.models.sync_album_v1 import SyncAlbumV1 as SyncAlbumV1
|
|
923
|
+
from immich.client.models.sync_asset_delete_v1 import (
|
|
924
|
+
SyncAssetDeleteV1 as SyncAssetDeleteV1,
|
|
925
|
+
)
|
|
926
|
+
from immich.client.models.sync_asset_exif_v1 import SyncAssetExifV1 as SyncAssetExifV1
|
|
927
|
+
from immich.client.models.sync_asset_face_delete_v1 import (
|
|
928
|
+
SyncAssetFaceDeleteV1 as SyncAssetFaceDeleteV1,
|
|
929
|
+
)
|
|
930
|
+
from immich.client.models.sync_asset_face_v1 import SyncAssetFaceV1 as SyncAssetFaceV1
|
|
931
|
+
from immich.client.models.sync_asset_metadata_delete_v1 import (
|
|
932
|
+
SyncAssetMetadataDeleteV1 as SyncAssetMetadataDeleteV1,
|
|
933
|
+
)
|
|
934
|
+
from immich.client.models.sync_asset_metadata_v1 import (
|
|
935
|
+
SyncAssetMetadataV1 as SyncAssetMetadataV1,
|
|
936
|
+
)
|
|
937
|
+
from immich.client.models.sync_asset_v1 import SyncAssetV1 as SyncAssetV1
|
|
938
|
+
from immich.client.models.sync_auth_user_v1 import SyncAuthUserV1 as SyncAuthUserV1
|
|
939
|
+
from immich.client.models.sync_entity_type import SyncEntityType as SyncEntityType
|
|
940
|
+
from immich.client.models.sync_memory_asset_delete_v1 import (
|
|
941
|
+
SyncMemoryAssetDeleteV1 as SyncMemoryAssetDeleteV1,
|
|
942
|
+
)
|
|
943
|
+
from immich.client.models.sync_memory_asset_v1 import (
|
|
944
|
+
SyncMemoryAssetV1 as SyncMemoryAssetV1,
|
|
945
|
+
)
|
|
946
|
+
from immich.client.models.sync_memory_delete_v1 import (
|
|
947
|
+
SyncMemoryDeleteV1 as SyncMemoryDeleteV1,
|
|
948
|
+
)
|
|
949
|
+
from immich.client.models.sync_memory_v1 import SyncMemoryV1 as SyncMemoryV1
|
|
950
|
+
from immich.client.models.sync_partner_delete_v1 import (
|
|
951
|
+
SyncPartnerDeleteV1 as SyncPartnerDeleteV1,
|
|
952
|
+
)
|
|
953
|
+
from immich.client.models.sync_partner_v1 import SyncPartnerV1 as SyncPartnerV1
|
|
954
|
+
from immich.client.models.sync_person_delete_v1 import (
|
|
955
|
+
SyncPersonDeleteV1 as SyncPersonDeleteV1,
|
|
956
|
+
)
|
|
957
|
+
from immich.client.models.sync_person_v1 import SyncPersonV1 as SyncPersonV1
|
|
958
|
+
from immich.client.models.sync_request_type import SyncRequestType as SyncRequestType
|
|
959
|
+
from immich.client.models.sync_stack_delete_v1 import (
|
|
960
|
+
SyncStackDeleteV1 as SyncStackDeleteV1,
|
|
961
|
+
)
|
|
962
|
+
from immich.client.models.sync_stack_v1 import SyncStackV1 as SyncStackV1
|
|
963
|
+
from immich.client.models.sync_stream_dto import SyncStreamDto as SyncStreamDto
|
|
964
|
+
from immich.client.models.sync_user_delete_v1 import (
|
|
965
|
+
SyncUserDeleteV1 as SyncUserDeleteV1,
|
|
966
|
+
)
|
|
967
|
+
from immich.client.models.sync_user_metadata_delete_v1 import (
|
|
968
|
+
SyncUserMetadataDeleteV1 as SyncUserMetadataDeleteV1,
|
|
969
|
+
)
|
|
970
|
+
from immich.client.models.sync_user_metadata_v1 import (
|
|
971
|
+
SyncUserMetadataV1 as SyncUserMetadataV1,
|
|
972
|
+
)
|
|
973
|
+
from immich.client.models.sync_user_v1 import SyncUserV1 as SyncUserV1
|
|
974
|
+
from immich.client.models.system_config_backups_dto import (
|
|
975
|
+
SystemConfigBackupsDto as SystemConfigBackupsDto,
|
|
976
|
+
)
|
|
977
|
+
from immich.client.models.system_config_dto import SystemConfigDto as SystemConfigDto
|
|
978
|
+
from immich.client.models.system_config_f_fmpeg_dto import (
|
|
979
|
+
SystemConfigFFmpegDto as SystemConfigFFmpegDto,
|
|
980
|
+
)
|
|
981
|
+
from immich.client.models.system_config_faces_dto import (
|
|
982
|
+
SystemConfigFacesDto as SystemConfigFacesDto,
|
|
983
|
+
)
|
|
984
|
+
from immich.client.models.system_config_generated_fullsize_image_dto import (
|
|
985
|
+
SystemConfigGeneratedFullsizeImageDto as SystemConfigGeneratedFullsizeImageDto,
|
|
986
|
+
)
|
|
987
|
+
from immich.client.models.system_config_generated_image_dto import (
|
|
988
|
+
SystemConfigGeneratedImageDto as SystemConfigGeneratedImageDto,
|
|
989
|
+
)
|
|
990
|
+
from immich.client.models.system_config_image_dto import (
|
|
991
|
+
SystemConfigImageDto as SystemConfigImageDto,
|
|
992
|
+
)
|
|
993
|
+
from immich.client.models.system_config_job_dto import (
|
|
994
|
+
SystemConfigJobDto as SystemConfigJobDto,
|
|
995
|
+
)
|
|
996
|
+
from immich.client.models.system_config_library_dto import (
|
|
997
|
+
SystemConfigLibraryDto as SystemConfigLibraryDto,
|
|
998
|
+
)
|
|
999
|
+
from immich.client.models.system_config_library_scan_dto import (
|
|
1000
|
+
SystemConfigLibraryScanDto as SystemConfigLibraryScanDto,
|
|
1001
|
+
)
|
|
1002
|
+
from immich.client.models.system_config_library_watch_dto import (
|
|
1003
|
+
SystemConfigLibraryWatchDto as SystemConfigLibraryWatchDto,
|
|
1004
|
+
)
|
|
1005
|
+
from immich.client.models.system_config_logging_dto import (
|
|
1006
|
+
SystemConfigLoggingDto as SystemConfigLoggingDto,
|
|
1007
|
+
)
|
|
1008
|
+
from immich.client.models.system_config_machine_learning_dto import (
|
|
1009
|
+
SystemConfigMachineLearningDto as SystemConfigMachineLearningDto,
|
|
1010
|
+
)
|
|
1011
|
+
from immich.client.models.system_config_map_dto import (
|
|
1012
|
+
SystemConfigMapDto as SystemConfigMapDto,
|
|
1013
|
+
)
|
|
1014
|
+
from immich.client.models.system_config_metadata_dto import (
|
|
1015
|
+
SystemConfigMetadataDto as SystemConfigMetadataDto,
|
|
1016
|
+
)
|
|
1017
|
+
from immich.client.models.system_config_new_version_check_dto import (
|
|
1018
|
+
SystemConfigNewVersionCheckDto as SystemConfigNewVersionCheckDto,
|
|
1019
|
+
)
|
|
1020
|
+
from immich.client.models.system_config_nightly_tasks_dto import (
|
|
1021
|
+
SystemConfigNightlyTasksDto as SystemConfigNightlyTasksDto,
|
|
1022
|
+
)
|
|
1023
|
+
from immich.client.models.system_config_notifications_dto import (
|
|
1024
|
+
SystemConfigNotificationsDto as SystemConfigNotificationsDto,
|
|
1025
|
+
)
|
|
1026
|
+
from immich.client.models.system_config_o_auth_dto import (
|
|
1027
|
+
SystemConfigOAuthDto as SystemConfigOAuthDto,
|
|
1028
|
+
)
|
|
1029
|
+
from immich.client.models.system_config_password_login_dto import (
|
|
1030
|
+
SystemConfigPasswordLoginDto as SystemConfigPasswordLoginDto,
|
|
1031
|
+
)
|
|
1032
|
+
from immich.client.models.system_config_reverse_geocoding_dto import (
|
|
1033
|
+
SystemConfigReverseGeocodingDto as SystemConfigReverseGeocodingDto,
|
|
1034
|
+
)
|
|
1035
|
+
from immich.client.models.system_config_server_dto import (
|
|
1036
|
+
SystemConfigServerDto as SystemConfigServerDto,
|
|
1037
|
+
)
|
|
1038
|
+
from immich.client.models.system_config_smtp_dto import (
|
|
1039
|
+
SystemConfigSmtpDto as SystemConfigSmtpDto,
|
|
1040
|
+
)
|
|
1041
|
+
from immich.client.models.system_config_smtp_transport_dto import (
|
|
1042
|
+
SystemConfigSmtpTransportDto as SystemConfigSmtpTransportDto,
|
|
1043
|
+
)
|
|
1044
|
+
from immich.client.models.system_config_storage_template_dto import (
|
|
1045
|
+
SystemConfigStorageTemplateDto as SystemConfigStorageTemplateDto,
|
|
1046
|
+
)
|
|
1047
|
+
from immich.client.models.system_config_template_emails_dto import (
|
|
1048
|
+
SystemConfigTemplateEmailsDto as SystemConfigTemplateEmailsDto,
|
|
1049
|
+
)
|
|
1050
|
+
from immich.client.models.system_config_template_storage_option_dto import (
|
|
1051
|
+
SystemConfigTemplateStorageOptionDto as SystemConfigTemplateStorageOptionDto,
|
|
1052
|
+
)
|
|
1053
|
+
from immich.client.models.system_config_templates_dto import (
|
|
1054
|
+
SystemConfigTemplatesDto as SystemConfigTemplatesDto,
|
|
1055
|
+
)
|
|
1056
|
+
from immich.client.models.system_config_theme_dto import (
|
|
1057
|
+
SystemConfigThemeDto as SystemConfigThemeDto,
|
|
1058
|
+
)
|
|
1059
|
+
from immich.client.models.system_config_trash_dto import (
|
|
1060
|
+
SystemConfigTrashDto as SystemConfigTrashDto,
|
|
1061
|
+
)
|
|
1062
|
+
from immich.client.models.system_config_user_dto import (
|
|
1063
|
+
SystemConfigUserDto as SystemConfigUserDto,
|
|
1064
|
+
)
|
|
1065
|
+
from immich.client.models.tag_bulk_assets_dto import (
|
|
1066
|
+
TagBulkAssetsDto as TagBulkAssetsDto,
|
|
1067
|
+
)
|
|
1068
|
+
from immich.client.models.tag_bulk_assets_response_dto import (
|
|
1069
|
+
TagBulkAssetsResponseDto as TagBulkAssetsResponseDto,
|
|
1070
|
+
)
|
|
1071
|
+
from immich.client.models.tag_create_dto import TagCreateDto as TagCreateDto
|
|
1072
|
+
from immich.client.models.tag_response_dto import TagResponseDto as TagResponseDto
|
|
1073
|
+
from immich.client.models.tag_update_dto import TagUpdateDto as TagUpdateDto
|
|
1074
|
+
from immich.client.models.tag_upsert_dto import TagUpsertDto as TagUpsertDto
|
|
1075
|
+
from immich.client.models.tags_response import TagsResponse as TagsResponse
|
|
1076
|
+
from immich.client.models.tags_update import TagsUpdate as TagsUpdate
|
|
1077
|
+
from immich.client.models.template_dto import TemplateDto as TemplateDto
|
|
1078
|
+
from immich.client.models.template_response_dto import (
|
|
1079
|
+
TemplateResponseDto as TemplateResponseDto,
|
|
1080
|
+
)
|
|
1081
|
+
from immich.client.models.test_email_response_dto import (
|
|
1082
|
+
TestEmailResponseDto as TestEmailResponseDto,
|
|
1083
|
+
)
|
|
1084
|
+
from immich.client.models.time_bucket_asset_response_dto import (
|
|
1085
|
+
TimeBucketAssetResponseDto as TimeBucketAssetResponseDto,
|
|
1086
|
+
)
|
|
1087
|
+
from immich.client.models.time_buckets_response_dto import (
|
|
1088
|
+
TimeBucketsResponseDto as TimeBucketsResponseDto,
|
|
1089
|
+
)
|
|
1090
|
+
from immich.client.models.tone_mapping import ToneMapping as ToneMapping
|
|
1091
|
+
from immich.client.models.transcode_hw_accel import TranscodeHWAccel as TranscodeHWAccel
|
|
1092
|
+
from immich.client.models.transcode_policy import TranscodePolicy as TranscodePolicy
|
|
1093
|
+
from immich.client.models.trash_response_dto import TrashResponseDto as TrashResponseDto
|
|
1094
|
+
from immich.client.models.update_album_dto import UpdateAlbumDto as UpdateAlbumDto
|
|
1095
|
+
from immich.client.models.update_album_user_dto import (
|
|
1096
|
+
UpdateAlbumUserDto as UpdateAlbumUserDto,
|
|
1097
|
+
)
|
|
1098
|
+
from immich.client.models.update_asset_dto import UpdateAssetDto as UpdateAssetDto
|
|
1099
|
+
from immich.client.models.update_library_dto import UpdateLibraryDto as UpdateLibraryDto
|
|
1100
|
+
from immich.client.models.usage_by_user_dto import UsageByUserDto as UsageByUserDto
|
|
1101
|
+
from immich.client.models.user_admin_create_dto import (
|
|
1102
|
+
UserAdminCreateDto as UserAdminCreateDto,
|
|
1103
|
+
)
|
|
1104
|
+
from immich.client.models.user_admin_delete_dto import (
|
|
1105
|
+
UserAdminDeleteDto as UserAdminDeleteDto,
|
|
1106
|
+
)
|
|
1107
|
+
from immich.client.models.user_admin_response_dto import (
|
|
1108
|
+
UserAdminResponseDto as UserAdminResponseDto,
|
|
1109
|
+
)
|
|
1110
|
+
from immich.client.models.user_admin_update_dto import (
|
|
1111
|
+
UserAdminUpdateDto as UserAdminUpdateDto,
|
|
1112
|
+
)
|
|
1113
|
+
from immich.client.models.user_avatar_color import UserAvatarColor as UserAvatarColor
|
|
1114
|
+
from immich.client.models.user_license import UserLicense as UserLicense
|
|
1115
|
+
from immich.client.models.user_metadata_key import UserMetadataKey as UserMetadataKey
|
|
1116
|
+
from immich.client.models.user_preferences_response_dto import (
|
|
1117
|
+
UserPreferencesResponseDto as UserPreferencesResponseDto,
|
|
1118
|
+
)
|
|
1119
|
+
from immich.client.models.user_preferences_update_dto import (
|
|
1120
|
+
UserPreferencesUpdateDto as UserPreferencesUpdateDto,
|
|
1121
|
+
)
|
|
1122
|
+
from immich.client.models.user_response_dto import UserResponseDto as UserResponseDto
|
|
1123
|
+
from immich.client.models.user_status import UserStatus as UserStatus
|
|
1124
|
+
from immich.client.models.user_update_me_dto import UserUpdateMeDto as UserUpdateMeDto
|
|
1125
|
+
from immich.client.models.validate_access_token_response_dto import (
|
|
1126
|
+
ValidateAccessTokenResponseDto as ValidateAccessTokenResponseDto,
|
|
1127
|
+
)
|
|
1128
|
+
from immich.client.models.validate_library_dto import (
|
|
1129
|
+
ValidateLibraryDto as ValidateLibraryDto,
|
|
1130
|
+
)
|
|
1131
|
+
from immich.client.models.validate_library_import_path_response_dto import (
|
|
1132
|
+
ValidateLibraryImportPathResponseDto as ValidateLibraryImportPathResponseDto,
|
|
1133
|
+
)
|
|
1134
|
+
from immich.client.models.validate_library_response_dto import (
|
|
1135
|
+
ValidateLibraryResponseDto as ValidateLibraryResponseDto,
|
|
1136
|
+
)
|
|
1137
|
+
from immich.client.models.version_check_state_response_dto import (
|
|
1138
|
+
VersionCheckStateResponseDto as VersionCheckStateResponseDto,
|
|
1139
|
+
)
|
|
1140
|
+
from immich.client.models.video_codec import VideoCodec as VideoCodec
|
|
1141
|
+
from immich.client.models.video_container import VideoContainer as VideoContainer
|
|
1142
|
+
from immich.client.models.workflow_action_item_dto import (
|
|
1143
|
+
WorkflowActionItemDto as WorkflowActionItemDto,
|
|
1144
|
+
)
|
|
1145
|
+
from immich.client.models.workflow_action_response_dto import (
|
|
1146
|
+
WorkflowActionResponseDto as WorkflowActionResponseDto,
|
|
1147
|
+
)
|
|
1148
|
+
from immich.client.models.workflow_create_dto import (
|
|
1149
|
+
WorkflowCreateDto as WorkflowCreateDto,
|
|
1150
|
+
)
|
|
1151
|
+
from immich.client.models.workflow_filter_item_dto import (
|
|
1152
|
+
WorkflowFilterItemDto as WorkflowFilterItemDto,
|
|
1153
|
+
)
|
|
1154
|
+
from immich.client.models.workflow_filter_response_dto import (
|
|
1155
|
+
WorkflowFilterResponseDto as WorkflowFilterResponseDto,
|
|
1156
|
+
)
|
|
1157
|
+
from immich.client.models.workflow_response_dto import (
|
|
1158
|
+
WorkflowResponseDto as WorkflowResponseDto,
|
|
1159
|
+
)
|
|
1160
|
+
from immich.client.models.workflow_update_dto import (
|
|
1161
|
+
WorkflowUpdateDto as WorkflowUpdateDto,
|
|
1162
|
+
)
|