Files
klz-cables.com/.pnpm-store/v10/files/e8/2e1877517745fc6004ce1914a3f2ccc8833c0da5d7409c1692ab9d64761db11ea15397142dbdf7726e32dffe1849d9b753a59b57c9e73387c55378bba224e5
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

24 lines
664 B
Plaintext

import type { CollectionPermission, GlobalPermission } from '../../auth/index.js';
import type { FlattenedField } from '../../fields/config/types.js';
export type EntityPolicies = {
collections?: {
[collectionSlug: string]: CollectionPermission;
};
globals?: {
[globalSlug: string]: GlobalPermission;
};
};
export type PathToQuery = {
collectionSlug?: string;
complete: boolean;
field: FlattenedField;
fields?: FlattenedField[];
globalSlug?: string;
invalid?: boolean;
/**
* @todo make required in v4.0
*/
parentIsLocalized: boolean;
path: string;
};
//# sourceMappingURL=types.d.ts.map