Files
klz-cables.com/.pnpm-store/v10/files/8a/80b021fa0ed0890962999c8caa7258b245e5512c00212d28b27d7ceb5a4bd2bb66a659723a05e2c314461a2d4f915c7c29d74913dd6cb0f230ff6af21ee11a
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

26 lines
678 B
Plaintext

import type { PaginatedDocs, SanitizedCollectionConfig } from 'payload';
import type { CompareOption } from '../Default/types.js';
export type Props = {
collectionSlug?: string;
docID?: number | string;
globalSlug?: string;
onChange: (val: CompareOption) => void;
versionFromID?: string;
versionFromOptions: CompareOption[];
};
type CLEAR = {
required: boolean;
type: 'CLEAR';
};
type ADD = {
collection: SanitizedCollectionConfig;
data: PaginatedDocs<any>;
type: 'ADD';
};
export type Action = ADD | CLEAR;
export type ValueWithRelation = {
relationTo: string;
value: string;
};
export {};
//# sourceMappingURL=types.d.ts.map