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:
parent
6dfa9e1146
commit
8337da183c
3
mobile/openapi/.openapi-generator/FILES
generated
3
mobile/openapi/.openapi-generator/FILES
generated
@ -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
BIN
mobile/openapi/README.md
generated
Binary file not shown.
BIN
mobile/openapi/doc/MemoryCreateDto.md
generated
BIN
mobile/openapi/doc/MemoryCreateDto.md
generated
Binary file not shown.
BIN
mobile/openapi/doc/MemoryResponseDto.md
generated
BIN
mobile/openapi/doc/MemoryResponseDto.md
generated
Binary file not shown.
BIN
mobile/openapi/doc/OnThisDayDto.md
generated
Normal file
BIN
mobile/openapi/doc/OnThisDayDto.md
generated
Normal file
Binary file not shown.
BIN
mobile/openapi/lib/api.dart
generated
BIN
mobile/openapi/lib/api.dart
generated
Binary file not shown.
BIN
mobile/openapi/lib/api_client.dart
generated
BIN
mobile/openapi/lib/api_client.dart
generated
Binary file not shown.
BIN
mobile/openapi/lib/model/memory_create_dto.dart
generated
BIN
mobile/openapi/lib/model/memory_create_dto.dart
generated
Binary file not shown.
BIN
mobile/openapi/lib/model/memory_response_dto.dart
generated
BIN
mobile/openapi/lib/model/memory_response_dto.dart
generated
Binary file not shown.
BIN
mobile/openapi/lib/model/on_this_day_dto.dart
generated
Normal file
BIN
mobile/openapi/lib/model/on_this_day_dto.dart
generated
Normal file
Binary file not shown.
BIN
mobile/openapi/test/memory_create_dto_test.dart
generated
BIN
mobile/openapi/test/memory_create_dto_test.dart
generated
Binary file not shown.
BIN
mobile/openapi/test/memory_response_dto_test.dart
generated
BIN
mobile/openapi/test/memory_response_dto_test.dart
generated
Binary file not shown.
BIN
mobile/openapi/test/on_this_day_dto_test.dart
generated
Normal file
BIN
mobile/openapi/test/on_this_day_dto_test.dart
generated
Normal file
Binary file not shown.
@ -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": {
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user