Files
klz-cables.com/.pnpm-store/v10/files/75/50a86b3ca21e4da1dd803ffc0e571efd339ad05537189a62d28c07b717ff7cb701dc54d8d0a20eaba5ae7fb4631b133a08ba478a9c1ef7bbb79705e0e6dad5
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

33 lines
1.1 KiB
Plaintext

import type { Config } from '../../config/types.js';
import type { GlobalConfig } from '../../globals/config/types.js';
import type { TaskType } from './types/taskTypes.js';
import type { WorkflowTypes } from './types/workflowTypes.js';
export declare const jobStatsGlobalSlug = "payload-jobs-stats";
/**
* Type for data stored in the payload-jobs-stats global.
*/
export type JobStats = {
stats?: {
scheduledRuns?: {
queues?: {
[queueSlug: string]: {
tasks?: {
[taskSlug: TaskType]: {
lastScheduledRun: string;
};
};
workflows?: {
[workflowSlug: WorkflowTypes]: {
lastScheduledRun: string;
};
};
};
};
};
};
};
/**
* Global config for job statistics.
*/
export declare const getJobStatsGlobal: (config: Config) => GlobalConfig;
//# sourceMappingURL=global.d.ts.map