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

10 lines
512 B
Plaintext

import type { FlattenedField } from 'payload';
/**
* Checks whether we should use the upsertRow function for the passed data and otherwise use a simple SQL SET call.
* We need to use upsertRow only when the data has arrays, blocks, hasMany select/text/number, localized fields, complex relationships.
*/
export declare const shouldUseOptimizedUpsertRow: ({ data, fields, }: {
data: Record<string, unknown>;
fields: FlattenedField[];
}) => any;
//# sourceMappingURL=shouldUseOptimizedUpsertRow.d.ts.map