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

15 lines
561 B
Plaintext

import type { FlattenedField } from 'payload';
import type { DrizzleAdapter } from '../../types.js';
import type { RowToInsert } from './types.js';
type Args = {
adapter: DrizzleAdapter;
data: Record<string, unknown>;
enableAtomicWrites?: boolean;
fields: FlattenedField[];
parentIsLocalized?: boolean;
path?: string;
tableName: string;
};
export declare const transformForWrite: ({ adapter, data, enableAtomicWrites, fields, parentIsLocalized, path, tableName, }: Args) => RowToInsert;
export {};
//# sourceMappingURL=index.d.ts.map