1
0
mirror of https://github.com/immich-app/immich.git synced 2024-11-28 09:33:27 +02:00

chore: update openapi (#8470)

This commit is contained in:
Alex 2024-04-02 14:21:58 -05:00 committed by GitHub
parent 6dfa9e1146
commit 8337da183c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
15 changed files with 21 additions and 4 deletions

View File

@ -103,6 +103,7 @@ doc/OAuthApi.md
doc/OAuthAuthorizeResponseDto.md
doc/OAuthCallbackDto.md
doc/OAuthConfigDto.md
doc/OnThisDayDto.md
doc/PartnerApi.md
doc/PartnerResponseDto.md
doc/PathEntityType.md
@ -318,6 +319,7 @@ lib/model/model_type.dart
lib/model/o_auth_authorize_response_dto.dart
lib/model/o_auth_callback_dto.dart
lib/model/o_auth_config_dto.dart
lib/model/on_this_day_dto.dart
lib/model/partner_response_dto.dart
lib/model/path_entity_type.dart
lib/model/path_type.dart
@ -504,6 +506,7 @@ test/o_auth_api_test.dart
test/o_auth_authorize_response_dto_test.dart
test/o_auth_callback_dto_test.dart
test/o_auth_config_dto_test.dart
test/on_this_day_dto_test.dart
test/partner_api_test.dart
test/partner_response_dto_test.dart
test/path_entity_type_test.dart

BIN
mobile/openapi/README.md generated

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
mobile/openapi/doc/OnThisDayDto.md generated Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -8769,7 +8769,7 @@
"type": "array"
},
"data": {
"type": "object"
"$ref": "#/components/schemas/OnThisDayDto"
},
"isSaved": {
"type": "boolean"
@ -8829,7 +8829,7 @@
"type": "string"
},
"data": {
"type": "object"
"$ref": "#/components/schemas/OnThisDayDto"
},
"deletedAt": {
"format": "date-time",
@ -9110,6 +9110,17 @@
],
"type": "object"
},
"OnThisDayDto": {
"properties": {
"year": {
"type": "number"
}
},
"required": [
"year"
],
"type": "object"
},
"PartnerResponseDto": {
"properties": {
"avatarColor": {

View File

@ -494,10 +494,13 @@ export type ValidateLibraryImportPathResponseDto = {
export type ValidateLibraryResponseDto = {
importPaths?: ValidateLibraryImportPathResponseDto[];
};
export type OnThisDayDto = {
year: number;
};
export type MemoryResponseDto = {
assets: AssetResponseDto[];
createdAt: string;
data: object;
data: OnThisDayDto;
deletedAt?: string;
id: string;
isSaved: boolean;
@ -509,7 +512,7 @@ export type MemoryResponseDto = {
};
export type MemoryCreateDto = {
assetIds?: string[];
data: object;
data: OnThisDayDto;
isSaved?: boolean;
memoryAt: string;
seenAt?: string;