Files
klz-cables.com/.pnpm-store/v10/files/52/c6f66b94181723acbac320c4a11a24f601c90a2e0734e3afb2ea6870835f20d50a1d515205b10b45de6ce56666e5bf0d1756dc407af2259e0ec4645802c3f3
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
742 B
Plaintext

import type { PaginatedDistinctDocs } from '../../database/types.js';
import type { PayloadRequest, PopulateType, Sort, Where } from '../../types/index.js';
import type { Collection } from '../config/types.js';
export type Arguments = {
collection: Collection;
depth?: number;
disableErrors?: boolean;
field: string;
limit?: number;
locale?: string;
overrideAccess?: boolean;
page?: number;
populate?: PopulateType;
req?: PayloadRequest;
showHiddenFields?: boolean;
sort?: Sort;
trash?: boolean;
where?: Where;
};
export declare const findDistinctOperation: (incomingArgs: Arguments) => Promise<PaginatedDistinctDocs<Record<string, unknown>>>;
//# sourceMappingURL=findDistinct.d.ts.map