Version v1.72.0

This commit is contained in:
Alex The Bot 2023-08-06 19:48:25 +00:00
parent c73832bd9c
commit 3edb347666
112 changed files with 392 additions and 392 deletions

View File

@ -4,7 +4,7 @@
* Immich * Immich
* Immich API * Immich API
* *
* The version of the OpenAPI document: 1.71.0 * The version of the OpenAPI document: 1.72.0
* *
* *
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

View File

@ -4,7 +4,7 @@
* Immich * Immich
* Immich API * Immich API
* *
* The version of the OpenAPI document: 1.71.0 * The version of the OpenAPI document: 1.72.0
* *
* *
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

View File

@ -4,7 +4,7 @@
* Immich * Immich
* Immich API * Immich API
* *
* The version of the OpenAPI document: 1.71.0 * The version of the OpenAPI document: 1.72.0
* *
* *
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

View File

@ -4,7 +4,7 @@
* Immich * Immich
* Immich API * Immich API
* *
* The version of the OpenAPI document: 1.71.0 * The version of the OpenAPI document: 1.72.0
* *
* *
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

View File

@ -4,7 +4,7 @@
* Immich * Immich
* Immich API * Immich API
* *
* The version of the OpenAPI document: 1.71.0 * The version of the OpenAPI document: 1.72.0
* *
* *
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "machine-learning" name = "machine-learning"
version = "1.71.0" version = "1.72.0"
description = "" description = ""
authors = ["Hau Tran <alex.tran1502@gmail.com>"] authors = ["Hau Tran <alex.tran1502@gmail.com>"]
readme = "README.md" readme = "README.md"

View File

@ -35,8 +35,8 @@ platform :android do
task: 'bundle', task: 'bundle',
build_type: 'Release', build_type: 'Release',
properties: { properties: {
"android.injected.version.code" => 94, "android.injected.version.code" => 95,
"android.injected.version.name" => "1.71.0", "android.injected.version.name" => "1.72.0",
} }
) )
upload_to_play_store(skip_upload_apk: true, skip_upload_images: true, skip_upload_screenshots: true, aab: '../build/app/outputs/bundle/release/app-release.aab') upload_to_play_store(skip_upload_apk: true, skip_upload_images: true, skip_upload_screenshots: true, aab: '../build/app/outputs/bundle/release/app-release.aab')

View File

