Files
klz-cables.com/.pnpm-store/v10/files/85/04f31d6ebb734391a8120b9c5fd8848a9fb3dd5794cd1b63392b8e4afeefecda63ae6de306e0047357daf6b50c7280b9c5f3f07ee156fdb9e13c2333af25e6
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

21 lines
889 B
Plaintext

import type { PayloadRequest } from '../../index.js';
import type { RunJobsSilent } from '../localAPI.js';
import type { UpdateJobFunction } from '../operations/runJobs/runJob/getUpdateJobFunction.js';
import type { TaskError } from './index.js';
export declare function handleTaskError({ error, req, silent, updateJob, }: {
error: TaskError;
req: PayloadRequest;
/**
* If set to true, the job system will not log any output to the console (for both info and error logs).
* Can be an option for more granular control over logging.
*
* This will not automatically affect user-configured logs (e.g. if you call `console.log` or `payload.logger.info` in your job code).
*
* @default false
*/
silent?: RunJobsSilent;
updateJob: UpdateJobFunction;
}): Promise<{
hasFinalError: boolean;
}>;
//# sourceMappingURL=handleTaskError.d.ts.map