Files
klz-cables.com/.pnpm-store/v10/files/8b/d68f99f298b7c1d216650d39dd9e7348122b26febb30fa02d9e310f1be1ed4453e8805cb77a9720a06d53c0f00f12d66d7a52d2ea8fa2e18930af5cc1d12aa
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

21 lines
873 B
Plaintext

import type { PaginatedDocs } from '../../database/types.js';
import type { PayloadRequest, PopulateType, SelectType, Sort, Where } from '../../types/index.js';
import type { TypeWithVersion } from '../../versions/types.js';
import type { Collection } from '../config/types.js';
import type { FindOptions } from './local/find.js';
export type Arguments = {
collection: Collection;
depth?: number;
limit?: number;
overrideAccess?: boolean;
page?: number;
pagination?: boolean;
populate?: PopulateType;
req?: PayloadRequest;
showHiddenFields?: boolean;
sort?: Sort;
trash?: boolean;
where?: Where;
} & Pick<FindOptions<string, SelectType>, 'select'>;
export declare const findVersionsOperation: <TData extends TypeWithVersion<TData>>(args: Arguments) => Promise<PaginatedDocs<TData>>;
//# sourceMappingURL=findVersions.d.ts.map