diff --git a/mobile/openapi/lib/model/people_update_item.dart b/mobile/openapi/lib/model/people_update_item.dart index 28bc7ef71b..8289f6f291 100644 --- a/mobile/openapi/lib/model/people_update_item.dart +++ b/mobile/openapi/lib/model/people_update_item.dart @@ -54,7 +54,7 @@ class PeopleUpdateItem { /// String? name; - /// This property was added in v1.118.0 + /// This property was added in v1.119.0 /// /// Please note: This property should have been non-nullable! Since the specification file /// does not include a default value (using the "default:" property), however, the generated diff --git a/mobile/openapi/lib/model/person_response_dto.dart b/mobile/openapi/lib/model/person_response_dto.dart index 1d0072ae17..8b68d31eeb 100644 --- a/mobile/openapi/lib/model/person_response_dto.dart +++ b/mobile/openapi/lib/model/person_response_dto.dart @@ -41,7 +41,7 @@ class PersonResponseDto { /// DateTime? updatedAt; - /// This property was added in v1.118.0 + /// This property was added in v1.119.0 /// /// Please note: This property should have been non-nullable! Since the specification file /// does not include a default value (using the "default:" property), however, the generated diff --git a/mobile/openapi/lib/model/person_update_dto.dart b/mobile/openapi/lib/model/person_update_dto.dart index 3772be770d..6272480ca5 100644 --- a/mobile/openapi/lib/model/person_update_dto.dart +++ b/mobile/openapi/lib/model/person_update_dto.dart @@ -50,7 +50,7 @@ class PersonUpdateDto { /// String? name; - /// This property was added in v1.118.0 + /// This property was added in v1.119.0 /// /// Please note: This property should have been non-nullable! Since the specification file /// does not include a default value (using the "default:" property), however, the generated diff --git a/mobile/openapi/lib/model/person_with_faces_response_dto.dart b/mobile/openapi/lib/model/person_with_faces_response_dto.dart index 17e92bb112..069bc2dd47 100644 --- a/mobile/openapi/lib/model/person_with_faces_response_dto.dart +++ b/mobile/openapi/lib/model/person_with_faces_response_dto.dart @@ -44,7 +44,7 @@ class PersonWithFacesResponseDto { /// DateTime? updatedAt; - /// This property was added in v1.118.0 + /// This property was added in v1.119.0 /// /// Please note: This property should have been non-nullable! Since the specification file /// does not include a default value (using the "default:" property), however, the generated diff --git a/open-api/immich-openapi-specs.json b/open-api/immich-openapi-specs.json index c4f71c4c60..a9d44eec9b 100644 --- a/open-api/immich-openapi-specs.json +++ b/open-api/immich-openapi-specs.json @@ -10107,7 +10107,7 @@ "type": "string" }, "withArchived": { - "description": "This property was added in v1.118.0", + "description": "This property was added in v1.119.0", "type": "boolean" } }, @@ -10243,7 +10243,7 @@ "type": "string" }, "withArchived": { - "description": "This property was added in v1.118.0", + "description": "This property was added in v1.119.0", "type": "boolean" } }, @@ -10288,7 +10288,7 @@ "type": "string" }, "withArchived": { - "description": "This property was added in v1.118.0", + "description": "This property was added in v1.119.0", "type": "boolean" } }, @@ -10325,7 +10325,7 @@ "type": "string" }, "withArchived": { - "description": "This property was added in v1.118.0", + "description": "This property was added in v1.119.0", "type": "boolean" } }, diff --git a/open-api/typescript-sdk/src/fetch-client.ts b/open-api/typescript-sdk/src/fetch-client.ts index 28602dbb5f..f813469760 100644 --- a/open-api/typescript-sdk/src/fetch-client.ts +++ b/open-api/typescript-sdk/src/fetch-client.ts @@ -220,7 +220,7 @@ export type PersonWithFacesResponseDto = { thumbnailPath: string; /** This property was added in v1.107.0 */ updatedAt?: string; - /** This property was added in v1.118.0 */ + /** This property was added in v1.119.0 */ withArchived?: boolean; }; export type SmartInfoResponseDto = { @@ -504,7 +504,7 @@ export type PersonResponseDto = { thumbnailPath: string; /** This property was added in v1.107.0 */ updatedAt?: string; - /** This property was added in v1.118.0 */ + /** This property was added in v1.119.0 */ withArchived?: boolean; }; export type AssetFaceResponseDto = { @@ -707,7 +707,7 @@ export type PeopleUpdateItem = { isHidden?: boolean; /** Person name. */ name?: string; - /** This property was added in v1.118.0 */ + /** This property was added in v1.119.0 */ withArchived?: boolean; }; export type PeopleUpdateDto = { @@ -723,7 +723,7 @@ export type PersonUpdateDto = { isHidden?: boolean; /** Person name. */ name?: string; - /** This property was added in v1.118.0 */ + /** This property was added in v1.119.0 */ withArchived?: boolean; }; export type MergePersonDto = { diff --git a/server/src/dtos/person.dto.ts b/server/src/dtos/person.dto.ts index ac1eab5423..14697bb0f5 100644 --- a/server/src/dtos/person.dto.ts +++ b/server/src/dtos/person.dto.ts @@ -44,7 +44,7 @@ export class PersonUpdateDto extends PersonCreateDto { @Optional() @IsBoolean() - @PropertyLifecycle({ addedAt: 'v1.118.0' }) + @PropertyLifecycle({ addedAt: 'v1.119.0' }) withArchived?: boolean; } @@ -98,7 +98,7 @@ export class PersonResponseDto { isHidden!: boolean; @PropertyLifecycle({ addedAt: 'v1.107.0' }) updatedAt?: Date; - @PropertyLifecycle({ addedAt: 'v1.118.0' }) + @PropertyLifecycle({ addedAt: 'v1.119.0' }) withArchived?: boolean; }