openapi battle

This commit is contained in:
Min Idzelis
2025-05-03 02:43:06 +00:00
parent 6e8993c6eb
commit bf0be6a655
13 changed files with 182 additions and 316 deletions

View File

@@ -1388,22 +1388,27 @@ export type TimelineAssetDescriptionDto = {
city: string | null;
country: string | null;
};
export type TimelineStackResponseDto = {
assetCount: number;
id: string;
primaryAssetId: string;
};
export type TimeBucketAssetResponseDto = {
description: TimelineAssetDescriptionDto[];
duration: (string | null)[];
duration: string[];
id: string[];
isArchived: number[];
isFavorite: number[];
isImage: number[];
isTrashed: number[];
isVideo: number[];
livePhotoVideoId: (string | null)[];
livePhotoVideoId: string[];
localDateTime: string[];
ownerId: string[];
projectionType: (string | null)[];
projectionType: string[];
ratio: number[];
stack: (any | null)[];
thumbhash: (string | null)[];
stack: TimelineStackResponseDto[];
thumbhash: string[];
};
export type TimeBucketResponseDto = {
bucketAssets: TimeBucketAssetResponseDto;