@ -19,7 +19,7 @@ platform :ios do
desc "iOS Beta" desc "iOS Beta"
lane :beta do lane :beta do
increment_version_number( increment_version_number(
version_number: "1.71.0" version_number: "1.72.0"
) )
increment_build_number( increment_build_number(
build_number: latest_testflight_build_number + 1, build_number: latest_testflight_build_number + 1,

View File

@ -3,7 +3,7 @@ Immich API
This Dart package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Dart package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 1.71.0 - API version: 1.72.0
- Build package: org.openapitools.codegen.languages.DartClientCodegen - Build package: org.openapitools.codegen.languages.DartClientCodegen
## Requirements ## Requirements

View File

@ -20,7 +20,7 @@ class AddUsersDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is AddUsersDto && bool operator ==(Object other) => identical(this, other) || other is AddUsersDto &&
other.sharedUserIds == sharedUserIds; _deepEquality.equals(other.sharedUserIds, sharedUserIds);
@override @override
int get hashCode => int get hashCode =>

View File

@ -65,7 +65,7 @@ class AlbumResponseDto {
other.albumName == albumName && other.albumName == albumName &&
other.albumThumbnailAssetId == albumThumbnailAssetId && other.albumThumbnailAssetId == albumThumbnailAssetId &&
other.assetCount == assetCount && other.assetCount == assetCount &&
other.assets == assets && _deepEquality.equals(other.assets, assets) &&
other.createdAt == createdAt && other.createdAt == createdAt &&
other.description == description && other.description == description &&
other.id == id && other.id == id &&
@ -73,7 +73,7 @@ class AlbumResponseDto {
other.owner == owner && other.owner == owner &&
other.ownerId == ownerId && other.ownerId == ownerId &&
other.shared == shared && other.shared == shared &&
other.sharedUsers == sharedUsers && _deepEquality.equals(other.sharedUsers, sharedUsers) &&
other.updatedAt == updatedAt; other.updatedAt == updatedAt;
@override @override

View File

@ -20,7 +20,7 @@ class AssetBulkUploadCheckDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is AssetBulkUploadCheckDto && bool operator ==(Object other) => identical(this, other) || other is AssetBulkUploadCheckDto &&
other.assets == assets; _deepEquality.equals(other.assets, assets);
@override @override
int get hashCode => int get hashCode =>

View File

@ -20,7 +20,7 @@ class AssetBulkUploadCheckResponseDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is AssetBulkUploadCheckResponseDto && bool operator ==(Object other) => identical(this, other) || other is AssetBulkUploadCheckResponseDto &&
other.results == results; _deepEquality.equals(other.results, results);
@override @override
int get hashCode => int get hashCode =>

View File

@ -20,7 +20,7 @@ class AssetIdsDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is AssetIdsDto && bool operator ==(Object other) => identical(this, other) || other is AssetIdsDto &&
other.assetIds == assetIds; _deepEquality.equals(other.assetIds, assetIds);
@override @override
int get hashCode => int get hashCode =>

View File

@ -108,10 +108,10 @@ class AssetResponseDto {
other.originalFileName == originalFileName && other.originalFileName == originalFileName &&
other.originalPath == originalPath && other.originalPath == originalPath &&
other.ownerId == ownerId && other.ownerId == ownerId &&
other.people == people && _deepEquality.equals(other.people, people) &&
other.resized == resized && other.resized == resized &&
other.smartInfo == smartInfo && other.smartInfo == smartInfo &&
other.tags == tags && _deepEquality.equals(other.tags, tags) &&
other.thumbhash == thumbhash && other.thumbhash == thumbhash &&
other.type == type && other.type == type &&
other.updatedAt == updatedAt; other.updatedAt == updatedAt;

View File

@ -20,7 +20,7 @@ class BulkIdsDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is BulkIdsDto && bool operator ==(Object other) => identical(this, other) || other is BulkIdsDto &&
other.ids == ids; _deepEquality.equals(other.ids, ids);
@override @override
int get hashCode => int get hashCode =>

View File

@ -23,7 +23,7 @@ class CheckExistingAssetsDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is CheckExistingAssetsDto && bool operator ==(Object other) => identical(this, other) || other is CheckExistingAssetsDto &&
other.deviceAssetIds == deviceAssetIds && _deepEquality.equals(other.deviceAssetIds, deviceAssetIds) &&
other.deviceId == deviceId; other.deviceId == deviceId;
@override @override

View File

@ -20,7 +20,7 @@ class CheckExistingAssetsResponseDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is CheckExistingAssetsResponseDto && bool operator ==(Object other) => identical(this, other) || other is CheckExistingAssetsResponseDto &&
other.existingIds == existingIds; _deepEquality.equals(other.existingIds, existingIds);
@override @override
int get hashCode => int get hashCode =>

View File

@ -36,9 +36,9 @@ class CreateAlbumDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is CreateAlbumDto && bool operator ==(Object other) => identical(this, other) || other is CreateAlbumDto &&
other.albumName == albumName && other.albumName == albumName &&
other.assetIds == assetIds && _deepEquality.equals(other.assetIds, assetIds) &&
other.description == description && other.description == description &&
other.sharedWithUserIds == sharedWithUserIds; _deepEquality.equals(other.sharedWithUserIds, sharedWithUserIds);
@override @override
int get hashCode => int get hashCode =>

View File

@ -20,7 +20,7 @@ class DeleteAssetDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is DeleteAssetDto && bool operator ==(Object other) => identical(this, other) || other is DeleteAssetDto &&
other.ids == ids; _deepEquality.equals(other.ids, ids);
@override @override
int get hashCode => int get hashCode =>

View File

@ -23,7 +23,7 @@ class DownloadArchiveInfo {
@override @override
bool operator ==(Object other) => identical(this, other) || other is DownloadArchiveInfo && bool operator ==(Object other) => identical(this, other) || other is DownloadArchiveInfo &&
other.assetIds == assetIds && _deepEquality.equals(other.assetIds, assetIds) &&
other.size == size; other.size == size;
@override @override

View File

@ -23,7 +23,7 @@ class DownloadResponseDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is DownloadResponseDto && bool operator ==(Object other) => identical(this, other) || other is DownloadResponseDto &&
other.archives == archives && _deepEquality.equals(other.archives, archives) &&
other.totalSize == totalSize; other.totalSize == totalSize;
@override @override

View File

@ -23,7 +23,7 @@ class MemoryLaneResponseDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is MemoryLaneResponseDto && bool operator ==(Object other) => identical(this, other) || other is MemoryLaneResponseDto &&
other.assets == assets && _deepEquality.equals(other.assets, assets) &&
other.title == title; other.title == title;
@override @override

View File

@ -20,7 +20,7 @@ class MergePersonDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is MergePersonDto && bool operator ==(Object other) => identical(this, other) || other is MergePersonDto &&
other.ids == ids; _deepEquality.equals(other.ids, ids);
@override @override
int get hashCode => int get hashCode =>

View File

@ -26,7 +26,7 @@ class PeopleResponseDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is PeopleResponseDto && bool operator ==(Object other) => identical(this, other) || other is PeopleResponseDto &&
other.people == people && _deepEquality.equals(other.people, people) &&
other.total == total && other.total == total &&
other.visible == visible; other.visible == visible;

View File

@ -20,7 +20,7 @@ class PeopleUpdateDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is PeopleUpdateDto && bool operator ==(Object other) => identical(this, other) || other is PeopleUpdateDto &&
other.people == people; _deepEquality.equals(other.people, people);
@override @override
int get hashCode => int get hashCode =>

View File

@ -30,8 +30,8 @@ class SearchAlbumResponseDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is SearchAlbumResponseDto && bool operator ==(Object other) => identical(this, other) || other is SearchAlbumResponseDto &&
other.count == count && other.count == count &&
other.facets == facets && _deepEquality.equals(other.facets, facets) &&
other.items == items && _deepEquality.equals(other.items, items) &&
other.total == total; other.total == total;
@override @override

View File

@ -30,8 +30,8 @@ class SearchAssetResponseDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is SearchAssetResponseDto && bool operator ==(Object other) => identical(this, other) || other is SearchAssetResponseDto &&
other.count == count && other.count == count &&
other.facets == facets && _deepEquality.equals(other.facets, facets) &&
other.items == items && _deepEquality.equals(other.items, items) &&
other.total == total; other.total == total;
@override @override

View File

@ -24,7 +24,7 @@ class SearchExploreResponseDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is SearchExploreResponseDto && bool operator ==(Object other) => identical(this, other) || other is SearchExploreResponseDto &&
other.fieldName == fieldName && other.fieldName == fieldName &&
other.items == items; _deepEquality.equals(other.items, items);
@override @override
int get hashCode => int get hashCode =>

View File

@ -23,7 +23,7 @@ class SearchFacetResponseDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is SearchFacetResponseDto && bool operator ==(Object other) => identical(this, other) || other is SearchFacetResponseDto &&
other.counts == counts && _deepEquality.equals(other.counts, counts) &&
other.fieldName == fieldName; other.fieldName == fieldName;
@override @override

View File

@ -26,9 +26,9 @@ class ServerMediaTypesResponseDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is ServerMediaTypesResponseDto && bool operator ==(Object other) => identical(this, other) || other is ServerMediaTypesResponseDto &&
other.image == image && _deepEquality.equals(other.image, image) &&
other.sidecar == sidecar && _deepEquality.equals(other.sidecar, sidecar) &&
other.video == video; _deepEquality.equals(other.video, video);
@override @override
int get hashCode => int get hashCode =>

View File

@ -31,7 +31,7 @@ class ServerStatsResponseDto {
bool operator ==(Object other) => identical(this, other) || other is ServerStatsResponseDto && bool operator ==(Object other) => identical(this, other) || other is ServerStatsResponseDto &&
other.photos == photos && other.photos == photos &&
other.usage == usage && other.usage == usage &&
other.usageByUser == usageByUser && _deepEquality.equals(other.usageByUser, usageByUser) &&
other.videos == videos; other.videos == videos;
@override @override

View File

@ -56,7 +56,7 @@ class SharedLinkCreateDto {
other.albumId == albumId && other.albumId == albumId &&
other.allowDownload == allowDownload && other.allowDownload == allowDownload &&
other.allowUpload == allowUpload && other.allowUpload == allowUpload &&
other.assetIds == assetIds && _deepEquality.equals(other.assetIds, assetIds) &&
other.description == description && other.description == description &&
other.expiresAt == expiresAt && other.expiresAt == expiresAt &&
other.showExif == showExif && other.showExif == showExif &&

View File

@ -62,7 +62,7 @@ class SharedLinkResponseDto {
other.album == album && other.album == album &&
other.allowDownload == allowDownload && other.allowDownload == allowDownload &&
other.allowUpload == allowUpload && other.allowUpload == allowUpload &&
other.assets == assets && _deepEquality.equals(other.assets, assets) &&
other.createdAt == createdAt && other.createdAt == createdAt &&
other.description == description && other.description == description &&
other.expiresAt == expiresAt && other.expiresAt == expiresAt &&

View File

@ -23,8 +23,8 @@ class SmartInfoResponseDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is SmartInfoResponseDto && bool operator ==(Object other) => identical(this, other) || other is SmartInfoResponseDto &&
other.objects == objects && _deepEquality.equals(other.objects, objects) &&
other.tags == tags; _deepEquality.equals(other.tags, tags);
@override @override
int get hashCode => int get hashCode =>

View File

@ -38,13 +38,13 @@ class SystemConfigTemplateStorageOptionDto {
@override @override
bool operator ==(Object other) => identical(this, other) || other is SystemConfigTemplateStorageOptionDto && bool operator ==(Object other) => identical(this, other) || other is SystemConfigTemplateStorageOptionDto &&
other.dayOptions == dayOptions && _deepEquality.equals(other.dayOptions, dayOptions) &&
other.hourOptions == hourOptions && _deepEquality.equals(other.hourOptions, hourOptions) &&
other.minuteOptions == minuteOptions && _deepEquality.equals(other.minuteOptions, minuteOptions) &&
other.monthOptions == monthOptions && _deepEquality.equals(other.monthOptions, monthOptions) &&
other.presetOptions == presetOptions && _deepEquality.equals(other.presetOptions, presetOptions) &&
other.secondOptions == secondOptions && _deepEquality.equals(other.secondOptions, secondOptions) &&
other.yearOptions == yearOptions; _deepEquality.equals(other.yearOptions, yearOptions);
@override @override
int get hashCode => int get hashCode =>

View File

@ -50,7 +50,7 @@ class UpdateAssetDto {
other.description == description && other.description == description &&
other.isArchived == isArchived && other.isArchived == isArchived &&
other.isFavorite == isFavorite && other.isFavorite == isFavorite &&
other.tagIds == tagIds; _deepEquality.equals(other.tagIds, tagIds);
@override @override
int get hashCode => int get hashCode =>

View File

@ -2,7 +2,7 @@ name: immich_mobile
description: Immich - selfhosted backup media file on mobile phone description: Immich - selfhosted backup media file on mobile phone
publish_to: "none" publish_to: "none"
version: 1.71.0+94 version: 1.72.0+95
isar_version: &isar_version 3.1.0+1 isar_version: &isar_version 3.1.0+1
environment: environment:

View File

@ -4582,7 +4582,7 @@
"info": { "info": {
"title": "Immich", "title": "Immich",
"description": "Immich API", "description": "Immich API",
"version": "1.71.0", "version": "1.72.0",
"contact": {} "contact": {}
}, },
"tags": [], "tags": [],

View File

@ -38,7 +38,7 @@ class {{{classname}}} {
@override @override
bool operator ==(Object other) => identical(this, other) || other is {{{classname}}} && bool operator ==(Object other) => identical(this, other) || other is {{{classname}}} &&
{{#vars}} {{#vars}}
other.{{{name}}} == {{{name}}}{{^-last}} &&{{/-last}}{{#-last}};{{/-last}} {{#isMap}}_deepEquality.equals(other.{{{name}}}, {{{name}}}){{/isMap}}{{^isMap}}{{#isArray}}_deepEquality.equals(other.{{{name}}}, {{{name}}}){{/isArray}}{{^isArray}}other.{{{name}}} == {{{name}}}{{/isArray}}{{/isMap}}{{^-last}} &&{{/-last}}{{#-last}};{{/-last}}
{{/vars}} {{/vars}}
@override @override

View File

@ -1,12 +1,12 @@
{ {
"name": "immich", "name": "immich",
"version": "1.71.0", "version": "1.72.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "immich", "name": "immich",
"version": "1.71.0", "version": "1.72.0",
"license": "UNLICENSED", "license": "UNLICENSED",
"dependencies": { "dependencies": {
"@babel/runtime": "^7.20.13", "@babel/runtime": "^7.20.13",

View File

@ -1,6 +1,6 @@
{ {
"name": "immich", "name": "immich",
"version": "1.71.0", "version": "1.72.0",
"description": "", "description": "",
"author": "", "author": "",
"private": true, "private": true,

View File

@ -4,7 +4,7 @@
* Immich * Immich
* Immich API * Immich API
* *
* The version of the OpenAPI document: 1.71.0 * The version of the OpenAPI document: 1.72.0
* *
* *
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

View File

@ -4,7 +4,7 @@
* Immich * Immich
* Immich API * Immich API
* *
* The version of the OpenAPI document: 1.71.0 * The version of the OpenAPI document: 1.72.0
* *
* *
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

View File

@ -4,7 +4,7 @@
* Immich * Immich
* Immich API * Immich API
* *
* The version of the OpenAPI document: 1.71.0 * The version of the OpenAPI document: 1.72.0
* *
* *
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

View File

@ -4,7 +4,7 @@
* Immich * Immich
* Immich API * Immich API
* *
* The version of the OpenAPI document: 1.71.0 * The version of the OpenAPI document: 1.72.0
* *
* *
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

View File

@ -4,7 +4,7 @@
* Immich * Immich
* Immich API * Immich API
* *
* The version of the OpenAPI document: 1.71.0 * The version of the OpenAPI document: 1.72.0
* *
* *
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).