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

22 lines
915 B
Plaintext

import type { Block, FlattenedBlock } from 'payload';
import type { RawTable } from '../types.js';
type Args = {
block: Block;
localized: boolean;
/**
* @todo make required in v4.0. Usually you'd wanna pass this in
*/
parentIsLocalized?: boolean;
rootTableName: string;
table: RawTable;
tableLocales?: RawTable;
};
/**
* returns true if all the fields in a block are identical to the existing table
*/
export declare const validateExistingBlockIsIdentical: ({ block, localized, parentIsLocalized, table, tableLocales, }: Args) => boolean;
export declare const InternalBlockTableNameIndex: unique symbol;
export declare const setInternalBlockIndex: (block: FlattenedBlock, index: number) => void;
export declare const resolveBlockTableName: (block: FlattenedBlock, originalTableName: string) => string;
export {};
//# sourceMappingURL=validateExistingBlockIsIdentical.d.ts.map