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

13 lines
572 B
Plaintext

import type { SanitizedConfig } from '../config/types.js';
/**
* While the default ID is determined by the db adapter, it can still differ for a collection if they
* define a custom ID field. This builds a map of collection slugs to their ID field type.
* @param defaultIDType as defined by the database adapter
*/
export declare function getCollectionIDFieldTypes({ config, defaultIDType, }: {
config: SanitizedConfig;
defaultIDType: 'number' | 'text';
}): {
[key: string]: 'number' | 'string';
};
//# sourceMappingURL=getCollectionIDFieldTypes.d.ts.map