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

25 lines
994 B
Plaintext

import type { ArrayFieldClient, BlocksFieldClient, ClientConfig, ClientField } from 'payload';
type Args = {
config: ClientConfig;
fields: ClientField[];
locales: string[] | undefined;
parentIsLocalized: boolean;
valueFrom: unknown;
valueTo: unknown;
};
/**
* Recursively counts the number of changed fields between comparison and
* version data for a given set of fields.
*/
export declare function countChangedFields({ config, fields, locales, parentIsLocalized, valueFrom, valueTo, }: Args): number;
type countChangedFieldsInRowsArgs = {
config: ClientConfig;
field: ArrayFieldClient | BlocksFieldClient;
locales: string[] | undefined;
parentIsLocalized: boolean;
valueFromRows: unknown[];
valueToRows: unknown[];
};
export declare function countChangedFieldsInRows({ config, field, locales, parentIsLocalized, valueFromRows, valueToRows, }: countChangedFieldsInRowsArgs): number;
export {};
//# sourceMappingURL=countChangedFields.d.ts.map