Files
klz-cables.com/.pnpm-store/v10/files/5a/3239f2d59eda6d55fdb7608e52a4df714c53b8f9a5ec498e88181a8e82d032609aca4403acc06142f12dcfb82c0d2d75f1584cc3a94147421fee107ab28d4c
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

19 lines
847 B
Plaintext

import type { I18n } from '@payloadcms/translations';
import type { JSONSchema4 } from 'json-schema';
import type { SanitizedConfig } from '../../config/types.js';
import type { JobsConfig } from './types/index.js';
export declare function generateJobsJSONSchemas(config: SanitizedConfig, jobsConfig: JobsConfig, interfaceNameDefinitions: Map<string, JSONSchema4>,
/**
* Used for relationship fields, to determine whether to use a string or number type for the ID.
* While there is a default ID field type set by the db adapter, they can differ on a collection-level
* if they have custom ID fields.
*/
collectionIDFieldTypes: {
[key: string]: 'number' | 'string';
}, i18n?: I18n): {
definitions?: Map<string, JSONSchema4>;
properties?: {
tasks: JSONSchema4;
};
};
//# sourceMappingURL=generateJobsJSONSchemas.d.ts.map