import { ApiProperty } from '@nestjs/swagger'; import { AlbumResponseDto } from '../../album'; import { AssetResponseDto } from '../../asset'; class SearchFacetCountResponseDto { @ApiProperty({ type: 'integer' }) count!: number; value!: string; } class SearchFacetResponseDto { fieldName!: string; counts!: SearchFacetCountResponseDto[]; } class SearchAlbumResponseDto { @ApiProperty({ type: 'integer' }) total!: number; @ApiProperty({ type: 'integer' }) count!: number; items!: AlbumResponseDto[]; facets!: SearchFacetResponseDto[]; } class SearchAssetResponseDto { @ApiProperty({ type: 'integer' }) total!: number; @ApiProperty({ type: 'integer' }) count!: number; items!: AssetResponseDto[]; facets!: SearchFacetResponseDto[]; nextPage!: string | null; } export class SearchResponseDto { albums!: SearchAlbumResponseDto; assets!: SearchAssetResponseDto; }