Files
klz-cables.com/.pnpm-store/v10/files/fa/11517ee22c7c410459728fcba0c50fa40174d138beb5901f02ca2cd941c32d3d30c88555c99cfa8104fbb141c0205b6e06d5e042ecf418fb5d091d4a4ab12b
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

15 lines
532 B
Plaintext

import type { CollectionSlug, PayloadRequest, Where } from '../../index.js';
import type { FolderOrDocument } from '../types.js';
type Args = {
collectionSlug: CollectionSlug;
folderFieldName: string;
req: PayloadRequest;
/**
* Optional where clause to filter documents by
* @default undefined
*/
where?: Where;
};
export declare function getOrphanedDocs({ collectionSlug, folderFieldName, req, where, }: Args): Promise<FolderOrDocument[]>;
export {};
//# sourceMappingURL=getOrphanedDocs.d.ts.map