Files
klz-cables.com/.pnpm-store/v10/files/bb/bfe3d27568215679faa07d2cf30c9708c68925b729e32cf30e6022eba16b769eb549ab8b35a24b8375e0ee1651a02e975af722fa368770f269bec962e1192c
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

18 lines
698 B
Plaintext

import type { SanitizedCollectionPermission } from '../../auth/index.js';
import type { JsonObject, PayloadRequest } from '../../types/index.js';
import type { Collection } from '../config/types.js';
type Arguments = {
collection: Collection;
/**
* If the document data is passed, it will be used to check access instead of fetching the document from the database.
*/
data?: JsonObject;
/**
* When called for creating a new document, id is not provided.
*/
id?: number | string;
req: PayloadRequest;
};
export declare function docAccessOperation(args: Arguments): Promise<SanitizedCollectionPermission>;
export {};
//# sourceMappingURL=docAccess.d.ts.map