import type { PackageV3 } from '../schemas/PackageV3'; import type { MetaV3 } from '../schemas/MetaV3'; import type { PageInfoV3 } from '../schemas/PageInfoV3'; export interface ListPackagesResponseBodyV3 extends PageInfoV3 { items: PackageV3[]; meta?: MetaV3; }