diff --git a/mobile/openapi/lib/api/search_api.dart b/mobile/openapi/lib/api/search_api.dart index c44e51b420349a..a81002137196ed 100644 --- a/mobile/openapi/lib/api/search_api.dart +++ b/mobile/openapi/lib/api/search_api.dart @@ -322,10 +322,10 @@ class SearchApi { /// * [String] name (required): /// /// * [num] page: - /// This property was added in v118.0.0 + /// This property was added in v119.0.0 /// /// * [num] size: - /// This property was added in v118.0.0 + /// This property was added in v119.0.0 /// /// * [bool] withHidden: Future searchPersonWithHttpInfo(String name, { num? page, num? size, bool? withHidden, }) async { @@ -369,10 +369,10 @@ class SearchApi { /// * [String] name (required): /// /// * [num] page: - /// This property was added in v118.0.0 + /// This property was added in v119.0.0 /// /// * [num] size: - /// This property was added in v118.0.0 + /// This property was added in v119.0.0 /// /// * [bool] withHidden: Future searchPerson(String name, { num? page, num? size, bool? withHidden, }) async { diff --git a/open-api/immich-openapi-specs.json b/open-api/immich-openapi-specs.json index 71e882879e61d8..9eccc539d73392 100644 --- a/open-api/immich-openapi-specs.json +++ b/open-api/immich-openapi-specs.json @@ -4541,7 +4541,7 @@ "name": "page", "required": false, "in": "query", - "description": "This property was added in v118.0.0", + "description": "This property was added in v119.0.0", "schema": { "minimum": 1, "default": 1, @@ -4552,7 +4552,7 @@ "name": "size", "required": false, "in": "query", - "description": "This property was added in v118.0.0", + "description": "This property was added in v119.0.0", "schema": { "minimum": 1, "maximum": 1000, diff --git a/server/src/dtos/search.dto.ts b/server/src/dtos/search.dto.ts index b0e823391df787..314f51570cd564 100644 --- a/server/src/dtos/search.dto.ts +++ b/server/src/dtos/search.dto.ts @@ -242,7 +242,7 @@ export class SearchPeopleDto { /** Page number for pagination */ @ApiPropertyOptional() - @PropertyLifecycle({ addedAt: 'v118.0.0' }) + @PropertyLifecycle({ addedAt: 'v119.0.0' }) @IsInt() @Min(1) @Type(() => Number) @@ -250,7 +250,7 @@ export class SearchPeopleDto { /** Number of items per page */ @ApiPropertyOptional() - @PropertyLifecycle({ addedAt: 'v118.0.0' }) + @PropertyLifecycle({ addedAt: 'v119.0.0' }) @IsInt() @Min(1) @Max(1000)